/* ============================
   VARIABLES & RESET
   ============================ */
:root {
    /* Navy palette */
    --navy-900: #0a1628;
    --navy-800: #0f1f3d;
    --navy-700: #152a4a;
    --navy-600: #1a3356;
    --navy-500: #1e3a5f;
    --navy: #1a2744;

    /* Beige palette */
    --beige-100: #faf8f4;
    --beige-200: #f5f0e8;
    --beige-300: #ede5d8;
    --beige-400: #e0d5c3;
    --beige-500: #d4c8b0;
    --beige-600: #c4b495;

    /* Accent */
    --accent: #c9956b;
    --accent-light: #ddb68e;
    --accent-dark: #a87a52;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul { list-style: none; }

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--accent);
    font-style: italic;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 39, 68, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--beige-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(26, 39, 68, 0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy);
    font-weight: 400;
}

.nav-logo-img {
    height: 86px;
    width: auto;
    display: block;
    transition: height 0.4s var(--ease);
}

.navbar.scrolled .nav-logo-img {
    height: 70px;
}

@media (max-width: 640px) {
    .nav-logo-img { height: 66px; }
    .navbar.scrolled .nav-logo-img { height: 56px; }
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--beige-200);
}

.nav-cta {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: var(--navy);
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 39, 68, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 50%, var(--beige-300) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--navy);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--navy);
    bottom: 200px;
    right: 30%;
    opacity: 0.04;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 20px;
    border: 1.5px solid var(--accent);
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 5px;
    height: 40px;
    width: 1px;
    background: var(--beige-400);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--navy);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(26, 39, 68, 0.15);
}

/* .hero-image-placeholder svg removed */
.hero-float-card {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(26, 39, 68, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.hero-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.hero-float-card span {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--beige-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
}

.card-1 {
    top: 40px;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    right: -40px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ============================
   MARQUEE
   ============================ */
.marquee-section {
    background: var(--navy);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 10px !important;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
}

/* .about-image-placeholder svg removed */
.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--navy);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(26, 39, 68, 0.3);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1;
}

.experience-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.about-lead {
    font-size: 20px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: var(--beige-200);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 2px;
}

.feature span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================
   SERVICES
   ============================ */
.services {
    background: var(--beige-100);
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--beige-300);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--beige-200), var(--beige-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 400;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s var(--ease);
}

.service-link:hover {
    color: var(--accent-dark);
    letter-spacing: 0.5px;
}

/* ============================
   PRICING
   ============================ */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--beige-300);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
}

.pricing-card--featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.2);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 70px rgba(26, 39, 68, 0.3);
}

.pricing-card--featured * {
    color: var(--white);
}

.pricing-card--featured .price-amount {
    color: var(--white);
}

.pricing-card--featured .price-currency {
    color: var(--accent-light);
}

.pricing-card--featured .pricing-features li::before {
    color: var(--accent-light);
}

.pricing-card--featured .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.pricing-card--featured .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 400;
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--navy);
    line-height: 1;
}

.price-currency {
    font-size: 20px;
    color: var(--gray-400);
    margin-left: 4px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--beige-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card--featured .pricing-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 16px;
}

.pricing-note strong {
    color: var(--accent);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
    background: var(--beige-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--beige-300);
    transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 39, 68, 0.08);
}

.testimonial-stars {
    font-size: 18px;
    color: #f5a623;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    padding: 40px 0 0;
    background: var(--beige-100);
}

.cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.1;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.06;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--beige-100);
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    background: var(--beige-200);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-card a,
.contact-card span {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--beige-100);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 16px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--beige-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-700);
    transition: all 0.3s var(--ease);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form select {
    cursor: pointer;
    color: var(--gray-400);
}

.contact-form select:valid {
    color: var(--gray-700);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(26, 39, 68, 0.08);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

/* ============================
   MAP
   ============================ */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    filter: grayscale(0.3) contrast(1.05);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* ============================
   ANIMATIONS
   ============================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .pricing-card--featured {
        transform: scale(1);
    }

    .pricing-card--featured:hover {
        transform: translateY(-8px);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 24px;
        box-shadow: 0 10px 30px rgba(26, 39, 68, 0.1);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .nav-menu.active .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .stat::after {
        display: none !important;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .cta-card {
        padding: 48px 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .contact-form {
        padding: 24px;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
        bottom: -16px;
        right: -8px;
    }

    .experience-number {
        font-size: 24px;
    }
}

/* ============================
   HERO VALUES (replaces stats)
   ============================ */
.hero-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value {
    position: relative;
    max-width: 170px;
}

.value:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 5px;
    height: 48px;
    width: 1px;
    background: var(--beige-400);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--navy);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}

.value-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================
   ABOUT — FAM BADGE OVERRIDE
   ============================ */
.about-experience-badge .experience-number {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1;
}

/* ============================
   TEAM
   ============================ */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--beige-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--beige-300);
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 39, 68, 0.12);
    border-color: transparent;
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--beige-200);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.8s var(--ease-out);
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-info {
    padding: 36px 36px 40px;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
}

.team-courses {
    margin-bottom: 24px;
    background: var(--white);
    border: 1px solid var(--beige-300);
    border-radius: 14px;
    overflow: hidden;
}

.team-courses summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.team-courses summary::after {
    content: "+";
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.team-courses[open] summary::after {
    content: "-";
}

.team-courses ul {
    margin: 0;
    padding: 0 18px 14px 34px;
}

.team-courses li {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 8px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--beige-300);
}

/* ============================
   SERVICES — 7th card (wide)
   ============================ */
.services-grid {
    grid-auto-rows: 1fr;
}

.service-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 32px;
    padding: 32px 40px;
    text-align: left;
}

.service-card--wide .service-icon {
    margin-bottom: 0;
}

.service-card--wide h3 {
    margin-bottom: 6px;
}

.service-card--wide p {
    margin-bottom: 0;
    max-width: 640px;
}

.service-card--wide .service-link {
    white-space: nowrap;
}

/* ============================
   GALLERY
   ============================ */
.gallery {
    background: var(--beige-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--beige-200);
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06);
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out);
}

.gallery-grid {
    grid-auto-rows: 260px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--large {
    grid-column: span 4;
    grid-row: span 2;
}

/* ============================
   FOOTER LOGO IMG
   ============================ */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
}

/* ============================
   RESPONSIVE — new sections
   ============================ */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item {
        grid-column: span 2;
    }

    .gallery-item--large {
        grid-column: span 4;
        grid-row: span 2;
    }

    .service-card--wide {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 16px;
    }

    .service-card--wide .service-icon {
        margin: 0;
    }

    .service-card--wide p {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero-values {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .value:not(:last-child)::after {
        display: none;
    }

    .value {
        text-align: center;
        max-width: 100%;
    }

    .team-info {
        padding: 28px 24px 32px;
    }

    .team-name {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item,
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-logo-img {
        height: 56px;
    }
}

/* ============================
   CONTACT — links, map
   ============================ */
.contact-card a {
    color: var(--gray-600);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s var(--ease);
    display: block;
}
.contact-card a:hover {
    color: var(--navy);
}
.contact-map {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08);
}
.contact-map iframe {
    display: block;
    width: 100%;
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 22, 38, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
    cursor: zoom-out;
}
.lightbox.active {
    display: flex;
    animation: lightbox-fade 0.25s ease;
}
@keyframes lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
