/* ============================================================
   Thapa Immigration Consulting - Main Stylesheet
   Color palette: Navy #1B2A5E, Red #C8102E, Off-white #F8F9FC
   ============================================================ */

/* ──────────────── CSS VARIABLES ──────────────── */
/* Thapa Immigration - Trigger CI/CD v1 */
:root {
    --navy: #1B2A5E;
    --navy-light: #2a3f8f;
    --navy-dark: #111c3f;
    --red: #C8102E;
    --red-light: #e63250;
    --white: #ffffff;
    --off-white: #F8F9FC;
    --light-gray: #eef0f6;
    --border-color: #dde2f0;
    --text-primary: #0f1a3d;
    --text-secondary: #4a5580;
    --text-muted: #6b7399;

    --shadow-sm: 0 2px 8px rgba(27, 42, 94, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 42, 94, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 42, 94, 0.18);
    --shadow-xl: 0 30px 80px rgba(27, 42, 94, 0.22);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--navy-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ──────────────── BUTTONS ──────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

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

/* ──────────────── SECTION COMMON ──────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(27, 42, 94, 0.1));
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(200, 16, 46, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

.navbar.scrolled .nav-link {
    color: var(--navy);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}



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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

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

.btn-nav {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--red-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4) !important;
}

.navbar.scrolled .btn-nav {
    background: var(--red) !important;
    color: var(--white) !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy);
}

/* ──────────────── HERO ──────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 63, 143, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Full width hero background */
.hero-section-bg {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a8a 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

/* Re-scope background to hero section itself */
section.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a8a 100%);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 140px 80px 80px;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

section.hero::before {
    content: '🍁';
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 280px;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-header {
    margin-bottom: 32px;
}

.hero-main-logo-wrap {
    width: 289px;
    height: 289px;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.4);
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    color: #ff9aaa;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b6b, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    animation-delay: -1.5s;
    margin-left: 32px;
}

.card-3 {
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-text strong {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.card-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.card-badge.success {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.card-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* ──────────────── SERVICES ──────────────── */
.services {
    padding: 50px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 42, 94, 0.08), rgba(200, 16, 46, 0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--navy), var(--red));
}

.service-icon {
    font-size: 1.6rem;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ──────────────── WHY US ──────────────── */
.why-us {
    padding: 50px 0;
    background: var(--white);
}

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

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

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--navy), var(--red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-list li strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-dark);
}

.why-list li span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.why-us-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.trust-card {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.trust-card.accent {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-color: transparent;
}

.trust-card.accent h4,
.trust-card.accent p {
    color: rgba(255, 255, 255, 0.9);
}

.trust-card.accent .trust-icon {
    background: rgba(255, 255, 255, 0.1);
}

.trust-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(27, 42, 94, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.trust-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ──────────────── ABOUT ──────────────── */
.about {
    padding: 50px 0;
    background: var(--off-white);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-blob {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 382px;
    width: 340px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 0 auto 16px;
}

.about-name {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    border-radius: 50%;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    }

    25% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }

    50% {
        border-radius: 50% 50% 60% 40% / 60% 40% 60% 40%;
    }

    75% {
        border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    }
}

.about-logo {
    width: 160px;
    margin: 0 auto 16px;
    filter: brightness(0) invert(1);
}

.about-image-placeholder p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-image-placeholder span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-badge-float {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-cta {
    margin-top: 32px;
}

/* ──────────────── CONTACT ──────────────── */
.contact {
    padding: 50px 0;
    background: var(--white);
}

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

.contact-form {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy-dark);
}

.required {
    color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 42, 94, 0.1);
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 32px;
    margin-top: 8px;
}

.form-success {
    display: none;
    margin-top: 16px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #059669;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* Contact info panel */
.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy-dark);
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.info-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(27, 42, 94, 0.08), rgba(200, 16, 46, 0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-card strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy-dark);
}

.info-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ──────────────── FOOTER ──────────────── */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 10px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer-links h4,
.footer-services h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-services li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.footer-disclaimer {
    font-style: italic;
}

/* ──────────────── ANIMATIONS ──────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1024px) {
    section.hero {
        grid-template-columns: 1fr;
        padding: 140px 40px 80px;
        text-align: center;
    }

    .hero-main-logo-wrap {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        align-items: center;
        width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-top: none;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .nav-toggle {
        display: none !important;
    }

    section.hero {
        padding: 85px 24px 10px;
    }

    .hero-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin: 10px 0;
        text-align: center;
    }

    .hero-main-logo-wrap {
        flex: 0 0 171px;
        width: 171px;
        height: 171px;
        margin: 0 !important;
        box-shadow: var(--shadow-md);
    }

    .hero-main-logo-wrap .hero-main-logo {
        width: 125%;
        height: 125%;
    }

    .hero-badge {
        flex: 0 1 180px;
        margin: 0 !important;
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 12px;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
        background: rgba(200, 16, 46, 0.15);
        border: 1px solid rgba(200, 16, 46, 0.3);
    }

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

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

    .contact-form {
        padding: 28px 24px;
    }

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

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

    .glass-card {
        min-width: unset;
        width: 100%;
    }

    .about-badge-float {
        right: 0;
        bottom: 50px;
    }

    .why-us-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}