/* ============================================
   Continental Insurance Company Limited
   Premium Design System & Responsive Stylesheet
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* === CSS Custom Properties === */
:root {
    /* Primary Colors */
    --navy-950: #040913;
    --navy-900: #071120;
    --navy-800: #0a1628;
    --navy-700: #0f2140;
    --navy-600: #162d54;
    --navy-500: #1e3a6a;
    --navy-400: #2a4f8f;
    --navy-300: #3d6db5;

    /* Gold Accent */
    --gold-500: #c8a961;
    --gold-400: #d4b978;
    --gold-300: #e0c990;
    --gold-200: #ecdbaf;
    --gold-600: #b89540;
    --gold-glow: rgba(200, 169, 97, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #eef1f6;
    --gray-200: #dde2ec;
    --gray-300: #b8c1d4;
    --gray-400: #8892a8;
    --gray-500: #5c6478;
    --gray-600: #3d4556;
    --gray-700: #282e3c;
    --gray-800: #1a1f2c;

    /* Semantic */
    --success: #22c55e;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 96px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
    --shadow-gold: 0 4px 25px rgba(200, 169, 97, 0.28);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 85px; /* Ensures fixed header never overlaps scrolled target */
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

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

/* === Utility Classes === */
.container {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-title {
    font-size: clamp(1.85rem, 3.8vw, 2.9rem);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 18px;
    line-height: 1.25;
}

.section-title span {
    color: var(--gold-500);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.75;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-950);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(200, 169, 97, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.16);
    border-color: var(--gold-400);
    color: var(--gold-300);
}

.btn-outline {
    background: transparent;
    color: var(--navy-700);
    border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-600);
    background: rgba(200, 169, 97, 0.06);
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 97, 0.45); }
    50% { box-shadow: 0 0 0 12px rgba(200, 169, 97, 0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HEADER / NAVIGATION (NO OVERLAP) === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 0;
    background: rgba(10, 22, 40, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(6, 14, 26, 0.98);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(200, 169, 97, 0.2);
}

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

/* Logo Design */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.logo-text .company-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(200, 169, 97, 0.16);
}

.nav-menu a.active {
    color: var(--gold-400);
}

.nav-cta {
    margin-left: 12px;
}

.nav-cta .btn {
    padding: 9px 22px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 8px;
    width: 42px;
    height: 42px;
    transition: var(--transition-base);
}

.mobile-toggle:hover {
    background: rgba(200, 169, 97, 0.15);
    border-color: var(--gold-500);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay Backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
    padding-top: 110px; /* Crucial: clears fixed header */
    padding-bottom: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 13, 26, 0.94) 0%,
        rgba(10, 22, 40, 0.82) 45%,
        rgba(22, 45, 84, 0.68) 100%
    );
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; animation-duration: 5s; }
.particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 2s; animation-duration: 8s; }
.particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 0.5s; animation-duration: 6s; }
.particle:nth-child(5) { top: 15%; left: 70%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(6) { top: 50%; left: 50%; animation-delay: 1.5s; animation-duration: 7s; width: 6px; height: 6px; }
.particle:nth-child(7) { top: 75%; left: 20%; animation-delay: 2.5s; animation-duration: 5.5s; }
.particle:nth-child(8) { top: 30%; left: 90%; animation-delay: 0.8s; animation-duration: 6.5s; }

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 740px;
    animation: fadeInUp 0.9s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(200, 169, 97, 0.12);
    border: 1px solid rgba(200, 169, 97, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.18;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
    font-weight: 500;
}

/* === VALUES TICKER === */
.values-ticker {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.values-ticker::before,
.values-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.values-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-800), transparent);
}

.values-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy-700), transparent);
}

.ticker-track {
    display: flex;
    animation: ticker 25s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ticker-item .diamond {
    width: 7px;
    height: 7px;
    background: var(--gold-500);
    transform: rotate(45deg);
    opacity: 0.7;
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.6));
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-950);
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .years-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content .about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-700);
    transition: var(--transition-base);
}

.about-highlight:hover {
    background: rgba(200, 169, 97, 0.08);
    border-color: rgba(200, 169, 97, 0.25);
    transform: translateX(4px);
}

