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

:root {
    --black: #0a0a0a;
    --black-2: #141414;
    --black-3: #1f1f1f;
    --yellow: #FFD60A;
    --yellow-2: #FFB800;
    --yellow-soft: #FFF7CC;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all .3s cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.18;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }

.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 24px;
}

.highlight {
    color: var(--yellow);
    background: linear-gradient(180deg, transparent 60%, rgba(255,214,10,.25) 60%);
    padding: 0 4px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(255,214,10,0.12);
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,214,10,0.3);
    margin-bottom: 18px;
}
.eyebrow-dark { color: var(--black); background: var(--yellow); border-color: var(--yellow-2); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    line-height: 1;
}
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 8px 22px rgba(255,214,10,0.35);
}
.btn-primary:hover {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.btn-light:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--black);
    color: var(--gray-300);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,214,10,0.15);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-left i { color: var(--yellow); margin-right: 6px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.top-bar-right a:hover { background: var(--yellow); color: var(--black); }

/* ============ HEADER ============ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-footer .logo-img { height: 84px; }

.nav ul { display: flex; gap: 4px; }
.nav a {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 100px;
    color: var(--gray-700);
}
.nav a:hover { background: var(--yellow-soft); color: var(--black); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
    position: relative;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,214,10,0.2), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,184,0,0.15), transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,214,10,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,214,10,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-text {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--yellow);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stats .stat span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.hero-visual { position: relative; min-height: 460px; }
.passport-card {
    background: linear-gradient(145deg, var(--yellow), var(--yellow-2));
    color: var(--black);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 30px 80px rgba(255,214,10,0.25), 0 0 0 1px rgba(0,0,0,0.1);
    transform: rotate(-3deg);
    position: relative;
    overflow: hidden;
    max-width: 420px;
    margin-left: auto;
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
    0%,100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-12px); }
}
.passport-header {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(0,0,0,0.2);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.95rem;
}
.passport-header i { font-size: 1.6rem; }
.passport-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.passport-row:last-child { border-bottom: 0; }
.passport-row span { color: rgba(0,0,0,0.6); font-weight: 500; }
.passport-row strong { font-weight: 700; }
.status-ok { color: #15803d !important; }
.passport-stamp {
    position: absolute;
    bottom: 24px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 800;
    color: rgba(20,80,30,0.4);
    border: 3px solid rgba(20,80,30,0.4);
    padding: 6px 14px;
    border-radius: 8px;
    transform: rotate(-12deg);
    letter-spacing: 0.15em;
}
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg);
    color: var(--black);
    animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge i {
    width: 42px; height: 42px;
    background: var(--yellow);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.floating-badge strong { display: block; font-size: 0.95rem; }
.floating-badge span { font-size: 0.78rem; color: var(--gray-500); }
.badge-1 { top: 20px; left: -10px; animation-delay: 0s; }
.badge-2 { bottom: 20px; left: 30px; animation-delay: 1.5s; }
@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============ TRUSTED ============ */
.trusted {
    background: var(--gray-50);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}
.trusted-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 22px;
}
.trusted-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 50px; flex-wrap: wrap;
}
.trusted-logos span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.trusted-logos span:hover { color: var(--black); }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }
.section-head.light h2, .section-head.light p { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,0.75); }

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: var(--white); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.service-card.featured::before { background: var(--yellow); transform: scaleX(1); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-link { color: var(--yellow); }
.service-card.featured ul li { color: rgba(255,255,255,0.85); }
.service-card.featured ul li i { color: var(--yellow); }

.card-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.service-flag { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 18px; }
.service-card ul { margin-bottom: 22px; }
.service-card ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    display: flex; align-items: center; gap: 10px;
}
.service-card ul li i { color: var(--yellow-2); font-size: 0.8rem; }
.service-link {
    color: var(--black);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover { color: var(--yellow-2); gap: 12px; }
.service-link i { transition: var(--transition); }

/* ============ ABOUT ============ */
.about { padding: 100px 0; background: var(--gray-50); }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about-content h2 { margin-bottom: 20px; }
.about-content > p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.02rem; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat i {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--yellow);
    color: var(--black);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.feat strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.feat span { color: var(--gray-600); font-size: 0.92rem; }

.about-img-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--black);
    padding: 22px;
    box-shadow: var(--shadow-lg);
}
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 14px;
}
.about-tile {
    background: var(--yellow);
    border-radius: 18px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px;
    color: var(--black);
    transition: var(--transition);
}
.about-tile.dark { background: var(--black-2); color: var(--yellow); border: 1px solid rgba(255,214,10,0.2); }
.about-tile i { font-size: 2.6rem; }
.about-tile span { font-weight: 700; font-size: 1.05rem; }
.about-tile:hover { transform: scale(1.03); }

