/* ==========================================================================
   BMWFS Landing Page — Premium Luxury Theme
   Colors: Gold #D4AF37 | Dark #111111 | White #FFFFFF | Light Gray #F5F5F5
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #D4AF37;
    --gold-light: #E8C96A;
    --gold-dark: #B8962E;
    --dark: #111111;
    --dark-soft: #1a1a1a;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-muted: #6c757d;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 80px;
}

/* ---------- Base Reset & Typography ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
}

a {
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ---------- Buttons ---------- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark) !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--dark) !important;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
#mainNavbar {
    padding: 0.75rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.4rem 0;
}

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

#mainNavbar .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition), left var(--transition);
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    width: 60%;
    left: 20%;
}

#mainNavbar .nav-link:hover {
    color: var(--gold-dark) !important;
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem;
}

.nav-link-cta::after {
    display: none !important;
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 30%;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-card {
    padding: 2.5rem;
}

.hero-stat {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-stat:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-image {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(17, 17, 17, 0.85);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
}

.feature-icon-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.feature-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-icon-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.feature-icon-card h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.feature-icon-card-wide {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-card-wide i {
    margin-bottom: 0;
}

/* ==========================================================================
   SCAN & SEARCH SECTION
   ========================================================================== */
.scan-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.verify-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.verify-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.verify-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.qr-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.verify-card-title {
    font-size: 1.5rem;
    margin: 0;
}

.verify-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.security-badge {
    margin-left: auto;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Minimal serial lookup */
.verify-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.verify-serial-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    background: var(--light-gray);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.verify-serial-row:focus-within {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: var(--white);
}

.verify-serial-icon {
    font-size: 1.1rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    opacity: 0.85;
}

.verify-serial-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.65rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    outline: none;
}

.verify-serial-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 400;
}

.verify-serial-submit {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background var(--transition), transform 0.15s ease;
}

.verify-serial-submit:hover {
    background: var(--gold-dark);
    color: var(--dark);
}

.verify-serial-submit:active {
    transform: scale(0.96);
}

.verify-or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.verify-or-divider::before,
.verify-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

/* Camera scan CTA */
.verify-camera-cta {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.4s ease;
}

.verify-camera-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
    background-position: 100% 50%;
}

.verify-camera-cta:active {
    transform: translateY(0);
}

.verify-camera-cta-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 1.35rem;
}

.verify-camera-cta-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.verify-camera-cta-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.verify-camera-cta-sub {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.75;
}

.verify-camera-cta-arrow {
    flex-shrink: 0;
    font-size: 1.25rem;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.verify-camera-cta:hover .verify-camera-cta-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.verify-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.15rem;
    margin-bottom: 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.verify-hint i {
    color: var(--gold-dark);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.scan-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all var(--transition);
    height: 100%;
}

.scan-feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.scan-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold);
}

.scan-feature-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.scan-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   GALLERY / SWIPER
   ========================================================================== */
.gallery-swiper {
    padding-bottom: 60px !important;
}

.gallery-slide-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 2;
}

.gallery-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: var(--gold);
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: 700;
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.35;
    width: 10px;
    height: 10px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
    background: var(--dark);
    color: var(--white);
}

.video-section .section-label {
    color: var(--gold);
}

.video-section .section-title {
    color: var(--white);
}

.video-section .section-text {
    color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background: var(--dark-soft);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity var(--transition);
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.9);
    color: var(--dark);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.video-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.video-features i {
    color: var(--gold);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-gold);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark);
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-card a {
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--gold-dark);
}

.contact-form {
    padding: 2.5rem;
}

.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
    height: 194px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
    :root {
        --navbar-height: 160px;
    }

    .navbar-logo {
        height: 140px;
    }

    #mainNavbar.scrolled .navbar-logo {
        height: 90px;
    }

    .hero-logo {
        height: 200px;
    }

    .footer-logo {
        height: 150px;
    }

    .section-padding {
        padding: 70px 0;
    }

    #mainNavbar .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .nav-link-cta {
        margin-left: 0 !important;
        text-align: center;
        display: inline-block;
    }

    .verify-card-header {
        flex-direction: column;
        text-align: center;
    }

    .security-badge {
        margin-left: 0;
    }

    .verify-camera-cta {
        padding: 0.9rem 1rem;
    }

    .verify-camera-cta-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .verify-camera-cta-title {
        font-size: 0.95rem;
    }

    .about-image {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --navbar-height: 120px;
    }

    .navbar-logo {
        height: 110px;
    }

    #mainNavbar.scrolled .navbar-logo {
        height: 72px;
    }

    .hero-logo {
        height: 170px;
    }

    .footer-logo {
        height: 120px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .verify-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
