/* ==========================================================================
   HAWP / Lajpal Care Modern Design System
   Color Palette: Primary Blue (#064fa8), Accent Teal (#097f93), Light Gray (#f8fafc)
   ========================================================================== */

:root {
    --primary: #064fa8;
    --primary-hover: #04397a;
    --primary-light: #eef5ff;
    --secondary: #097f93;
    --secondary-hover: #076272;
    --accent-teal: #0284c7;
    --whatsapp: #25d366;
    --whatsapp-hover: #1da851;
    
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-secondary: #f4f8fc;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(6, 79, 168, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 25px rgba(6, 79, 168, 0.12), 0 4px 6px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 35px rgba(6, 79, 168, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body.site {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--slate-800);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

/* Section Spacing */
.section-padding {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 45px 0;
    }
}

/* Typography & Section Titles */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--slate-600);
    font-size: 1.05rem;
    margin-top: 10px;
}

.sd-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title, .sd-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-title span, .sd-heading span {
    color: var(--primary);
}

.text-left {
    text-align: left !important;
}

@media (max-width: 768px) {
    .section-title, .sd-heading {
        font-size: 1.75rem;
    }
}

/* Buttons System */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(6, 79, 168, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 79, 168, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(9, 127, 147, 0.25);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(9, 127, 147, 0.35);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary) !important;
}

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

/* Rich-text helpers */
.rte-highlight { background-color: #fef08a; padding: 2px 4px; border-radius: 4px; }
.rte-muted { color: var(--slate-500); }
.rte-accent { color: var(--primary); font-weight: 600; }

/* ==========================================================================
   Top Header Bar & Navigation
   ========================================================================== */

.top-bar {
    background-color: var(--slate-900);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-bar__phone svg, .top-bar__phone .phone-icon {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    fill: currentColor;
}

.top-bar__phone a {
    color: #ffffff;
    font-weight: 700;
}

.top-bar__phone a:hover {
    color: var(--secondary);
}

.top-bar__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--slate-400);
}

.top-bar__socials a {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.top-bar__socials a:hover {
    color: #ffffff;
}

.top-bar__socials svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Main Header Sticky */
.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--gray-200);
}

.main-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
.main-nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav__menu > li {
    position: relative;
}

.main-nav__menu > li > a,
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.main-nav__menu > li:hover > a,
.main-nav__menu > li.active > a,
.nav-dropdown-trigger:hover,
.main-nav__menu > li.is-open > .nav-dropdown-trigger {
    color: var(--primary);
    background-color: var(--primary-light);
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .arrow,
.has-dropdown.is-open .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 1050;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--slate-700);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.dropdown li a:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    border-left-color: var(--primary);
    padding-left: 24px;
}

/* Contact Nav Link Button Accent */
.main-nav__menu > li.contact-nav-link > a,
.main-nav__menu > li.contact-nav-link.active > a {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    border-radius: var(--radius-full) !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 10px rgba(6, 79, 168, 0.3) !important;
}

.main-nav__menu > li.contact-nav-link > a:hover,
.main-nav__menu > li.contact-nav-link.active > a:hover {
    background-color: var(--primary-hover) !important;
    color: #ffffff !important;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--slate-800);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Mobile Responsiveness for Header */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        padding: 24px 20px;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform var(--transition-smooth);
        z-index: 999;
    }
    
    .main-nav.nav-open {
        transform: translateX(0);
    }
    
    .main-nav__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .main-nav__menu > li > a,
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-light);
        margin-left: 12px;
        display: none;
        padding: 4px 0;
    }
    
    .has-dropdown.is-open .dropdown {
        display: block;
    }
}

/* ==========================================================================
   Hero Section & Service Strip
   ========================================================================== */

.care-hero {
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0fa 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.care-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 127, 147, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.care-hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.care-hero__copy .eyebrow {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.care-hero__copy h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.care-hero__copy .hero-lead {
    font-size: 1.15rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.care-hero__media {
    position: relative;
}

.care-hero__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 6px solid #ffffff;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .care-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .care-hero__copy h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

/* Service Strip Icons */
.care-service-strip {
    background: #ffffff;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.care-service-strip__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.care-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.care-icon-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50%;
    margin-bottom: 10px;
}

.care-icon-card strong {
    font-size: 0.85rem;
    color: var(--slate-800);
    font-weight: 700;
}

.care-icon-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.care-icon-card:hover span {
    background-color: #ffffff;
    color: var(--primary);
}

.care-icon-card:hover strong {
    color: #ffffff;
}

@media (max-width: 991px) {
    .care-service-strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .care-service-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Service Cards & Grids
   ========================================================================== */

.quick-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.quick-provider-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.quick-provider-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-service-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.quick-provider-card:hover .quick-service-image {
    transform: scale(1.04);
}

.quick-service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.quick-service-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.quick-service-body p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ==========================================================================
   Statistics Banner
   ========================================================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #03326d 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.stats-section .sd-subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.stats-section .section-title {
    color: #ffffff;
}

.stats-section .section-title span {
    color: var(--secondary);
}

.stats-section p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-top: 10px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==========================================================================
   About Showcase Section
   ========================================================================== */

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 5px solid #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.feature-box {
    display: flex;
    gap: 14px;
    background-color: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.feature-box .icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .about-flex {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-card p {
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-card strong {
    color: var(--slate-900);
    font-size: 1.05rem;
    font-weight: 700;
}

.testimonial-card span {
    color: var(--slate-500);
    font-size: 0.85rem;
}

/* ==========================================================================
   Contact Details & Area Section
   ========================================================================== */

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

.contact-card, .service-area-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-card p, .service-area-card p {
    color: var(--slate-700);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-card strong {
    color: var(--slate-900);
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.sd-faq-section {
    background-color: #ffffff;
}

.sd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin-top: 32px;
}

.sd-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--gray-50);
    transition: border-color var(--transition-fast);
}

.sd-faq-item.active {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.sd-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.sd-faq-icon {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.sd-faq-content {
    display: none;
    padding: 0 24px 20px;
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Site Footer Styling
   ========================================================================== */

.site-footer-wrapper {
    background-color: var(--slate-900);
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-top: 50px;
}

.footer-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #065b69 100%);
    color: #ffffff;
    padding: 24px 0;
}

.footer-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-cta__text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-cta__button {
    background-color: #ffffff;
    color: var(--primary) !important;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform var(--transition-fast);
}

.footer-cta__button:hover {
    transform: scale(1.04);
}

.site-footer {
    padding: 65px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    gap: 48px;
}

.footer-site-logo img {
    max-height: 75px;
    width: auto;
    margin-bottom: 20px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #cbd5e1 !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e2e8f0;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-list a:hover {
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

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

.social-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff !important;
}

.fb-box { background-color: #1877f2; }
.ig-box { background-color: #e4405f; }
.yt-box { background-color: #ff0000; }

.social-box svg { width: 14px; height: 14px; fill: currentColor; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #94a3b8;
}

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

.footer-bottom a {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Scroll to top & Sticky Floating Contact Widget */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 990;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.sticky-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.sticky-chat-launcher {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.sticky-chat-launcher:hover {
    transform: scale(1.08);
}

.sticky-chat-launcher svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.sticky-chat-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-base);
}

.sticky-chat-widget.is-open .sticky-chat-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-chat-action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.sticky-chat-whatsapp { background-color: var(--whatsapp); }
.sticky-chat-call { background-color: var(--primary); }
.sticky-chat-close { background-color: var(--slate-700); }

.sticky-chat-action svg { width: 22px; height: 22px; fill: currentColor; }
