/* ===========================================
   CSS Variables & Design Tokens
   =========================================== */
:root {
    /* Primary Colors - Warm Mahogany & Gold */
    --primary: #4a3728;
    --primary-light: #5d473a;
    --primary-dark: #3a2a1e;
    
    /* Accent - Warm Gold */
    --accent: #c9a227;
    --accent-light: #d4b54a;
    --accent-dark: #a8861f;
    
    /* Secondary - Deep Navy */
    --secondary: #1a2332;
    --secondary-light: #2a3546;
    
    /* Background Colors */
    --bg-light: #f8f6f3;
    --bg-white: #fdfcfb;
    --bg-dark: #1a1a2e;
    
    /* Text Colors */
    --text-dark: #2d3748;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Success/Status */
    --success: #10b981;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(45, 55, 72, 0.08);
    --shadow-md: 0 8px 24px -4px rgba(45, 55, 72, 0.12);
    --shadow-lg: 0 16px 48px -8px rgba(45, 55, 72, 0.15);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===========================================
   Base Styles
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.z-2 {
    z-index: 2;
}

/* ===========================================
   Button Styles
   =========================================== */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--secondary);
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.35);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    padding: 0.65rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

/* ===========================================
   Navigation
   =========================================== */
.navbar {
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-logo {
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

.navbar.scrolled .nav-logo {
    filter: none;
}

.brand-name {
    color: #fff;
    transition: color var(--transition-base);
}

.navbar.scrolled .brand-name {
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-base);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.navbar.scrolled .navbar-toggler {
    color: var(--text-dark);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(74, 55, 40, 0.85) 50%, rgba(26, 35, 50, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-element {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.geo-1 {
    top: 80px;
    left: 40px;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
}

.geo-2 {
    top: 160px;
    right: 80px;
    width: 90px;
    height: 90px;
    border-color: rgba(201, 162, 39, 0.2);
    transform: rotate(12deg);
    animation-delay: 1s;
}

.geo-3 {
    bottom: 120px;
    left: 25%;
    width: 60px;
    height: 60px;
    transform: rotate(-12deg);
    animation-delay: 2s;
}

.geo-4 {
    bottom: 160px;
    right: 33%;
    width: 80px;
    height: 80px;
    border-color: rgba(201, 162, 39, 0.15);
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
}

.hero-subtitle {
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.role-container {
    height: 48px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.role-container .text-accent {
    font-weight: 500;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-book-image {
    width: 320px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.hero-book-image:hover {
    transform: scale(1.05);
}

.published-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: #fff;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 6px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* ===========================================
   Section Styles
   =========================================== */
.section-padding {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 7rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 1rem auto 0;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ===========================================
   About Section
   =========================================== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-dark);
}

.about-text a {
    color: var(--accent);
}

.about-text a:hover {
    text-decoration: underline;
}

/* Skills */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.skill-item {
    margin-bottom: 0.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 500;
    color: var(--text-dark);
}

.skill-percent {
    font-weight: 600;
    color: var(--accent);
}

.skill-bar {
    height: 8px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Experience */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: default;
}

a.experience-card {
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.exp-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.exp-content {
    flex: 1;
}

.exp-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.exp-content h4 .small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.exp-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.exp-status {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

.exp-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

/* ===========================================
   Services Section
   =========================================== */
.service-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(201, 162, 39, 0.2);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--accent);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color var(--transition-base);
}

.service-card:hover .service-title {
    color: var(--accent);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    transition: transform var(--transition-base);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===========================================
   CTA Section
   =========================================== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(74, 55, 40, 0.85));
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===========================================
   Portfolio Section
   =========================================== */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    color: var(--text-dark);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
}

.portfolio-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-btn {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.portfolio-btn:hover {
    background: var(--accent-light);
    color: var(--secondary);
    transform: scale(1.1);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: color var(--transition-base);
}

.portfolio-card:hover .portfolio-content h4 {
    color: var(--accent);
}

.portfolio-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    border-radius: 50px;
}

.portfolio-item.hidden {
    display: none;
}

/* ===========================================
   Testimonials Section
   =========================================== */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(145deg, var(--bg-white), var(--bg-light));
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(201, 162, 39, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--accent);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: static;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
}

.carousel-indicators {
    position: static;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    transition: all var(--transition-base);
}

.carousel-indicators button.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
}

/* ===========================================
   Partners Section
   =========================================== */
.partners-section {
    background: rgba(0, 0, 0, 0.02);
}

.partners-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.partner-item {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all var(--transition-base);
}

.partner-item:hover {
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: var(--shadow-md);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===========================================
   Blog Section
   =========================================== */
.blog-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: color var(--transition-base);
}

.blog-card:hover .blog-content h4 {
    color: var(--accent);
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.blog-link i {
    transition: transform var(--transition-base);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ===========================================
   Contact Section
   =========================================== */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.social-links-card {
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
}

.social-links-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.social-icon.youtube:hover {
    background: #ff0000;
    color: #fff;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.social-icon.instagram:hover {
    background: #e4405f;
    color: #fff;
}

.contact-form-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: all var(--transition-base);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
    background: var(--bg-white);
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--secondary);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition-base);
}

.back-to-top:hover {
    background: var(--accent-light);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ===========================================
   Toast Notification
   =========================================== */
.toast {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ===========================================
   Responsive Adjustments
   =========================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        color: var(--text-dark);
        padding: 0.75rem 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar .btn-accent {
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: 1rem;
        left: 1rem;
    }
}