.about-highlight .icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: var(--radius-sm);
    color: var(--navy-950);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* === VISION & MISSION === */
.vision-mission {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vm-header {
    text-align: center;
    margin-bottom: 56px;
}

.vm-header .section-title {
    color: var(--white);
}

.vm-header .section-subtitle {
    margin: 0 auto;
    color: rgba(255,255,255,0.6);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 42px 36px;
    backdrop-filter: blur(16px);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 169, 97, 0.25);
    transform: translateY(-4px);
}

.vm-card .vm-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 169, 97, 0.15), rgba(200, 169, 97, 0.05));
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    font-size: 1.7rem;
}

.vm-card h3 {
    font-size: 1.45rem;
    color: var(--white);
    margin-bottom: 14px;
}

.vm-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    line-height: 1.75;
}

.vm-card ul {
    margin-top: 14px;
}

.vm-card ul li {
    color: rgba(255,255,255,0.7);
    font-size: 0.94rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.vm-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-400);
    font-weight: 600;
}

/* === PRODUCTS SECTION === */
.products-section {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 56px;
}

.products-header .section-subtitle {
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 97, 0.35);
}

.product-card-header {
    padding: 32px 28px 20px;
    position: relative;
}

.product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    margin-bottom: 18px;
    transition: var(--transition-base);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    transform: scale(1.05);
}

.product-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy-800);
}

.product-card-body {
    padding: 0 28px 28px;
    flex-grow: 1;
}

.product-card-body p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 500;
}

.product-feature .check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.product-card-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

.product-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-600);
    transition: var(--transition-base);
}

.product-card-footer a:hover {
    gap: 12px;
    color: var(--navy-800);
}

/* === MOTOR INSURANCE BENEFITS === */
.motor-features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.motor-header {
    text-align: center;
    margin-bottom: 56px;
}

.motor-header .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 97, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 169, 97, 0.12), rgba(200, 169, 97, 0.04));
    border-radius: var(--radius-md);
    margin: 0 auto 14px;
    font-size: 1.45rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    transform: scale(1.08);
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-700);
    line-height: 1.4;
}

/* === DIRECTORS SECTION === */
.directors-section {
    padding: var(--section-padding);
    background: var(--white);
}

.directors-header {
    text-align: center;
    margin-bottom: 56px;
}

.directors-header .section-subtitle {
    margin: 0 auto;
}

.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.director-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.director-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 97, 0.35);
    transform: translateY(-4px);
}

.director-card-top {
    display: flex;
    gap: 22px;
    padding: 28px;
    align-items: flex-start;
}

.director-photo {
    width: 130px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--gray-200);
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.director-card:hover .director-photo img {
    transform: scale(1.05);
}

.director-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.director-info .position {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-info .short-bio {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.director-card-details {
    padding: 0 28px 28px;
    flex-grow: 1;
}

.director-card-details p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.75;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-header .section-title {
    color: var(--white);
}

.contact-header .section-subtitle {
    margin: 0 auto;
    color: rgba(255,255,255,0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.contact-detail:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200, 169, 97, 0.25);
}

.contact-detail .detail-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 169, 97, 0.16), rgba(200, 169, 97, 0.05));
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail p,
.contact-detail a {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    line-height: 1.55;
    word-break: break-word;
}

.contact-detail a:hover {
    color: var(--gold-400);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.contact-form-wrapper h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-base);
    outline: none;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--navy-800);
    color: var(--white);
}

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

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 16px;
}

.form-submit .btn {
    min-width: 170px;
}

.form-submit .form-note {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.4);
}

/* Form success message */
.form-success {
    display: none;
    text-align: center;
    padding: 36px 16px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}

.form-success h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 6px;
}

.form-success p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
}

/* === FOOTER === */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-brand .footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
    border-radius: 8px;
}

.footer-brand .footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: rgba(200, 169, 97, 0.15);
    border-color: var(--gold-500);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: var(--gold-400);
}

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    animation: fadeInUp 0.8s ease 1s both;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.whatsapp-float a:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .wa-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    animation: pulse-glow 2s ease-in-out infinite;
    pointer-events: none;
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-950);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition-base);
    z-index: 997;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    bottom: 82px;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(200, 169, 97, 0.55);
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    animation: float 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
    border-radius: 12px;
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    border-radius: 4px;
    animation: shimmer 1.5s ease-in-out infinite;
    background-size: 200% auto;
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE, TABLET & DESKTOP ALIGNMENT)
   ============================================================ */

