* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c5a572;
    --secondary-color: #2a2a2a;
    --accent-color: #d4b896;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-light: #8a8a8a;
    --background-primary: #1a1a1a;
    --background-secondary: #242424;
    --background-glass: rgba(197, 165, 114, 0.1);
    --border-color: #3a3a3a;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #c5a572 0%, #d4b896 100%);
    --gradient-glass: linear-gradient(135deg, rgba(197, 165, 114, 0.15), rgba(212, 184, 150, 0.1));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

.dropdown-cta {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 4px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.dropdown-cta:hover {
    background: rgba(197, 165, 114, 0.2);
    transform: translateX(3px);
}

.hamburger-panel-cta {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    background: rgba(197, 165, 114, 0.1) !important;
    border-radius: 4px !important;
    margin: 2px 0 !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.hamburger-panel-cta:hover {
    background: rgba(197, 165, 114, 0.2) !important;
    transform: translateX(3px) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
}

.hamburger-menu {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background: #b89660;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hamburger Menu Panel */
.hamburger-panel {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(197, 165, 114, 0.3);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 80px 0 2rem 0;
    overflow-y: auto;
}

.hamburger-panel.active {
    left: 0;
}

.hamburger-panel-content {
    padding: 0 2rem;
}

.hamburger-panel-section {
    margin-bottom: 0;
}

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

.hamburger-panel-links li {
    margin-bottom: 0;
}

.hamburger-panel-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hamburger-panel-link:last-child {
    border-bottom: none;
}

.hamburger-panel-link:hover {
    background: rgba(197, 165, 114, 0.08);
    color: var(--primary-color);
    padding-left: 2rem;
}

.hamburger-dropdown-toggle::after {
    content: '▼';
    float: right;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.hamburger-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.hamburger-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.hamburger-submenu.active {
    max-height: 300px;
}

.hamburger-panel-sublink {
    display: block;
    padding: 0.75rem 2.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hamburger-panel-sublink:last-child {
    border-bottom: none;
}

.hamburger-panel-sublink:hover {
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-color);
    padding-left: 3rem;
}

.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hamburger-overlay.active {
    opacity: 1;
    visibility: visible;
}


.nav-menu {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #9a9a9a;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0.8;
}

.nav-link:hover::before {
    width: 100%;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.dropdown-content a:hover {
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-color);
    transform: none;
}

.dropdown-content a::before {
    display: none;
}

.dropdown-divider {
    height: 1px;
    background: rgba(197, 165, 114, 0.2);
    margin: 0.5rem 0;
}

.nav-toggle {
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at center top, rgba(197, 165, 114, 0.12) 0%, rgba(197, 165, 114, 0.06) 30%, rgba(197, 165, 114, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4rem;
    position: relative;
}


.hero-statement {
    z-index: 3;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statement-text {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-secondary);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 900px;
}

.statement-highlight {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 4px 12px rgba(197, 165, 114, 0.3);
    position: relative;
    margin-top: 0.5rem;
}

.statement-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #d0d0d0;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(197, 165, 114, 0.6);
    z-index: 2;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -120%;
    width: 340%;
    height: 340%;
    background: 
        radial-gradient(ellipse 25% 40% at 15% 25%, rgba(197, 165, 114, 0.12) 0%, rgba(197, 165, 114, 0.08) 30%, rgba(197, 165, 114, 0.04) 50%, rgba(197, 165, 114, 0.015) 70%, transparent 90%),
        radial-gradient(ellipse 35% 60% at 85% 75%, rgba(197, 165, 114, 0.1) 0%, rgba(197, 165, 114, 0.06) 35%, rgba(197, 165, 114, 0.03) 55%, rgba(197, 165, 114, 0.01) 75%, transparent 95%),
        radial-gradient(ellipse 40% 25% at 50% 15%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.005) 65%, transparent 85%),
        radial-gradient(ellipse 20% 50% at 75% 35%, rgba(197, 165, 114, 0.09) 0%, rgba(197, 165, 114, 0.055) 30%, rgba(197, 165, 114, 0.025) 50%, rgba(197, 165, 114, 0.01) 70%, transparent 90%),
        radial-gradient(ellipse 30% 35% at 25% 85%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 25%, rgba(255, 255, 255, 0.01) 45%, rgba(255, 255, 255, 0.005) 65%, transparent 85%),
        radial-gradient(ellipse 45% 30% at 60% 90%, rgba(197, 165, 114, 0.075) 0%, rgba(197, 165, 114, 0.045) 25%, rgba(197, 165, 114, 0.02) 45%, rgba(197, 165, 114, 0.005) 65%, transparent 85%),
        radial-gradient(ellipse 25% 45% at 90% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.015) 40%, rgba(255, 255, 255, 0.005) 60%, transparent 80%);
    animation: smokeFlow1 12s ease-in-out infinite;
    z-index: -4;
    filter: blur(60px);
}

.hero-title::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(ellipse 20% 55% at 40% 20%, rgba(197, 165, 114, 0.11) 0%, rgba(197, 165, 114, 0.07) 30%, rgba(197, 165, 114, 0.035) 50%, rgba(197, 165, 114, 0.015) 70%, transparent 90%),
        radial-gradient(ellipse 35% 30% at 20% 80%, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.045) 25%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.005) 65%, transparent 85%),
        radial-gradient(ellipse 25% 40% at 80% 60%, rgba(197, 165, 114, 0.09) 0%, rgba(197, 165, 114, 0.055) 25%, rgba(197, 165, 114, 0.025) 45%, rgba(197, 165, 114, 0.01) 65%, transparent 85%),
        radial-gradient(ellipse 40% 20% at 30% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.015) 40%, rgba(255, 255, 255, 0.005) 60%, transparent 80%),
        radial-gradient(ellipse 30% 50% at 70% 90%, rgba(197, 165, 114, 0.06) 0%, rgba(197, 165, 114, 0.04) 25%, rgba(197, 165, 114, 0.02) 45%, rgba(197, 165, 114, 0.005) 65%, transparent 85%),
        radial-gradient(ellipse 35% 25% at 10% 40%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 25%, rgba(255, 255, 255, 0.01) 45%, rgba(255, 255, 255, 0.005) 65%, transparent 85%);
    animation: smokeFlow2 10s ease-in-out infinite reverse;
    z-index: -3;
    filter: blur(45px);
}

