/* ===== GLOBAL STYLES ===== */
:root {
    --navy: #0d1b3e;
    --navy-mid: #162347;
    --navy-light: #1e3060;
    --gold: #c9a227;
    --gold-light: #e4b83a;
    --gold-pale: #fdf3d8;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --text-dark: #0d1b3e;
    --text-mid: #3d4f6e;
    --text-light: #6b7fa3;
    --border: #e4e9f2;
    --shadow-sm: 0 2px 8px rgba(13, 27, 62, 0.07);
    --shadow-md: 0 6px 20px rgba(13, 27, 62, 0.1);
    --shadow-lg: 0 16px 40px rgba(13, 27, 62, 0.14);
    --shadow-xl: 0 24px 60px rgba(13, 27, 62, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.65;
    color: var(--text-mid);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-emblem {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.2px;
}

.logo-title-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--off-white);
}

.nav-link.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 9px 22px;
}

.nav-link.nav-cta:hover {
    background: var(--navy-light);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 90px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy) 0%, #0f2251 50%, var(--navy-light) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--gold);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation: shapeDrift 18s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    opacity: 0.04;
    animation: shapeDrift 24s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 15%;
    opacity: 0.03;
    background: var(--white);
    animation: shapeDrift 14s ease-in-out infinite 3s;
}

@keyframes shapeDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.hero-title > span:first-child {
    color: var(--white);
}

.hero-title-sub {
    font-size: 26px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin-top: 6px;
    margin-bottom: 12px;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease 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; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.9;
    font-weight: 400;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.28s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 162, 39, 0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, #f0cc50 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 48px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2.5s infinite;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.left-aligned {
    text-align: left;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--gold-pale);
    color: #8a6b10;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about {
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.photo-initials {
    font-size: 96px;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.6);
    font-family: 'Playfair Display', serif;
    letter-spacing: -2px;
    user-select: none;
}

.photo-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 3px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.about-credentials {
    width: 100%;
    max-width: 340px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.credential-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.credential-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.about-text .section-header {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 32px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--navy);
}

.about-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-btn {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(13, 27, 62, 0.25);
}

.about-btn:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, #243d7a 100%);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(13, 27, 62, 0.35);
    transform: translateY(-2px);
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: inherit;
}

.service-card h3 {
    color: var(--navy);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px) scale(1.02);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.service-card.featured::after {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--off-white);
    color: var(--navy);
}

.service-card.featured .service-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.service-card.featured .service-list {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.service-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    padding: 7px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.75);
}

.service-card.featured .service-list li::before {
    background: var(--gold-light);
}

/* ===== WHY US ===== */
.why-us {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-us .section-tag {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
    border-color: rgba(201, 162, 39, 0.25);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 162, 39, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(201, 162, 39, 0.2);
}

.feature-number {
    font-size: 12px;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.5);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.25s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateX(4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.info-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-text a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--navy);
}

.contact-form {
    background: var(--white);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s ease;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0bcd4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13, 27, 62, 0.07);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7fa3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(13, 27, 62, 0.28);
    padding: 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, #243d7a 100%);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(13, 27, 62, 0.38);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.form-note a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: #080e20;
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-emblem {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-light) 0%, #243d7a 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.footer-logo-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.footer-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    width: fit-content;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
    opacity: 0.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Service card links */
.service-link {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--gold);
}

.service-link::after {
    content: '→';
    font-size: 14px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.service-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-link-white {
    color: var(--white);
}

.service-link-white:hover {
    color: var(--gold-light);
}

/* ===== ANIMATE ON SCROLL ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 24px 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 4px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link.nav-cta {
        margin: 0 24px;
        text-align: center;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-title-sub {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        padding: 24px 20px;
        gap: 0;
    }

    .stat-item {
        padding: 0 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .about-visual {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}
