/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Colors (Restricted to requested palette) */
    --clr-white: #ffffff;
    --clr-light: #fbf5e1;
    /* The requested background cream */
    --clr-dark: #2d3748;
    /* Text color */
    --clr-gray: #373839;
    --clr-primary: #1f85a8;
    /* The requested button/accent color */
    --clr-primary-dark: #166885;
    /* Slightly darker for hover */
    --clr-accent: #1f85a8;

    /* Typography */
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;

    /* Shadows - softer and more premium */
    --shadow-sm:
        0 4px 6px -1px rgba(31, 133, 168, 0.05),
        0 2px 4px -1px rgba(31, 133, 168, 0.03);
    --shadow-md:
        0 10px 15px -3px rgba(31, 133, 168, 0.08),
        0 4px 6px -2px rgba(31, 133, 168, 0.04);
    --shadow-lg:
        0 20px 25px -5px rgba(31, 133, 168, 0.1),
        0 10px 10px -5px rgba(31, 133, 168, 0.04);
    --shadow-hover:
        0 25px 35px -5px rgba(31, 133, 168, 0.15),
        0 15px 15px -5px rgba(31, 133, 168, 0.1);

    /* Borders & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* 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);

    /* Spacing */
    --section-padding: 50px 0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--clr-dark);
    line-height: 1.7;
    background-color: var(--clr-white);
    /* White base */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--clr-dark);
}

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

a:hover {
    color: var(--clr-primary-dark);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

/* We alternate backgrounds using only #fff and #fbf5e1 */
.bg-light {
    background-color: var(--clr-light);
}

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

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.max-w-700 {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.125rem;
    color: var(--clr-gray);
}

/* Typography Helpers */
.section-tag {
    display: inline-block;
    color: var(--clr-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    background: rgba(31, 133, 168, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section-header {
    /* margin-bottom: 4rem; */
}

.section-desc {
    color: var(--clr-gray);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 133, 168, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(31, 133, 168, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 133, 168, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 0rem 0;
    background-color: #ffffff;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header.scrolled .nav-link,
.header.scrolled .call-btn {
    color: var(--clr-dark);
}

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

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    object-fit: contain;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    color: var(--clr-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition-fast);
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    border: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--clr-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-base);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--clr-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--clr-light);
    color: var(--clr-primary);
    padding-left: 1.8rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-dark);
    font-weight: 600;
    font-size: 1rem;
}

.call-btn i {
    color: var(--clr-primary);
}

.header-book-btn {
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 200px;
    padding-bottom: 60px;
    background-image: url("../../assets/images/hero-bg.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgb(8 71 119) 0%,
        rgb(41 162 199 / 76%) 50%,
        rgba(31, 133, 168, 0) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    text-align: left;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1.05rem;
}

.hero-features i {
    color: #a3d9eb;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--clr-white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--clr-white);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.btn-outline-white:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.btn-white:hover {
    background-color: var(--clr-light);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--clr-white);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
}

.about-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
}

.about-image-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--clr-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--clr-light);
}

.about-image-overlay i {
    font-size: 2.5rem;
    color: var(--clr-primary);
}

.about-image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.about-text {
    color: #000000;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.about-text strong {
    color: #000000;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    background-color: var(--clr-light);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
    border: 1px solid rgba(251, 245, 225, 0.5);
    /* subtle light border */
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--clr-white);
}

.stat-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.stat-title {
    font-size: 1rem;
    color: var(--clr-dark);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.category-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: rgba(31, 133, 168, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--clr-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--clr-light), var(--clr-white));
    z-index: -1;
    transition: height var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(31, 133, 168, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--clr-light);
    color: var(--clr-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.75rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #7ab2c578;
}

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

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--clr-gray);
    line-height: 1.6;
}

.services-intro-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    background-color: var(--clr-white);
}

.why-center-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.why-list-left,
.why-list-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    color: var(--clr-dark);
    font-weight: 500;
}

.why-list-left .why-item {
    flex-direction: row-reverse;
    text-align: right;
}

.why-list-right .why-item {
    flex-direction: row;
    text-align: left;
}

