/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5c;
    --primary-dark: #0d1f33;
    --gold: #b8964e;
    --gold-light: #d4b068;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #3d4249;
    --gray-900: #212529;
    --black: #0a0a0a;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(184, 150, 78, 0.4));
}

.navbar.scrolled .logo-img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(184, 150, 78, 0.5));
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-link:hover {
    color: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-active {
    color: var(--gold);
}

.lang-inactive {
    opacity: 0.5;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    background-image: url('../assets/images/hero/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.8) 0%,
        rgba(10,10,10,0.55) 45%,
        rgba(10,10,10,0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 250px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 150, 78, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-light {
    color: var(--white);
}

.section-header-light .section-tag {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.section-header-light .section-title {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== ABOUT ==================== */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    text-align: justify;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Text color highlights */
.text-gold {
    color: var(--gold);
    font-weight: 600;
}

.text-primary {
    color: var(--primary);
    font-weight: 600;
}

/* ==================== CAROUSEL ==================== */
.about-carousel {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.carousel::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    z-index: -1;
}

/* ==================== PURPOSE ==================== */
.section-purpose {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    z-index: 1;
}

.section-purpose .container {
    position: relative;
    z-index: 2;
}

.purpose-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.purpose-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.purpose-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}

.purpose-text {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* ==================== VALUES ==================== */
.section-values {
    background: var(--off-white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 0 1 320px;
    max-width: 320px;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    flex-grow: 1;
}

/* ==================== SERVICES ==================== */
.section-services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.service-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-900);
}

/* ==================== CLIENTS ==================== */
.section-clients {
    background: var(--off-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.client-logo:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo-lg img {
    max-height: 90px;
    max-width: 100%;
}

.client-logo-xl img {
    max-height: 110px;
    max-width: 100%;
}

/* ==================== COVERAGE ==================== */
.section-coverage {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.section-coverage .container {
    position: relative;
    z-index: 2;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.city-tag {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.city-tag:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ==================== CONTACT ==================== */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group-full {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: none;
    border-bottom: 1px solid var(--gray-300);
    background: transparent;
    color: var(--gray-900);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1.2rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.btn-submit {
    grid-column: span 2;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 150, 78, 0.4);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-nav a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

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

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

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

/* ==================== BLOG ==================== */
.section-blog {
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.blog-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

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

/* ==================== TOUCH/TAP ACTIVE STATES ==================== */
.value-card.tapped {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card.tapped {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.service-card.tapped::before {
    transform: scaleX(1);
}

.service-card.tapped .service-icon {
    color: var(--gold);
}

.city-tag.tapped {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        gap: 1.5rem;
        max-width: 700px;
    }

    .value-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    /* --- Container --- */
    .container {
        padding: 0 1.25rem;
    }

    /* --- Nav --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-slow);
    }

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

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-logo {
        visibility: hidden;
    }

    .nav-hamburger {
        display: block;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* --- Hero --- */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        min-height: 100svh;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .hero-logo {
        height: 150px;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.6rem;
    }

    .scroll-line {
        height: 35px;
    }

    /* --- Sections --- */
    .section {
        padding: 4rem 0;
    }

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

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* --- About --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .carousel {
        height: 280px;
    }

    .carousel::after {
        display: none;
    }

    /* --- Values --- */
    .values-grid {
        gap: 1rem;
        max-width: 100%;
    }

    .value-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .value-card {
        padding: 1.8rem;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.8rem 1.2rem;
    }

    .service-card h3 {
        font-size: 0.8rem;
    }

    /* --- Blog --- */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    /* --- Clients --- */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        padding: 1.5rem;
        min-height: 100px;
    }

    .client-logo img {
        max-height: 50px;
        max-width: 100%;
    }

    .client-logo-lg img {
        max-height: 65px;
        max-width: 100%;
    }

    .client-logo-xl img {
        max-height: 80px;
        max-width: 100%;
    }

    /* --- Coverage --- */
    .section-coverage {
        padding: 5rem 0;
    }

    .section-purpose {
        padding: 5rem 0;
    }

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

    .purpose-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .coverage-cities {
        gap: 0.5rem;
    }

    .city-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    /* --- Contact --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .btn-submit {
        grid-column: span 1;
        width: 100%;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.7rem;
    }
}

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

    .hero {
        min-height: auto;
        height: 100vh;
        height: 100svh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-logo {
        height: 120px;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 0.75rem;
    }

    .section {
        padding: 3rem 0;
    }

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

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

    .section-tag {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    /* Services 1 column on very small screens */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Clients 2 columns, uniform */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .client-logo {
        padding: 1rem;
        min-height: 80px;
    }

    .client-logo img {
        max-height: 40px;
        max-width: 100%;
    }

    .client-logo-lg img {
        max-height: 55px;
        max-width: 100%;
    }

    .client-logo-xl img {
        max-height: 65px;
        max-width: 100%;
    }

    /* Values more compact */
    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    /* Blog compact */
    .blog-image {
        height: 180px;
    }

    .blog-content h3 {
        font-size: 1.05rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    /* Contact compact */
    .contact-item h4 {
        font-size: 0.75rem;
    }

    .contact-item a,
    .contact-item p {
        font-size: 0.9rem;
    }

    /* Coverage */
    .city-tag {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    /* Purpose */
    .purpose-title {
        font-size: 1.6rem;
    }

    .purpose-text {
        font-size: 0.9rem;
    }
}
