/* ============================================
   JYJ Services — Professional Design System
   ============================================ */

/* ----------- TOKENS ----------- */
:root {
    /* Palette */
    --navy-900: #0A0F1E;
    --navy-800: #0F172A;
    --navy-700: #1A2542;
    --navy-600: #1E293B;
    --gold-500:  #F59E0B;
    --gold-400:  #FBBF24;
    --gold-600:  #D97706;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-700: #334155;
    --white:     #FFFFFF;
    --success:   #10B981;

    /* Typography */
    --font-display: 'Manrope', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 100px);
    --container:   1240px;

    /* Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;

    /* Elevation */
    --shadow-xs:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm:  0 4px 12px rgba(0,0,0,.08);
    --shadow-md:  0 8px 24px rgba(0,0,0,.10);
    --shadow-lg:  0 20px 48px rgba(0,0,0,.12);
    --shadow-gold: 0 6px 24px rgba(245,158,11,.35);

    /* Transitions */
    --ease:       cubic-bezier(.4,0,.2,1);
    --duration:   .28s;
    --transition: var(--duration) var(--ease);
}

/* ----------- RESET ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--font-body); color: var(--slate-700); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
ul    { list-style: none; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

h1,h2,h3,h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-800);
    letter-spacing: -.02em;
}

/* ----------- UTILITIES ----------- */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
}
.section-padding { padding: var(--section-pad) 0; }
.bg-alt          { background: var(--slate-100); }
.text-center     { text-align: center; }

/* ----------- BUTTONS ----------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn i { font-size: 1.1em; }

.btn-lg  { padding: 15px 32px; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,158,11,.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost-white {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.45);
    backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
}

.btn-nav-cta {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
    padding: 10px 22px;
    font-size: .9rem;
}
.btn-nav-cta:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    box-shadow: var(--shadow-gold);
}

/* ----------- TOP BAR ----------- */
.top-bar {
    background: var(--navy-900);
    color: var(--slate-400);
    font-size: .8rem;
    font-family: var(--font-display);
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 12px;
}
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--gold-500); }
.top-bar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-phone {
    display: flex; align-items: center; gap: 5px;
    color: var(--slate-400);
    transition: color var(--transition);
}
.top-bar-phone i { color: var(--gold-500); }
.top-bar-phone:hover { color: var(--white); }

@media (max-width: 640px) {
    .top-bar-left { display: none; }
    .top-bar-right { gap: 10px; font-size: .75rem; }
}

/* ----------- HEADER ----------- */
.header {
    position: fixed;
    top: 34px; /* height of top-bar */
    left: 0;
    width: 100%;
    z-index: 900;
    transition: background var(--transition), box-shadow var(--transition), top var(--transition), padding var(--transition);
    padding: 18px 0;
}
.header.top-bar-hidden { top: 0; }

.header.scrolled {
    background: rgba(10, 15, 30, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a:not(.btn) {
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: .95rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-links a:not(.btn):hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    font-size: 1.5rem;
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.16); }

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1000;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity var(--transition);
}
.mobile-overlay.visible { display: block; opacity: 1; }

/* Mobile drawer */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--navy-800);
    z-index: 1010;
    padding: 28px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: right .35s var(--ease);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-close-btn {
    align-self: flex-end;
    background: rgba(255,255,255,.08);
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.mobile-close-btn:hover { background: rgba(255,255,255,.16); }
.mobile-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
}
.mobile-logo span { color: var(--gold-500); }
.mobile-nav nav {
    display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav nav a:not(.btn) {
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.mobile-nav nav a:not(.btn):hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-cta { margin-top: 8px; }
.mobile-contacts {
    margin-top: auto;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
}
.mobile-contacts a {
    display: flex; align-items: center; gap: 10px;
    color: var(--slate-400);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.mobile-contacts a i { color: var(--gold-500); }
.mobile-contacts a:hover { color: var(--white); }

/* ----------- SECTION LABELS ----------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,.12);
    color: var(--gold-600);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(245,158,11,.25);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}
.section-description {
    color: var(--slate-600);
    font-size: 1.05rem;
    max-width: 580px;
    margin-inline: auto;
}
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }

/* ----------- HERO ----------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg,
            rgba(10,15,30,.92) 0%,
            rgba(10,15,30,.70) 50%,
            rgba(10,15,30,.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}
.hero-logo {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    margin-bottom: 24px;
    display: block;
    object-fit: contain;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,158,11,.18);
    border: 1px solid rgba(245,158,11,.4);
    color: var(--gold-400);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -.03em;
}
.hero-title-accent {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
    -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,.75);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    font-weight: 500;
}
.trust-item i { color: var(--success); font-size: 1.1rem; }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    font-size: 1.3rem;
    animation: bounce 2s infinite;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.hero-scroll-cue:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}

/* ----------- ABOUT ----------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.about-image-col { position: relative; }
.about-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-frame img {
    width: 100%; height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column;
    line-height: 1.1;
}
.badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-500);
}
.badge-text {
    font-size: .8rem;
    font-weight: 600;
    color: var(--slate-600);
    margin-top: 2px;
}

/* About text */
.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 16px;
    line-height: 1.5;
}
.about-text p { color: var(--slate-600); margin-bottom: 20px; }

.feature-list {
    display: flex; flex-direction: column; gap: 10px;
    margin: 24px 0;
}
.feature-list li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600;
    color: var(--slate-700);
    font-size: .95rem;
}
.feature-list i {
    color: var(--gold-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px;
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    margin-top: 32px;
}
.stat-block {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 4px;
}
.stat-block strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -.03em;
}
.stat-block span {
    font-size: .8rem;
    font-weight: 600;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.stat-divider {
    width: 1px; height: 40px;
    background: var(--slate-200);
    flex-shrink: 0;
}

/* ----------- SERVICES ----------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

/* Featured card accent */
.service-card--featured {
    border-color: rgba(245,158,11,.3);
    box-shadow: 0 0 0 1px rgba(245,158,11,.25), var(--shadow-xs);
}
.service-card--featured:hover {
    box-shadow: 0 0 0 2px var(--gold-500), var(--shadow-lg);
}
.card-featured-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}
.service-card:hover .card-img-wrap img { transform: scale(1.08); }

/* Image hover overlay */
.card-overlay {
    position: absolute; inset: 0;
    background: rgba(10,15,30,.65);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover .card-overlay { opacity: 1; }
.card-overlay-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: all .2s var(--ease);
    transform: translateY(8px);
}
.service-card:hover .card-overlay-btn { transform: translateY(0); }
.card-overlay-btn:hover { background: var(--gold-600); }

.card-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.card-icon-badge {
    width: 44px; height: 44px;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-600);
    font-size: 1.35rem;
    transition: all var(--transition);
}
.service-card:hover .card-icon-badge {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}
.card-body h3 {
    font-size: 1.18rem;
    color: var(--navy-800);
}
.card-body p {
    font-size: .9rem;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ----------- WHY US ----------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.pillar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(245,158,11,.3);
}
.pillar-icon {
    width: 64px; height: 64px;
    background: rgba(245,158,11,.1);
    border: 2px solid rgba(245,158,11,.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--gold-600);
    transition: all var(--transition);
}
.pillar-card:hover .pillar-icon {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}
.pillar-card h3 { font-size: 1.1rem; }
.pillar-card p  { color: var(--slate-600); font-size: .92rem; line-height: 1.6; }