.why-item i {
    color: var(--clr-primary);
    background-color: var(--clr-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .why-center-layout {
        flex-direction: column;
        gap: 0rem;
    }
    .packages {
        padding: 0rem 0 3rem;
    }

    .why-list-left .why-item {
        flex-direction: row;
        text-align: left;
    }
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    width: 350px;
    height: 350px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 25px var(--clr-light),
        0 0 0 50px rgba(251, 245, 225, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.image-box::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.giant-icon {
    font-size: 9rem;
    color: var(--clr-white);
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Health Packages Section
   ========================================================================== */
.packages {
    padding: 3rem 0;
    background-color: var(--clr-white);
}

.packages-gradient-cta {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #115770 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 133, 168, 0.25);
    color: var(--clr-white);
    max-width: 1100px;
    margin: 0 auto;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 20%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 20%
        );
    z-index: 1;
}

.packages-gradient-cta .packages-content {
    position: relative;
    z-index: 2;
}

.packages-gradient-cta .packages-title {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.packages-gradient-cta .packages-subtitle {
    color: #d1eff7;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.packages-gradient-cta .packages-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.packages-gradient-cta .packages-lead {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all var(--transition-base);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--clr-light);
    color: var(--clr-primary);
}

.packages-call-icon {
    color: #115770;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-light);
    color: var(--clr-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Footer Brand */
.footer-brand .footer-logo {
    /* max-height: 100px;
  margin-bottom: 1.5rem; */
}

.footer-brand p {
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--clr-light);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

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

/* Footer Contact Details */
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--clr-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.footer-contact-item p {
    margin: 0;
    color: var(--clr-gray);
}

.footer-contact-item strong {
    display: block;
    color: var(--clr-dark);
    margin-bottom: 0.25rem;
}

/* Footer Map */
.footer-map h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.footer-map-container {
    /* border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 350px;
    border: 2px solid var(--clr-light); */
}

.footer-map-container iframe {
    /* width: 100%;
    height: 100%;
    border: 0;
    filter: none !important;
    -webkit-filter: grayscale(0%) !important;
    filter: grayscale(0%) !important; */
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    /* display: flex; */
    justify-content: space-between;
    text-align: center;
}

.copyright {
    color: var(--clr-gray);
    font-size: 0.95rem;
    margin-bottom: 0px;
}

.footer-cta-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-cta-bottom span {
    font-weight: 600;
    color: var(--clr-dark);
}

.services-sec {
    background: var(--clr-light);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-grid {
        gap: 2rem;
    }

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

    .footer-map {
        grid-column: 1 / -1;
    }

    .why-choose-us .row {
        gap: 3rem;
    }

    .why-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-content-card {
        margin: 0 auto;
        text-align: left;
        padding: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .about-image-wrapper {
        margin-bottom: 3rem;
    }

    .why-choose-us .row {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-features {
        padding-left: 0rem;
        grid-template-columns: repeat(1, 1fr);
    }
    /* Header Mobile adjustments */
    .mobile-toggle {
        display: block;
    }

    .header.scrolled .mobile-toggle {
        color: var(--clr-dark);
    }

    .header:not(.scrolled) .mobile-toggle {
        color: var(--clr-dark);
    }

    .navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        background-color: var(--clr-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        padding: 0 !important;
        transition: right var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .header-actions {
        position: relative;
        z-index: 1001;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        padding: 0rem 1.5rem 2rem !important;
    }

    .nav-link {
        color: var(--clr-dark);
        font-size: 1.125rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
        background-color: #f8f9fa;
        border-radius: var(--radius-sm);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: all 0.3s ease-in-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 250px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
    }

    .dropdown .nav-link i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: var(--clr-dark);
        display: block;
    }

    .header-actions .cta-btn,
    .header-actions .call-btn span {
        display: none;
    }

    .header-actions .call-btn {
        background: var(--clr-primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
        color: var(--clr-white);
    }

    .header-actions .call-btn i {
        color: var(--clr-white);
    }

    /* Typography adjustments */
    .hero {
        padding-top: 110px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .btn-white {
        padding: 1rem 1.5rem;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .about-content {
        gap: 0rem;
    }
    .section-title {
        font-weight: 600;
        font-size: 25px;
    }
    .section {
        padding: 35px 0;
    }
    .category-title {
        font-size: 21px;
        margin-bottom: 15px;
    }
    .service-title {
        font-size: 19px;
        margin-bottom: 5px;
    }
    .services-grid {
        gap: 1.5rem;
    }
    .image-box {
        width: 160px;
        height: 160px;
    }
    .why-center-layout {
        gap: 0rem;
        margin-top: 56px;
    }
    .giant-icon {
        font-size: 5rem;
    }
    .why-list-left,
    .why-list-right {
        gap: 0.5rem;
    }
    .why-image {
        margin-bottom: 40px;
    }
    .footer {
        padding: 20px 0 10px;
    }
}
@media (max-width: 991px) {
    .hero {
        padding-top: 110px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .nav-list {
        gap: 0.4rem;
        flex-wrap: nowrap !important;
    }
    .nav-link {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .header-actions .call-btn {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .header-actions {
        gap: 0.1rem;
    }
    .logo img {
        max-width: 100%;
    }
    .why-center-layout {
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .why-image {
        flex: 0 0 100%;
    }
    .why-list-left,
    .why-list-right {
        flex: 1;
        min-width: 45%;
    }
}

@media (max-width: 767px) {
    .why-list-left,
    .why-list-right {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Sticky Action Buttons
   ========================================================================== */
.sticky-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white) !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-decoration: none;
}

.sticky-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--clr-white);
}

.sticky-btn.whatsapp {
    background-color: #25d366; /* Official WhatsApp Green */
}

.sticky-btn.whatsapp:hover {
    background-color: #128c7e;
}

.sticky-btn.call {
    background-color: var(--clr-primary);
}

.sticky-btn.call:hover {
    background-color: var(--clr-primary-dark);
}
.mobile-contact a {
    color: var(--clr-dark);
}
.mobile-contact a:hover {
    color: var(--clr-primary);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .sticky-actions {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
