/* ====================================================
   NALA GROUP — STYLE SYSTEM
   Design: Premium, clean, sharp corporate identity
   Palette: Deep Navy · Gold · White · Cool Grays
   ==================================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Brand Colors */
    --navy-900: #070e1a;
    --navy-800: #0a1628;
    --navy-700: #0f1f38;
    --navy-600: #162a4a;
    --navy-500: #1e3a5f;

    /* Gold Accent */
    --gold-500: #c8a84e;
    --gold-400: #d4b963;
    --gold-300: #e0ca7a;
    --gold-200: #ece0a8;
    --gold-glow: rgba(200, 168, 78, 0.15);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e2e5ea;
    --gray-300: #c8cdd5;
    --gray-400: #9ba3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 30px rgba(200, 168, 78, 0.25);
}

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

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

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--gray-700);
    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: color 0.3s var(--ease-smooth);
}

ul {
    list-style: none;
}

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

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.text-accent {
    color: var(--gold-500);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-left {
    text-align: left;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease-out);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(200, 168, 78, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-400);
    color: var(--gold-300);
    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-smooth);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-accent {
    color: var(--gold-500);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 600;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 31, 56, 0.85) 50%, rgba(10, 22, 40, 0.95) 100%),
        url('assets/images/hero-bg.png') center/cover no-repeat;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(200, 168, 78, 0.12);
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.65);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ================================================
   SERVICES OVERVIEW
   ================================================ */
.services-overview {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 48px 36px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    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(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-500);
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}

.service-card:hover .card-icon svg {
    color: var(--navy-900);
}

.card-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-100);
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
    transition: color 0.4s var(--ease-smooth);
}

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

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 14px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-500);
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .card-link {
    letter-spacing: 1.5px;
}

/* ================================================
   SERVICE DETAIL SECTIONS
   ================================================ */
.service-detail {
    padding: var(--section-pad) 0;
}

.service-detail-alt {
    background: var(--gray-50);
}

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

.detail-grid-reverse {
    direction: ltr;
}

.detail-grid-reverse .detail-content {
    order: -1;
}

.detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.8s var(--ease-out);
}

.detail-image:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold-500);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.25;
    margin-bottom: 20px;
}

.detail-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.detail-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    color: var(--gold-500);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.detail-features li strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.detail-features li span {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ================================================
   BDM HIGHLIGHT
   ================================================ */
.bdm-highlight {
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.04) 0%, rgba(200, 168, 78, 0.06) 100%);
    border: 1px solid rgba(200, 168, 78, 0.25);
    border-left: 4px solid var(--gold-500);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.bdm-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bdm-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
    line-height: 1.35;
}

.bdm-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

.bdm-desc strong {
    color: var(--navy-800);
}

@media (max-width: 768px) {
    .bdm-highlight {
        padding: 24px 20px;
    }
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--navy-800);
}

.why-section .section-tag {
    color: var(--gold-400);
}

.why-section .section-tag::before {
    background: var(--gold-400);
}

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

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

.why-card {
    padding: 40px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-6px);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--gold-glow);
    border-radius: 14px;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-500);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
}

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

.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 80px 0 0;
    background: var(--navy-900);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 400px;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s var(--ease-smooth);
}

.footer-col a:hover {
    color: var(--gold-400);
    padding-left: 6px;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-tagline {
    color: var(--gold-500) !important;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal on Scroll */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 168, 78, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .detail-grid-reverse .detail-content {
        order: 0;
    }

    .detail-image img {
        height: 350px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-smooth);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-stats {
        gap: 24px;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-links-group {
        gap: 40px;
    }

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

@media (max-width: 480px) {
    :root {
        --section-pad: 64px;
    }

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

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }

    .detail-image img {
        height: 260px;
    }

    .services-grid {
        padding: 0;
    }

    .service-card {
        padding: 36px 28px;
    }
}

/* ================================================
   AUSTRALIA PAGE
   ================================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--navy-800);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
    opacity: 0.95;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero .section-tag {
    color: var(--gold-400);
}

.page-hero .section-tag::before {
    background: var(--gold-400);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

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

.partners-section {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
}

.partners-grid {
    max-width: 700px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.partner-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-400);
    flex-shrink: 0;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.partner-role {
    font-size: 0.88rem;
    color: var(--gold-500);
    font-weight: 500;
}

.partner-bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.partner-bio strong {
    color: var(--navy-800);
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px;
}

.partner-tag {
    padding: 6px 16px;
    background: var(--gold-glow);
    color: var(--gold-500);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.partner-cta {
    width: 100%;
    text-align: center;
}

.aus-cta-section {
    padding: var(--section-pad) 0;
    background: var(--navy-800);
}

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

.aus-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.aus-cta-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.8;
}

.btn-outline-dark {
    color: var(--navy-800);
    border-color: var(--gray-300);
}

.btn-outline-dark:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.ndis-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .partner-card { padding: 32px 24px; }
    .partner-header { flex-direction: column; text-align: center; }
    .partner-tags { justify-content: center; }
    .ndis-cta-row { flex-direction: column; }
    .ndis-cta-row .btn { text-align: center; }
}

.why-cta-row {
    text-align: center;
    margin-top: 48px;
}

.partner-specialties {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.partner-specialties h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .navbar, .hero-particles, .hero-scroll-indicator, .nav-toggle {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    body {
        color: #000;
    }
}