@keyframes smokeFlow1 {
    0% {
        opacity: 0.6;
        transform: scale(0.9) rotate(0deg) translateX(0px) translateY(0px);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.05) rotate(30deg) translateX(8px) translateY(-5px);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95) rotate(60deg) translateX(-4px) translateY(8px);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.02) rotate(90deg) translateX(6px) translateY(-6px);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.9) rotate(120deg) translateX(0px) translateY(0px);
    }
}

@keyframes smokeFlow2 {
    0% {
        opacity: 0.7;
        transform: scale(1.0) rotate(15deg) translateX(3px) translateY(3px);
    }
    20% {
        opacity: 0.5;
        transform: scale(0.92) rotate(45deg) translateX(-6px) translateY(9px);
    }
    40% {
        opacity: 0.9;
        transform: scale(1.08) rotate(75deg) translateX(7px) translateY(-4px);
    }
    60% {
        opacity: 0.6;
        transform: scale(0.96) rotate(105deg) translateX(-5px) translateY(-7px);
    }
    80% {
        opacity: 0.8;
        transform: scale(1.03) rotate(135deg) translateX(9px) translateY(5px);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.0) rotate(165deg) translateX(3px) translateY(3px);
    }
}


.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: #b89660;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-secondary);
    transform: translateY(-2px);
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem 2rem;
}

.services-grid-2x2 .service-card:nth-child(1) {
    margin-bottom: 1rem;
}

.services-grid-2x2 .service-card:nth-child(3) {
    margin-bottom: 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 165, 114, 0.2);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, rgba(212, 184, 150, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem auto;
    display: block;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
}

.icon-code::before {
    width: 16px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-code::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 3px 0 0 var(--primary-color), 6px 0 0 var(--primary-color);
}

.icon-robot::before {
    width: 12px;
    height: 16px;
    border-radius: 2px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 1px;
}

.icon-palette::before {
    width: 16px;
    height: 10px;
    border-radius: 2px;
    background: transparent;
}

.icon-palette::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 2px 0 var(--primary-color), 0 4px 0 var(--primary-color), 0 6px 0 var(--primary-color), 0 8px 0 var(--primary-color);
}