/* ============ PROCESS ============ */
.process {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,214,10,0.15), transparent 60%);
}
.process > .container { position: relative; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,214,10,0.18);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}
.step:hover {
    background: rgba(255,214,10,0.08);
    border-color: var(--yellow);
    transform: translateY(-6px);
}
.step-num {
    position: absolute;
    top: 22px; right: 22px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: rgba(255,214,10,0.18);
}
.step i {
    width: 56px; height: 56px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}
.step h4 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.93rem; }

/* ============ TEAM ============ */
.team { padding: 100px 0; background: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}
.team-photo {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black), var(--black-3));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.team-initials {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 5rem;
    color: var(--yellow);
    letter-spacing: -0.04em;
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent 50%);
    display: flex;
    align-items: flex-end; justify-content: center;
    gap: 12px;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
    width: 38px; height: 38px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.team-overlay a:hover { background: var(--white); }
.team-info { padding: 26px; }
.team-info h3 { margin-bottom: 4px; }
.team-role {
    color: var(--yellow-2);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 14px;
}
.team-info p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.team-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.team-tags span {
    background: var(--yellow-soft);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--yellow);
    opacity: 0.18;
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: var(--shadow-md); }
.stars { color: var(--yellow-2); margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
    width: 44px; height: 44px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.t-author strong { display: block; font-size: 0.95rem; }
.t-author span { color: var(--gray-500); font-size: 0.83rem; }

/* ============ BLOG ============ */
.blog { padding: 100px 0; background: var(--white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}
.blog-img {
    aspect-ratio: 16/10;
    position: relative;
    display: flex; align-items: flex-end;
    padding: 20px;
}
.blog-cat {
    background: var(--white);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.blog-body { padding: 26px; }
.blog-date {
    color: var(--gray-500);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.35; }
.blog-card p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 16px; }
.blog-link {
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 8px;
}
.blog-link:hover { color: var(--yellow-2); gap: 12px; }

/* ============ CTA ============ */
.cta-banner {
    background: var(--yellow);
    color: var(--black);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(0,0,0,0.06), transparent 60%);
}
.cta-inner {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--black); margin-bottom: 10px; }
.cta-inner h2 .highlight { background: rgba(0,0,0,0.12); color: var(--black); }
.cta-inner p { color: rgba(0,0,0,0.7); font-size: 1.05rem; }

/* ============ CONTACT ============ */
.contact { padding: 100px 0 0; background: var(--gray-50); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 70px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 30px; }
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}
.info-item:hover { border-color: var(--yellow); transform: translateX(4px); }
.info-item > i {
    width: 44px; height: 44px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.info-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.55; }
.info-item a { color: var(--gray-600); }
.info-item a:hover { color: var(--yellow-2); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--yellow);
    font-size: 1.4rem;
}
.contact-form label {
    display: block;
    margin-bottom: 18px;
}
.contact-form label > span {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--gray-700);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--black);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255,214,10,0.18);
}
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label { margin-bottom: 18px; }
.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px !important;
    font-size: 0.88rem;
    color: var(--gray-600);
}
.checkbox input { width: auto !important; margin-top: 4px; accent-color: var(--yellow); }

.map-wrap {
    height: 420px;
    overflow: hidden;
    filter: grayscale(0.2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.92rem; margin: 18px 0 22px; line-height: 1.7; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--white);
}
.socials a:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}
.footer-col ul li { padding: 5px 0; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.contact-list li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 0;
    line-height: 1.55;
}
.contact-list i { color: var(--yellow); margin-top: 5px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    font-size: 0.85rem;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom a { margin-left: 20px; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-credit {
    text-align: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}
.footer-credit strong {
    color: var(--yellow);
    font-weight: 600;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    z-index: 99;
    box-shadow: 0 10px 24px rgba(37,211,102,0.4);
    animation: wPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wPulse {
    0%,100% { box-shadow: 0 10px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 10px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero { padding: 50px 0 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { min-height: 400px; max-width: 460px; margin: 0 auto; }
    .about-inner { grid-template-columns: 1fr; gap: 50px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav { display: none; }
    .nav.open {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
    }
    .nav.open ul { flex-direction: column; gap: 4px; }
    .nav.open a { display: block; padding: 12px 16px; }
    .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .top-bar-left { font-size: 0.78rem; gap: 14px; }
    .hero { padding: 40px 0 70px; }
    .hero-stats { gap: 24px; }
    .hero-stats .stat strong { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-bottom a { margin: 0 10px; }
    .services, .about, .process, .team, .testimonials, .blog { padding: 70px 0; }
    .contact-form { padding: 26px; }
    .cta-inner { text-align: center; flex-direction: column; }
    .header-actions .btn { display: none; }
    .floating-badge { padding: 10px 14px; }
    .floating-badge i { width: 36px; height: 36px; font-size: 0.95rem; }
    .badge-1 { left: 0; }
    .badge-2 { left: 10px; }
    .passport-card { padding: 24px 22px; }
}

/* ============ ANIMATIONS ON SCROLL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