/* Medium Desktops & Tablets Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-grid {
        gap: 40px;
    }

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

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

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

/* Tablets & Mobile Navigation Trigger (max-width: 991px) */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        max-width: 82vw;
        height: 100vh;
        height: 100dvh;
        background: var(--navy-900);
        flex-direction: column;
        align-items: stretch;
        padding: 85px 22px 30px;
        gap: 6px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.65);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
        color: rgba(255,255,255,0.85);
        border: 1px solid transparent;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(200, 169, 97, 0.12);
        border-color: rgba(200, 169, 97, 0.25);
        color: var(--gold-400);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 14px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
        --container-padding: 0 18px;
    }

    /* Fixed Header Spacing */
    .header {
        padding: 11px 0;
    }

    .logo img {
        height: 38px;
        width: 38px;
    }

    .logo-text .company-name {
        font-size: 0.98rem;
    }

    .logo-text .company-sub {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 2.15rem;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 0.96rem;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    /* Hero Stats in a Clean 2x2 Grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 32px;
        padding-top: 24px;
        width: 100%;
    }

    .hero-stat {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        padding: 14px 12px;
        border-radius: var(--radius-sm);
        text-align: center;
    }

    .hero-stat .number {
        font-size: 1.8rem;
    }

    .hero-stat .label {
        font-size: 0.74rem;
        margin-top: 4px;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image img {
        height: 250px;
    }

    .about-experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 14px 20px;
        border-radius: var(--radius-md);
    }

    .about-experience-badge .years {
        font-size: 2rem;
    }

    .about-experience-badge .years-label {
        font-size: 0.7rem;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 24px;
    }

    .about-highlight {
        padding: 10px 12px;
        font-size: 0.82rem;
        gap: 8px;
    }

    .about-highlight .icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .about-content .btn {
        width: 100%;
    }

    /* Vision & Mission */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vm-card {
        padding: 28px 20px;
    }

    .vm-card .vm-icon {
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
        margin-bottom: 16px;
    }

    .vm-card h3 {
        font-size: 1.25rem;
    }

    .vm-card p,
    .vm-card ul li {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-header {
        padding: 24px 20px 16px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
        font-size: 1.55rem;
        margin-bottom: 14px;
    }

    .product-number {
        font-size: 2.2rem;
        top: 20px;
        right: 20px;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card-body {
        padding: 0 20px 20px;
    }

    .product-card-footer {
        padding: 15px 20px;
    }

    /* Motor Benefits 2 Columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 18px 12px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .feature-card h4 {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    /* Directors */
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .director-card-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 18px 14px;
        gap: 14px;
    }

    .director-photo {
        width: 120px;
        height: 145px;
        margin: 0 auto;
    }

    .director-info h3 {
        font-size: 1.2rem;
    }

    .director-info .position {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    .director-info .short-bio {
        font-size: 0.88rem;
        text-align: center;
    }

    .director-card-details {
        padding: 0 18px 22px;
    }

    .director-card-details p {
        font-size: 0.88rem;
        line-height: 1.7;
        text-align: left;
    }

    /* Contact Section */
    .contact-info h3 {
        font-size: 1.35rem;
    }

    .contact-details {
        gap: 12px;
        margin-bottom: 22px;
    }

    .contact-detail {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-detail .detail-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }

    .contact-form-wrapper h3 {
        font-size: 1.22rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Avoids auto-zoom on iOS */
    }

    .form-submit {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .form-submit .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.94rem;
    }

    .form-submit .form-note {
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 32px;
    }

    .footer-column h4 {
        margin-bottom: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 14px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Floating WhatsApp on Small Mobile */
    .whatsapp-float {
        bottom: 18px;
        right: 14px;
    }

    .whatsapp-float a {
        padding: 10px 16px;
        font-size: 0.82rem;
        gap: 7px;
    }

    .whatsapp-float .wa-icon {
        width: 20px;
        height: 20px;
    }

    .scroll-top {
        bottom: 18px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .scroll-top.visible {
        bottom: 72px;
    }
}
