/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Colors - Premium Soft Blue & White Palette */
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --secondary: #0f172a;
    --accent: #3b82f6;
    --gradient-1: linear-gradient(135deg, #2563eb, #3b82f6);
    --gradient-2: linear-gradient(135deg, #1e3a8a, #2563eb);
    
    /* Neutrals */
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding-y: 5rem;
    --section-padding-x: 5%;

    /* Shadows & Border Radii */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-premium: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography Utilities */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.text-muted { color: var(--text-muted); }
.text-white { color: #ffffff !important; }
.fw-bold { font-weight: 600; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.w-full { width: 100%; }
.bg-light { background-color: var(--bg-light); }
.bg-accent { background-color: var(--primary-light); }
.section-padding { padding: var(--section-padding-y) var(--section-padding-x); }

/* Globals */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
    box-shadow: 0 15px 25px -10px var(--primary);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.shadow-btn {
    box-shadow: var(--shadow-premium);
}

/* Floating Actions */
.floating-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.wa-btn {
    background: #25D366;
}

.call-btn {
    right: 20px;
    bottom: 90px;
    background: var(--primary);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem var(--section-padding-x);
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem var(--section-padding-x);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-weight: 300;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--secondary);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: calc(var(--section-padding-y) + 80px) var(--section-padding-x) var(--section-padding-y);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.7;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.stars {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-location-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-location-note i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Hero Images & Cards */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.hero-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.4);
}

.support-card {
    bottom: -30px;
    left: -30px;
    animation-delay: 0s;
}

.experts-card {
    top: 50px;
    right: -30px;
    animation-delay: -3s;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--gradient-2);
    padding: 2rem var(--section-padding-x);
    color: white;
}

.trust-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1/1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-1);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    text-align: center;
    border: 4px solid var(--bg-main);
}

.about-badge h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.doctor-profiles {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.doc-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.doc-icon {
    font-size: 2rem;
    color: var(--primary);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-1);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.service-link:hover {
    gap: 0.75rem;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

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

.why-img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 4px solid var(--bg-main);
}

.experience-badge i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.test-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.test-stars {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.test-text {
    font-style: italic;
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.bg-blue { background: #0ea5e9; }
.bg-purple { background: #8b5cf6; }

.author-name {
    font-weight: 600;
    font-family: var(--font-heading);
}

.author-source {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-cta {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-info {
    padding: 4rem 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-details p {
    color: var(--text-muted);
}

.contact-map {
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
}

.map-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.map-nav-link i {
    font-size: 1.25rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--secondary);
    color: white;
    padding: 5rem var(--section-padding-x) 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
    color: #94a3b8;
    max-width: 400px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.25rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1200px) {
    .trust-bar-container { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-container, .about-container, .why-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
        overflow: hidden; /* Prevent horizontal scroll from floating cards */
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-bg-accent {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image { margin-bottom: 2rem; overflow: visible; }
    
    .about-badge {
        right: 0;
        bottom: -15px;
        padding: 1rem;
        min-width: 140px;
    }

    .about-badge h2 { font-size: 1.75rem; }
    .about-badge p { font-size: 0.8rem; }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-badge { 
        right: 10px; 
        bottom: 10px; 
        left: auto; 
        top: auto; 
        transform: none; 
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    .experience-badge i { font-size: 1.5rem; }
    
    .support-card { left: 0px; bottom: 0px; padding: 0.75rem 1rem; }
    .experts-card { right: 0px; top: 0px; padding: 0.75rem 1rem; }
    .floating-card { font-size: 0.85rem; }
    .floating-card .icon-box { width: 36px; height: 36px; font-size: 1.1rem; }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 3.5rem;
        --section-padding-x: 6%;
    }

    body {
        overflow-x: hidden; /* Safety measure against horizontal scroll */
    }

    .mobile-toggle { display: block; }
    
    .desktop-cta { display: none; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        gap: 1.5rem;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-title { font-size: 2.5rem; }
    
    .trust-bar-container { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .trust-item { flex-direction: row; gap: 1rem; text-align: left; }
    .trust-item i { font-size: 2rem; }
    
    .section-title { font-size: 2rem; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
    
    /* Smaller Floating Buttons for Mobile */
    .floating-btn { width: 48px; height: 48px; font-size: 1.5rem; }
    .call-btn { bottom: 80px; }
}