/* ----------- CTA BAND ----------- */
.cta-band {
    background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: clamp(48px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 60vw; height: 200%;
    background: radial-gradient(ellipse, rgba(245,158,11,.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-band-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-band-text p  { color: var(--slate-400); margin-top: 6px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------- CONTACT ----------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}
.contact-info .section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.contact-info > p { color: var(--slate-600); margin-bottom: 32px; margin-top: 12px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(245,158,11,.3); }
.contact-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(245,158,11,.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-600);
    font-size: 1.35rem;
}
.contact-card h4 { font-size: .9rem; color: var(--navy-800); margin-bottom: 6px; }
.contact-card a  { display: block; color: var(--slate-600); font-size: .9rem; transition: color var(--transition); }
.contact-card a:hover { color: var(--gold-600); }
.contact-card span { color: var(--slate-600); font-size: .9rem; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-200);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex; flex-direction: column; gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--navy-700);
}
.form-group label span { color: var(--gold-500); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--slate-700);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
    width: 100%;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-group textarea { resize: vertical; }
.form-note {
    margin-top: 12px;
    font-size: .8rem;
    color: var(--slate-400);
    display: flex; align-items: center; gap: 6px;
    text-align: center;
    justify-content: center;
}
.form-note i { color: var(--success); }

/* ----------- FOOTER ----------- */
.footer {
    background: var(--navy-900);
    color: var(--slate-400);
    padding-top: clamp(48px, 7vw, 80px);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
    gap: clamp(32px, 5vw, 60px);
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .site-logo { height: 90px; }
.footer-brand > p {
    margin-top: 16px;
    font-size: .9rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
    display: flex; align-items: center; gap: 6px;
    font-size: .9rem;
    transition: color var(--transition);
}
.footer-links-col a i { font-size: .8rem; color: var(--gold-600); }
.footer-links-col a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem;
}
.footer-contact-list i { color: var(--gold-500); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
}
.footer-bottom p:last-child { color: rgba(255,255,255,.3); }

/* ----------- BACK TO TOP ----------- */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 800;
    width: 44px; height: 44px;
    background: var(--gold-500);
    color: var(--navy-900);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover { background: var(--gold-600); transform: translateY(-3px); }

/* ----------- SCROLL ANIMATIONS ----------- */
.animate-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .7s var(--ease) forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }

@keyframes fadeUp {
    to { opacity: 1; transform: none; }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.scroll-reveal.delay-1 { transition-delay: .1s; }
.scroll-reveal.delay-2 { transition-delay: .2s; }
.scroll-reveal.delay-3 { transition-delay: .3s; }
.scroll-reveal.visible { opacity: 1; transform: none; }

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img-frame img { height: 380px; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links     { display: none; }
    .mobile-menu-btn { display: flex; }
    .top-bar       { font-size: .73rem; }
    .form-row      { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
    .hero-actions  { flex-direction: column; }
    .btn-lg        { width: 100%; justify-content: center; }
    .about-stats   { flex-direction: column; gap: 16px; }
    .stat-divider  { display: none; }
    .back-to-top   { bottom: 16px; right: 16px; }
    .top-bar-right { flex-direction: column; gap: 4px; }
}
