@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #0f172a;
    --text-soft: #475569;
    --accent: #3b82f6;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 40px -10px rgb(0 0 0 / 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

.section-padding {
    padding: 10rem 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

/* Navbar Premium */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
        background: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .navbar .btn-primary {
        display: none;
        /* Hide 'Get a Quote' on mobile navbar to save space */
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 100%;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero Section - The "Old Design" Elite Look */
.hero {
    padding: 12rem 0 8rem;
    background: radial-gradient(circle at 80% 20%, #eff6ff 0%, #ffffff 60%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
}

.hero-text h1 span {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.35rem;
    color: var(--text-soft);
    margin-bottom: 3.5rem;
    max-width: 550px;
}

.badge {
    background: #dbeafe;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px var(--primary);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: white;
    border-color: white;
    transform: translateY(-3px);
}

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

.image-card {
    padding: 1.5rem;
    background: white;
    border-radius: 44px;
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-card img {
    width: 100%;
    border-radius: 34px;
    display: block;
}

.floating-stat {
    position: absolute;
    bottom: -30px;
    left: -40px;
    padding: 1.75rem 2.2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 3;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-sphere {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: var(--primary);
    filter: blur(130px);
    opacity: 0.15;
    z-index: 1;
}

/* Brand Section Styling */
.brand-section {
    background: var(--white);
    text-align: center;
}

.brand-header {
    margin-bottom: 5rem;
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e40af;
    /* Deep professional blue */
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.brand-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    /* Core brand blue */
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e40af;
    /* Deep professional blue */
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem 6rem;
    align-items: center;
    justify-items: center;
    margin-top: 4rem;
}

.brand-grid img {
    width: 100%;
    max-width: 180px;
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
    padding: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.brand-grid img:hover {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    opacity: 1;
}

@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-title {
        font-size: 3rem;
    }

    .brand-tagline {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Categories Section */
.section-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-size: 3rem;
}

.subtitle {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cat-card {
    height: 450px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cat-card:hover img {
    transform: scale(1.15);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.cat-card:hover .cat-overlay {
    transform: translateY(0);
}

.cat-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Featured Products */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.p-card-premium {
    padding: 1.5rem;
    border-radius: 28px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-card-premium > p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.p-card-premium h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.p-price-row, .p-price {
    margin-top: auto;
}

.p-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.p-card-premium:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.p-img-box {
    height: 220px;
    background: white;
    border-radius: 22px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.p-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-card-premium h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
}

.p-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-price {
    font-size: 1.4rem;
    font-weight: 800;
}

.p-link-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.p-card-premium:hover .p-link-icon {
    background: var(--primary);
    color: white;
}

/* Testimonials Elite */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.test-card {
    padding: 3.5rem;
    border-radius: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    opacity: 0.15;
    color: var(--primary);
}

.test-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
    font-style: italic;
    color: var(--text-soft);
    flex-grow: 1;
}

.section-title-wrapper {
    text-align: center;
    display: block;
    margin-bottom: 6rem;
}

.section-title-wrapper h2 {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .section-title-wrapper h2 {
        font-size: 2.2rem;
    }
}

.person-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
}

.person-info h4 {
    font-weight: 800;
}

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

@media (max-width: 768px) {
    .person-info {
        justify-content: center;
    }
}

.cta-banner {
    background: var(--primary);
    padding: 8rem 4rem;
    border-radius: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.footer-meta {
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-soft);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-meta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.cta-banner p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 4rem;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2.2rem;
    }

    .cta-banner p {
        font-size: 1.1rem;
    }
}

/* Why Us / Benefits Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 1024px) {

    .why-us-grid,
    .cat-grid,
    .featured-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .why-us-grid,
    .cat-grid,
    .featured-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }
}

.benefit-card {
    padding: 2.5rem 2rem;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-soft) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* Footer Elite */
.footer {
    padding: 10rem 0 4rem;
    background: #f8fafc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-contact p {
    font-size: 1.05rem;
    color: var(--text-soft);
}

.footer-contact i {
    flex-shrink: 0;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.footer-logo span {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-box {
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
    cursor: pointer;
}

.social-box:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px -5px var(--primary);
    border-color: var(--primary);
}

.social-box i,
.social-box svg {
    width: auto;
    height: auto;
    font-size: 1.25rem;
}

.fa-brands {
    font-weight: 400 !important;
}

/* Search Bar - Modern Pill Design */
.search-trigger {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-soft);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    min-width: 200px;
}

.search-trigger:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-trigger i {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-grid h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.8rem;
    }

    .cat-grid,
    .featured-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-text p {
        margin: 0 auto 3.5rem;
    }

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

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

    .section-padding {
        padding: 6rem 0;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }
}

/* Products Page Specifics */
.products-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.search-box {
    position: relative;
    margin-bottom: 3.5rem;
}

.search-box i,
.search-box svg {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    z-index: 2;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.05);
}

.filter-section h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cat-filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-weight: 700;
    color: var(--text-soft);
    text-align: left;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.cat-filter-btn:hover {
    background: var(--bg-soft);
    color: var(--text-main);
    border-color: var(--text-main);
}

.cat-filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
    color: var(--text-soft);
    font-weight: 600;
}

.results-meta strong {
    color: var(--text-main);
}

.p-card-premium .p-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
    display: block;
    text-transform: lowercase;
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

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

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding-top: 2rem;
    }

    /* Mobile Menu Implementation Support */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-nav-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 2001;
    }

    .nav-actions {
        display: flex !important;
        align-items: center;
    }

    .brand-grid img {
        height: 40px;
    }

    .test-card,
    .p-card-premium {
        padding: 1.5rem;
    }

    .cat-grid,
    .featured-grid,
    .testimonials-grid,
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

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

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .image-card,
    .test-card {
        padding: 1.5rem !important;
        border-radius: 24px !important;
    }

    .floating-stat {
        left: 0 !important;
        bottom: -20px !important;
        padding: 1rem !important;
        width: 100%;
        justify-content: center;
    }

    section {
        overflow: hidden;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.7rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Base styles for the toggle (hidden by default) */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 0.5rem;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.call-float {
    width: 65px;
    height: 65px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.6);
}

.call-float i,
.call-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .call-float {
        width: 55px;
        height: 55px;
    }
}

/* WhatsApp Floating Icon Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Stats Strip */
.stats-strip {
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Service Coverage */
.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-grid span {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.area-grid span:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.coverage-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--border);
}

/* Bottom CTA Banner */
.cta-banner-premium {
    background-color: #1A3C6E;
    color: white;
    padding: 8rem 2rem;
    border-radius: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 2rem;
}

@media (max-width: 768px) {
    .cta-banner-premium {
        padding: 4rem 1.5rem;
        margin: 2rem 1rem;
        border-radius: 30px;
    }

    .cta-banner-premium h2 {
        font-size: 2rem;
    }

    .cta-banner-premium p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-btns {
        flex-direction: column;
        gap: 1rem;
    }

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

.cta-banner-premium h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-banner-premium p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-white {
    background: white;
    color: #1A3C6E;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: #1A3C6E;
    transform: translateY(-3px);
}

.cta-contact-line {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-micro {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Improvements */
.footer {
    padding: 6rem 0 2rem;
    background: #f8fafc;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-block p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-contact-block i,
.footer-contact-block svg {
    color: var(--primary);
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    margin-top: 3px;
}

.cta-contact-line i,
.cta-contact-line svg {
    width: 18px !important;
    height: 18px !important;
    vertical-align: middle;
    margin-right: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-soft);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-banner-premium h2 {
        font-size: 2.2rem;
    }

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

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