.icon-custom::before {
    width: 14px;
    height: 3px;
    background: var(--primary-color);
    border: none;
    border-radius: 2px;
    box-shadow: 0 -6px 0 var(--primary-color), 0 6px 0 var(--primary-color);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background: var(--background-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--background-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.portfolio-image {
    height: 200px;
    background: var(--background-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-placeholder {
    text-align: center;
}

.portfolio-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    opacity: 0.8;
}

.portfolio-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
}

.icon-chart::before {
    width: 4px;
    height: 16px;
    background: var(--primary-color);
    border: none;
    box-shadow: 6px -4px 0 var(--primary-color), 12px -8px 0 var(--primary-color);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.portfolio-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-note {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--background-secondary);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-card {
    background: var(--background-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
}

.about-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem auto;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-color);
}

.icon-target::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.icon-target::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.icon-lightbulb::before {
    width: 12px;
    height: 16px;
    border-radius: 6px 6px 0 0;
}

.icon-lightbulb::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: var(--primary-color);
}

.icon-handshake::before {
    width: 16px;
    height: 8px;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
}

.icon-handshake::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--background-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--background-primary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--background-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-tagline {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(36, 36, 36, 0.9);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0.5rem 0 0 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        display: none;
    }

    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .dropdown-divider {
        margin: 0;
        background: rgba(197, 165, 114, 0.3);
    }

    .statement-text {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .services-grid,
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .statement-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Glass morphism utilities */
.glass {
    background: var(--background-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Detail Pages */
.service-detail-hero {
    padding: 4rem 0;
    background: var(--background-primary);
    text-align: center;
}

.service-detail-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-detail-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-content {
    padding: 4rem 0;
    background: var(--background-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.content-main h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem 0;
}

.content-main h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.content-main p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 114, 0.2);
}

.step h4 {
    margin-bottom: 1rem;
}

.step p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(197, 165, 114, 0.3);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: var(--gradient-glass);
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 60px;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-content {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.4);
    box-shadow: var(--shadow-heavy);
}

.blog-post.featured {
    border-color: var(--primary-color);
}

.blog-featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.blog-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.blog-category {
    background: rgba(197, 165, 114, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

.blog-date, .blog-read-time {
    color: var(--text-light);
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-actions {
    margin-top: auto;
}

.blog-read-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.blog-post-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(.active) {
    background: rgba(197, 165, 114, 0.1);
    border-color: rgba(197, 165, 114, 0.5);
}

.pagination-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.blog-modal-content {
    background: var(--background-secondary);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.blog-modal-header {
    position: sticky;
    top: 0;
    background: var(--background-secondary);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.blog-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal-close:hover {
    color: var(--primary-color);
}

.blog-modal-article {
    padding: 2rem;
}

.blog-modal-article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-modal-article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
    line-height: 1.3;
}

.blog-modal-article-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.blog-modal-article-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-family: 'Playfair Display', serif;
}

.blog-modal-article-content p {
    margin-bottom: 1.5rem;
}

.blog-modal-article-content ul,
.blog-modal-article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-modal-article-content li {
    margin-bottom: 0.5rem;
}

.blog-modal-article-content strong {
    color: var(--primary-color);
}

.blog-modal-article-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Newsletter Section */
.newsletter {
    background: rgba(197, 165, 114, 0.1);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-input-group input::placeholder {
    color: var(--text-light);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.2);
}

.newsletter-success {
    color: var(--primary-color);
    font-weight: 500;
    padding: 1rem;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

/* Related Services Section */
.related-services {
    padding: 4rem 0;
    background: var(--background-primary);
}

.related-services .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.related-services .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Loading State */
.blog-loading {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

.blog-no-posts {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
    }
    
    .blog-modal {
        padding: 1rem;
    }
    
    .blog-modal-content {
        max-height: 95vh;
    }
    
    .blog-modal-article {
        padding: 1.5rem;
    }
    
    .blog-modal-article-header h1 {
        font-size: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input-group input {
        width: 100%;
    }
}

/* About Us Page Styles */
.about-hero {
    background: var(--gradient-glass);
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 60px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-intro {
    max-width: 600px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--background-primary);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.4);
    box-shadow: var(--shadow-heavy);
}


.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: rgba(197, 165, 114, 0.05);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-description {
    margin-top: 2rem;
}

.story-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.story-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
    background: var(--background-primary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.4);
    box-shadow: var(--shadow-heavy);
}


.expertise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    color: var(--text-light);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.expertise-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: rgba(197, 165, 114, 0.05);
}

.approach-content {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 165, 114, 0.4);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--background-primary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 165, 114, 0.3);
    transform: translateY(-3px);
}


.why-choose-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.why-choose-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: rgba(197, 165, 114, 0.1);
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .mission-grid,
    .expertise-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card,
    .expertise-card {
        padding: 2rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-modal-content {
    background: var(--background-secondary);
    margin: 2% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(197, 165, 114, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.contact-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-close:hover {
    color: var(--primary-color);
}

.contact-modal-body {
    padding: 2rem;
}

.contact-form-modal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modal label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group-modal input,
.form-group-modal select,
.form-group-modal textarea {
    padding: 0.75rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modal input:focus,
.form-group-modal select:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.2);
}

.form-group-modal input::placeholder,
.form-group-modal textarea::placeholder {
    color: var(--text-light);
}

.form-group-modal select {
    cursor: pointer;
}

.form-group-modal textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-actions-modal {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.contact-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.contact-divider span {
    background: var(--background-secondary);
    color: var(--text-light);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.direct-contact {
    text-align: center;
}

.direct-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.form-message-success {
    background: rgba(46, 160, 67, 0.15);
    border: 1px solid rgba(46, 160, 67, 0.3);
    color: #4ade80;
}

.form-message-error {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #f87171;
}

.form-message-info {
    background: rgba(197, 165, 114, 0.15);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--primary-color);
}

/* Theme Toggle */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.theme-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.theme-toggle-container:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 35px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.theme-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-track {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-toggle.dark .toggle-track {
    background: rgba(197, 165, 114, 0.4);
    border-color: var(--primary-color);
}

.theme-toggle.dark .toggle-thumb {
    transform: translateX(20px);
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Light theme styles for toggle */
[data-theme="light"] .theme-toggle-container {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle-container:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .theme-label {
    color: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .toggle-track {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .toggle-thumb {
    background: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle.dark .toggle-track {
    background: rgba(197, 165, 114, 0.3);
    border-color: var(--primary-color);
}

[data-theme="light"] .theme-toggle.dark .toggle-thumb {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --card-bg: #1a1a1a;
    --navbar-bg: rgba(26, 26, 26, 0.95);
}

/* Light Theme Variables */
[data-theme="light"] {
    --primary-color: #c5a572;
    --secondary-color: #2a2a2a;
    --accent-color: #d4b896;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #8a8a8a;
    --background-primary: #ffffff;
    --background-secondary: #f8f9fa;
    --background-glass: rgba(197, 165, 114, 0.1);
    --border-color: #c6cdd2;
    --card-bg: #f4f5f6;
    --navbar-bg: rgba(26, 26, 26, 0.95);
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Dark theme overrides */
[data-theme="dark"] body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .navbar {
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .dropdown-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .dropdown-content a:hover {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.1);
}

[data-theme="dark"] .service-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
}

[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form-modal input,
[data-theme="dark"] .contact-form-modal textarea,
[data-theme="dark"] .contact-form-modal select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form-modal input:focus,
[data-theme="dark"] .contact-form-modal textarea:focus,
[data-theme="dark"] .contact-form-modal select:focus {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

[data-theme="dark"] .hamburger-panel {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
}

[data-theme="dark"] .hamburger-panel-link {
    color: var(--text-primary);
}

[data-theme="dark"] .hamburger-panel-link:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

/* Dark theme specific button styles */
[data-theme="dark"] .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .btn-primary:hover {
    background: #b8985f;
    border-color: #b8985f;
    box-shadow: 0 5px 20px rgba(197, 165, 114, 0.4);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

/* Light theme overrides */
[data-theme="light"] body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="light"] .navbar {
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .nav-link {
    color: var(--text-primary);
}

[data-theme="light"] .nav-link:hover {
    color: var(--primary-color);
}

[data-theme="light"] .dropdown-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dropdown-content a {
    color: var(--text-primary);
}

[data-theme="light"] .dropdown-content a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, var(--primary-color), #d4af7a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

[data-theme="light"] .hero-title::before {
    display: none !important;
}

[data-theme="light"] .hero-title::after {
    display: none !important;
}

[data-theme="light"] .hero-title {
    text-shadow: none !important;
    box-shadow: none !important;
}

[data-theme="light"] .statement-highlight {
    color: var(--primary-color);
}


[data-theme="light"] .section-title {
    color: var(--text-primary);
}

[data-theme="light"] .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.15);
    transform: translateY(-5px);
}

[data-theme="light"] .service-title {
    color: var(--text-primary);
}

[data-theme="light"] .service-description {
    color: var(--text-secondary);
}



[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .contact-form input:focus,
[data-theme="light"] .contact-form textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

[data-theme="light"] .contact-form input::placeholder,
[data-theme="light"] .contact-form textarea::placeholder {
    color: var(--text-secondary);
}

[data-theme="light"] .contact-modal {
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .contact-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .contact-modal-header {
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .contact-form-modal input,
[data-theme="light"] .contact-form-modal textarea,
[data-theme="light"] .contact-form-modal select {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .contact-form-modal input:focus,
[data-theme="light"] .contact-form-modal textarea:focus,
[data-theme="light"] .contact-form-modal select:focus {
    border-color: var(--primary-color);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

[data-theme="light"] .contact-form-modal input::placeholder,
[data-theme="light"] .contact-form-modal textarea::placeholder {
    color: var(--text-secondary);
}

[data-theme="light"] .contact-form-modal label {
    color: var(--text-primary);
}

[data-theme="light"] .service-selection-grid {
    gap: 1rem;
}

[data-theme="light"] .service-selection-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .service-selection-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.15);
}

[data-theme="light"] .service-selection-card h4 {
    color: var(--text-primary);
}

[data-theme="light"] .service-selection-card p {
    color: var(--text-secondary);
}

[data-theme="light"] .service-selection-featured {
    border-color: var(--primary-color);
    background: rgba(197, 165, 114, 0.05);
}

[data-theme="light"] .hamburger-panel {
    background: var(--card-bg);
    border-left: 1px solid var(--border-color);
}

[data-theme="light"] .hamburger-panel-link {
    color: var(--text-primary);
}

[data-theme="light"] .hamburger-panel-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

[data-theme="light"] .hamburger-panel-sublink {
    color: var(--text-secondary);
}

[data-theme="light"] .hamburger-panel-sublink:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

[data-theme="light"] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .footer-link {
    color: var(--text-secondary);
}

[data-theme="light"] .footer-link:hover {
    color: var(--primary-color);
}

[data-theme="light"] .footer-tagline {
    color: var(--text-secondary);
}

[data-theme="light"] .footer-title {
    color: var(--primary-color);
}

/* Service Detail Pages Light Mode */
[data-theme="light"] .service-detail-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .service-detail-title {
    color: var(--text-primary);
}

[data-theme="light"] .service-detail-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .service-detail-content {
    background: var(--bg-primary);
}

[data-theme="light"] .content-main h2,
[data-theme="light"] .content-main h3 {
    color: var(--text-primary);
}

[data-theme="light"] .content-main p,
[data-theme="light"] .content-main li {
    color: var(--text-secondary);
}

[data-theme="light"] .service-features-list li::before {
    color: var(--primary-color);
}

[data-theme="light"] .cta-section {
    background: var(--bg-secondary);
}

[data-theme="light"] .cta-title {
    color: var(--text-primary);
}

[data-theme="light"] .cta-description {
    color: var(--text-secondary);
}

/* Blog Content Light Mode */
[data-theme="light"] .blog-content {
    background: var(--bg-primary);
}

[data-theme="light"] .blog-content h1,
[data-theme="light"] .blog-content h2,
[data-theme="light"] .blog-content h3 {
    color: var(--text-primary);
}

[data-theme="light"] .blog-content p,
[data-theme="light"] .blog-content li {
    color: var(--text-secondary);
}

/* Legal Pages Light Mode */
[data-theme="light"] .legal-content,
[data-theme="light"] .page-content {
    background: var(--bg-primary);
}

[data-theme="light"] .legal-content h1,
[data-theme="light"] .legal-content h2,
[data-theme="light"] .legal-content h3,
[data-theme="light"] .page-content h1,
[data-theme="light"] .page-content h2,
[data-theme="light"] .page-content h3 {
    color: var(--text-primary);
}

[data-theme="light"] .legal-content p,
[data-theme="light"] .legal-content li,
[data-theme="light"] .page-content p,
[data-theme="light"] .page-content li {
    color: var(--text-secondary);
}


/* Light theme specific elements */
[data-theme="light"] .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

[data-theme="light"] .btn-primary:hover {
    background: #b8985f;
    border-color: #b8985f;
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

[data-theme="light"] .btn-secondary {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--text-secondary);
}

[data-theme="light"] .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="light"] .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Service detail pages light theme */
[data-theme="light"] .service-detail-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .service-detail-title {
    background: linear-gradient(135deg, var(--primary-color), #d4af7a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

[data-theme="light"] .service-detail-title::before {
    display: none !important;
}

[data-theme="light"] .service-detail-title::after {
    display: none !important;
}

[data-theme="light"] .service-detail-title {
    text-shadow: none !important;
    box-shadow: none !important;
}

[data-theme="light"] .service-detail-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .service-detail-content {
    background: var(--bg-primary);
}

[data-theme="light"] .content-main h2,
[data-theme="light"] .content-main h3,
[data-theme="light"] .content-main h4 {
    color: var(--text-primary);
}

[data-theme="light"] .content-main p,
[data-theme="light"] .content-main li {
    color: var(--text-secondary);
}

[data-theme="light"] .cta-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .cta-box h3 {
    color: var(--text-primary);
}

[data-theme="light"] .cta-box p {
    color: var(--text-secondary);
}

/* About page light theme */
[data-theme="light"] .about-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .about-content {
    background: var(--bg-primary);
}

[data-theme="light"] .about-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .about-section h3 {
    color: var(--text-primary);
}

[data-theme="light"] .about-section p,
[data-theme="light"] .about-section li {
    color: var(--text-secondary);
}

/* Blog page light theme */
[data-theme="light"] .blog-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .blog-posts {
    background: var(--bg-primary);
}

[data-theme="light"] .blog-post-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .blog-post-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

[data-theme="light"] .blog-post-title {
    color: var(--text-primary);
}

[data-theme="light"] .blog-post-excerpt {
    color: var(--text-secondary);
}

[data-theme="light"] .blog-post-meta {
    color: var(--text-secondary);
}

/* Light theme form messages */
[data-theme="light"] .form-message-success {
    background: rgba(46, 160, 67, 0.1);
    border: 1px solid rgba(46, 160, 67, 0.3);
    color: #059669;
}

[data-theme="light"] .form-message-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
}

[data-theme="light"] .form-message-info {
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--primary-color);
}

/* Light theme contact details */
[data-theme="light"] .contact-item {
    color: var(--text-primary);
}

[data-theme="light"] .contact-label {
    color: var(--text-secondary);
}

[data-theme="light"] .contact-value {
    color: var(--primary-color);
}

[data-theme="light"] .contact-value:hover {
    color: #b8985f;
}

[data-theme="light"] .contact-description {
    color: var(--text-secondary);
}

/* Light theme process steps */
[data-theme="light"] .process-steps {
    gap: 1.5rem;
}

[data-theme="light"] .step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

[data-theme="light"] .step p {
    color: var(--text-secondary);
}

/* Light theme service features list */
[data-theme="light"] .service-features-list {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .service-features-list li {
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

[data-theme="light"] .service-features-list li:last-child {
    border-bottom: none;
}

/* Light theme dropdown divider */
[data-theme="light"] .dropdown-divider {
    background: var(--border-color);
}

/* Light theme brand text */
[data-theme="light"] .brand-text {
    background: linear-gradient(135deg, var(--primary-color), #d4af7a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Light theme modal close button */
[data-theme="light"] .contact-modal-close {
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .contact-modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Light theme contact alternative section */
[data-theme="light"] .contact-divider span {
    background: var(--card-bg);
    color: var(--text-secondary);
}

[data-theme="light"] .contact-divider::before {
    background: var(--border-color);
}

[data-theme="light"] .direct-contact p {
    color: var(--text-secondary);
}

/* Mobile responsive for theme toggle */
@media (max-width: 768px) {
    .nav-controls {
        top: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }
    
    .theme-toggle-container {
        padding: 0.4rem 0.8rem;
    }
    
    .theme-label {
        font-size: 0.75rem;
        min-width: 30px;
    }
    
    .toggle-track {
        width: 36px;
        height: 18px;
    }
    
    .toggle-thumb {
        width: 12px;
        height: 12px;
        top: 2px;
        left: 2px;
    }
    
    .theme-toggle.dark .toggle-thumb {
        transform: translateX(18px);
    }
}

/* Button styles for modal */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .contact-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .contact-modal-header,
    .contact-modal-body {
        padding: 1.5rem;
    }
    
    .contact-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions-modal {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    
    .form-actions-modal .btn {
        width: 100%;
    }
    
    .btn-outline {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Service Selection Modal */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-selection-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-primary);
}

.service-selection-card:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 165, 114, 0.4);
    box-shadow: var(--shadow-medium);
}

.service-selection-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-selection-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.service-selection-featured {
    border-color: rgba(197, 165, 114, 0.4);
    background: rgba(197, 165, 114, 0.08);
}

.service-selection-featured h4 {
    color: var(--primary-color);
}

/* Mobile responsiveness for service selection */
@media (max-width: 768px) {
    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-selection-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .service-selection-card h4 {
        font-size: 1.1rem;
    }
    
    .service-selection-card p {
        font-size: 0.85rem;
    }
}