* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* =================================
   NAVIGATION - MOBILE FIRST APPROACH
   ================================= */

.navbar {
    background: #ff8c42;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.nav-logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: auto;
    max-width: fit-content;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: none; /* Hidden by default (mobile first) */
    list-style: none;
    gap: 6rem;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    margin-left: 6rem;
    margin-right: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
}

/* Desktop Book Button */
.nav-book-btn {
    background: white;
    color: #ff8c42;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none; /* Hidden by default (mobile first) */
    white-space: nowrap;
    margin-left: 4rem;
    margin-right: 2rem;
}

.nav-book-btn:hover {
    background: #f0f0f0;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

/* Mobile Hamburger Menu */
.mobile-hamburger {
    display: none; /* Hidden by default, shown on mobile */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 8px;
    cursor: pointer;
    margin-left: auto;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-hamburger:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.mobile-hamburger:active {
    transform: scale(0.95);
}

.hamburger-bar {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mobile-hamburger.active .hamburger-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active .hamburger-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex !important;
}



.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #ff8c42;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s;
    z-index: 10001;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mobile-nav-close:hover {
    background: #e6722c;
    transform: rotate(90deg);
}

.mobile-nav-overlay .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 4rem 0 2rem 0;
    list-style: none;
    padding: 0;
}

.mobile-nav-overlay .nav-menu a {
    color: #ff8c42;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
    display: block;
}

.mobile-nav-overlay .nav-menu a:hover,
.mobile-nav-overlay .nav-menu a.active {
    color: #d35400;
}

.mobile-nav-overlay .nav-book-btn {
    background: #ff8c42;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.mobile-nav-overlay .nav-book-btn:hover {
    background: #e6722c;
}



/* Logo Styles */
.logo-image {
    height: 170px;
    width: auto;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-iv-bag {
    position: relative;
    width: 40px;
    height: 45px;
}

.logo-bag-top {
    width: 18px;
    height: 6px;
    background: white;
    border-radius: 3px 3px 0 0;
    margin: 0 auto 1px;
}

.logo-bag-body {
    width: 32px;
    height: 22px;
    background: white;
    border-radius: 0 0 16px 16px;
    position: relative;
    margin: 0 auto;
}

.logo-tube {
    width: 1px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
}

.logo-drop {
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.logo-link {\n    text-decoration: none;\n    display: flex;\n    align-items: center;\n    transition: opacity 0.3s;\n}\n\n.logo-link:hover {\n    opacity: 0.9;\n}\n\n.brand-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.8), rgba(255, 107, 53, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-content {
    color: white;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-title .bold {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.hero-btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(2rem, 5vw, 3.5rem);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid white;
    min-height: 48px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.hero-btn-outline {
    background: transparent;
    color: white;
    min-width: 280px;
}

.hero-btn-outline:hover {
    background: white;
    color: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn-filled {
    background: transparent;
    color: white;
    min-width: 280px;
}

.hero-btn-filled:hover {
    background: white;
    color: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}





/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.25), rgba(255, 107, 53, 0.20));
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 3rem;
}

.steps {
    max-width: none;
    margin: 0;
    padding: 0 0.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Choose Drip Section */
.choose-drip {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.20), rgba(255, 107, 53, 0.15));
    text-align: center;
}

.choose-drip h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.choose-drip-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.choose-drip-image {
    width: 100%;
}

.drip-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.choose-drip-text {
    text-align: left;
}

.choose-drip p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Infusion Types Section */
.infusion-types {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.22), rgba(255, 107, 53, 0.18));
}

.infusion-types h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 3rem;
}

.infusion-grid {
    max-width: none;
    margin: 0 0 3rem;
    padding: 0 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.infusion-card {
    background: transparent;
    padding: clamp(1rem, 2vw, 2rem) clamp(0.5rem, 1vw, 1rem);
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infusion-card:hover {
    transform: translateY(-5px);
}

.infusion-image {
    width: clamp(120px, 25vw, 180px);
    height: clamp(140px, 25vw, 200px);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iv-bag-image {
    width: clamp(100px, 20vw, 150px);
    height: auto;
    object-fit: contain;
    max-height: 180px;
}

/* IV Drip Icon */
.iv-drip-icon {
    position: relative;
    width: 60px;
    height: 80px;
}

.drip-bag {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border-radius: 0 0 20px 20px;
    position: relative;
    margin: 0 auto;
}

.drip-bag::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #ff8c42;
    border-radius: 4px 4px 0 0;
}

.drip-line {
    width: 2px;
    height: 30px;
    background: #ff8c42;
    margin: 0 auto;
}

.drip-drops {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
}

.drop {
    width: 4px;
    height: 4px;
    background: #ff8c42;
    border-radius: 50%;
    animation: drip 2s infinite;
}

.drop:nth-child(2) {
    animation-delay: 0.3s;
}

.drop:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes drip {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.infusion-card h3 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    max-width: 200px;
}

.learn-more-btn {
    background: #ff8c42;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more-btn:hover {
    background: #e6722c;
}

.view-all-btn {
    background: #ff8c42;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.view-all-btn:hover {
    background: #e6722c;
}

/* Immune System Section */
.immune-section {
    background:
        linear-gradient(135deg, rgba(255, 140, 66, 0.7), rgba(255, 107, 53, 0.7)),
        url('assets/images/wellness-patient.jpg') center/cover no-repeat;
    padding: 300px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.immune-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

/* Wellness Section */
.wellness-section {
    padding: 10px 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.18), rgba(255, 107, 53, 0.12));
    text-align: center;
}

.wellness-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.wellness-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.wellness-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* About Page Styles */
.about-header {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.8) 0%, rgba(255, 140, 66, 0.6) 100%);
    z-index: 2;
}

.about-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.22), rgba(255, 107, 53, 0.16));
}

.about-content-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h2 {
    color: #ff8c42;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text h3 {
    color: #ff8c42;
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 600;
}

.about-text h4 {
    color: #ff8c42;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li::before {
    content: "✓";
    color: #ff8c42;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.navbar .nav-menu a.active {
    background: transparent;
    color: white;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 20px;
    font-weight: 600;
}

/* Treatments Page Styles */
.treatments-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatments-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatments-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.treatments-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.8) 0%, rgba(255, 140, 66, 0.6) 100%);
    z-index: 2;
}

.treatments-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.treatments-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.treatments-hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.treatments-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.20), rgba(255, 107, 53, 0.15));
}

.treatments-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.treatments-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.treatment-item:nth-child(1) {
    grid-column: 1;
}

.treatment-item:nth-child(2) {
    grid-column: 2;
}

.treatment-item:nth-child(3) {
    grid-column: 3;
}

.treatment-item:nth-child(4) {
    grid-column: 4;
}

.treatment-item:nth-child(5) {
    grid-column: 1;
}

.treatment-item:nth-child(6) {
    grid-column: 2;
}

.treatment-item:nth-child(7) {
    grid-column: 3;
}

.treatment-item {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 450px;
    align-items: center;
}

.treatment-drip-img {
    width: 150px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.treatment-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.treatment-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: auto;
    flex-grow: 1;
}

.treatment-btn-wrapper {
    width: 100%;
    max-width: 250px;
    position: relative;
    margin-top: auto;
}

.treatment-btn {
    background: transparent;
    border: 1px solid #ff8c42;
    color: #ff8c42;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.treatment-btn::after {
    content: '>';
    font-size: 0.8rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.treatment-dropdown {
    display: none;
    padding: 0.8rem;
    text-align: left;
    position: absolute;
    background: white;
    width: 100%;
    border: 1px solid #ff8c42;
    border-top: none;
    border-radius: 0 0 4px 4px;
    top: calc(100% - 1px);
    left: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 100;
}

.treatment-dropdown.show {
    display: block;
}

.treatment-btn-wrapper:has(.treatment-dropdown.show) .treatment-btn {
    border-radius: 4px 4px 0 0;
    border-bottom-color: transparent;
}

.treatment-btn-wrapper:has(.treatment-dropdown.show) .treatment-btn::after {
    transform: rotate(90deg);
}

.treatment-ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.treatment-ingredients li {
    color: #666;
    font-size: 0.85rem;
    padding: 0.1rem 0;
}

.treatment-ingredients li:before {
    content: "• ";
    color: #ff8c42;
    font-weight: bold;
    margin-right: 0.5rem;
}

.treatment-price {
    color: #ff8c42;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.whats-in-drip-btn.active {
    background: #ff8c42;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    padding: 1.5rem 0 1rem 0;
    color: white;
}

.footer-content {
    max-width: none;
    margin: 0;
    padding: 0 0.75rem;
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-image {
    height: clamp(120px, 20vw, 200px);
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-sections {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

.footer-section p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.search-container {
    margin-top: 1rem;
}

.footer-search {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1rem;
    border: 2px solid white;
    border-radius: 25px;
    background: transparent;
    color: white;
    font-size: 0.9rem;
}

.footer-search::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.footer-search:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background: white;
    transform: translateY(-2px);
}

.social-icon:hover svg {
    fill: #ff8c42 !important;
}

.social-icons a {
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex; /* Temporarily visible for testing */
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay - Full Width Sidebar */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
}



/* =================================
   MODERN RESPONSIVE UTILITIES
   ================================= */

/* Container Query Support */
@container (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling and improved interactions */
html {
    scroll-behavior: smooth;
}

/* Improved touch targets */
@media (hover: none) and (pointer: coarse) {
    .hero-btn,
    .nav-book-btn,
    .learn-more-btn,
    .view-all-btn,
    .book-treatment-btn,
    .submit-btn {
        min-height: 48px !important;
        min-width: 48px !important;
        padding: 1rem 2rem !important;
    }
    
    .mobile-hamburger {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Improved accessibility for reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode media query support */
@media (prefers-color-scheme: dark) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(255, 140, 66, 0.9), rgba(255, 107, 53, 0.9));
    }
}

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */

/* Extra Small Devices - Phones (up to 575px) */
@media (max-width: 575px) {
    /* Navigation */
    .navbar {
        padding: 1.5rem 0 !important;
        min-height: 120px !important;
    }

    .nav-container {
        padding: 1rem 1rem;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        min-height: 100px !important;
    }

    .logo-image {
        height: 100px !important;
        width: auto !important;
    }

    .nav-logo {
        order: 1 !important;
        flex-shrink: 0 !important;
    }

    .nav-menu {
        display: none;
    }

    .nav-book-btn {
        display: none;
    }

    .mobile-hamburger {
        display: flex !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 2px solid rgba(255, 255, 255, 1) !important;
        order: 3 !important;
        margin-left: auto !important;
    }
    
    .hamburger-menu {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* How It Works */
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .how-it-works h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    /* Choose Drip Section */
    .choose-drip-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .choose-drip h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .choose-drip-text {
        text-align: center;
    }
    
    /* Infusion Types */
    .infusion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .infusion-types h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .infusion-card {
        padding: 1rem 0.5rem;
    }
    
    .infusion-card h3 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .iv-bag-image {
        width: 100px;
        height: auto;
    }
    
    .infusion-image {
        width: 120px;
        height: 140px;
        margin-bottom: 1rem;
    }
    
    .learn-more-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Treatments Page */
    .treatments-container {
        padding: 0 1rem 5rem 1rem !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
        background: white !important;
    }

    .treatments-container .treatments-grid-layout {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-auto-rows: max-content !important;
        align-items: stretch !important;
        margin-bottom: 1rem !important;
    }

    .treatment-item {
        padding: 1rem 0.5rem;
        height: auto;
        min-height: 350px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        grid-column: auto !important;
    }
    
    .treatment-drip-img {
        width: 100px;
        height: 120px;
        margin: 0 auto 1rem auto;
        display: block;
        object-fit: contain;
    }
    
    .treatment-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        text-align: center;
        color: #333;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }
    
    .treatment-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #666;
        flex-grow: 1;
        font-family: 'Poppins', sans-serif;
    }

    .treatment-btn {
        background: transparent;
        color: #ff8c42;
        border: 1px solid #ff8c42;
        padding: 0.6rem 1rem;
        border-radius: 5px;
        font-size: 0.75rem;
        font-weight: 500;
        cursor: pointer;
        margin-top: auto;
        width: 100%;
        max-width: 180px;
        min-width: 160px;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
    }

    .treatment-btn::after {
        content: '>';
        font-size: 0.75rem;
        margin-left: auto;
        padding-left: 0.5rem;
    }

    .treatment-btn:hover {
        background: #ff8c42;
        color: white;
    }

    .treatment-dropdown {
        margin-top: 0.5rem !important;
        width: 100% !important;
        text-align: center !important;
        display: none !important;
        background: #f9f9f9 !important;
        padding: 0.5rem !important;
        border-radius: 5px !important;
        border: 1px solid #eee !important;
        position: static !important;
        z-index: 999 !important;
    }

    .treatment-dropdown.show {
        display: block !important;
    }

    .treatment-price {
        font-size: 0.7rem;
        color: #ff8c42;
        font-weight: 600;
        margin: 0.3rem 0;
        line-height: 1.2;
    }

    .treatment-ingredients {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
    }

    .treatment-ingredients li {
        font-size: 0.7rem;
        color: #666;
        margin: 0.2rem 0;
    }
    
    .treatments-hero {
        height: 600px !important;
    }

    .treatments-hero-content h1 {
        font-size: 2.2rem;
    }

    .treatments-hero-content h2 {
        font-size: 1.5rem;
    }
    
    /* Immune Section */
    .immune-section {
        padding: 150px 0;
    }
    
    .immune-content h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    /* Wellness Section */
    .wellness-section h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .wellness-content {
        padding: 0 1rem;
    }
    
    .wellness-content p {
        font-size: 1rem;
    }
    
    /* About Page */
    .about-header {
        height: 400px;
    }
    
    .about-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .about-content-container {
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    /* Contact Page */
    .contact-hero {
        padding: 80px 0;
        min-height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo-image {
        height: 120px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Devices - Large Phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-book-btn {
        display: none;
    }
    
    .hamburger-menu {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    /* How It Works */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
    
    /* Choose Drip */
    .choose-drip h2 {
        font-size: 2rem;
    }
    
    /* Infusion Types */
    .infusion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infusion-types h2 {
        font-size: 2rem;
    }
    
    /* Treatments - removed grid override to let mobile styles take precedence */

    .treatments-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .treatments-hero-content h2 {
        font-size: 1.8rem;
    }
    
    /* About */
    .about-title {
        font-size: 3rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 3rem;
    }
}

/* Medium Devices - Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Navigation - Show menu but smaller spacing */
    .nav-menu {
        gap: 1.5rem;
        margin-right: 1rem;
    }
    
    .logo-image {
        height: 80px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        gap: 4rem;
    }
    
    /* How It Works */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* Choose Drip */
    .choose-drip-container {
        gap: 3rem;
        padding: 0 3rem;
    }
    
    /* Infusion Types */
    .infusion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Treatments */
    .treatments-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-sections {
        flex-direction: row;
        justify-content: space-around;
        gap: 1.5rem;
    }
    
    .footer-section {
        min-width: 150px;
    }
}

/* Large Devices - Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-buttons {
        gap: 6rem;
    }

    .logo-image {
        height: 100px;
        max-width: none;
        width: auto;
    }

    .nav-logo {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: auto;
        max-width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar {
        padding: 1.2rem 0;
    }
}

/* Extra Large Devices - Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .hero-buttons {
        gap: 8rem;
    }

    .logo-image {
        height: 140px;
        max-width: none;
        width: auto;
    }

    .nav-logo {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: auto;
        max-width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar {
        padding: 1.5rem 0;
    }
}

/* =================================
   RESPONSIVE BREAKPOINTS - MOBILE FIRST
   ================================= */

/* Mobile Styles - Default (up to 767px) */
@media (max-width: 767px) {
    /* Mobile navigation container */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }

    /* Ensure mobile hamburger is visible and prominent */
    .mobile-hamburger {
        display: flex !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 2px solid rgba(255, 255, 255, 1) !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 3 !important; /* Position after logo */
    }
    
    /* Logo positioning */
    .nav-logo {
        order: 1 !important; /* Position first */
        flex-shrink: 0 !important;
    }

    /* Hide desktop navigation */
    .nav-menu {
        display: none !important;
    }

    .nav-book-btn {
        display: none !important;
    }
    
    /* Optimize logo for mobile */
    .logo-image {
        height: 60px;
    }
    
    /* Ensure proper navbar padding on mobile */
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    /* Mobile Navigation Overlay - Mobile Specific */
    .mobile-nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 9999 !important;
        display: none !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    .mobile-nav-overlay.active {
        display: flex !important;
    }
    
    /* Mobile Sidebar - Mobile Specific */
    .mobile-nav-sidebar {
        position: relative !important;
        width: 85vw !important;
        max-width: 300px !important;
        height: auto !important;
        max-height: 65vh !important;
        min-height: auto !important;
        background: white !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        -webkit-transition: -webkit-transform 0.3s ease !important;
        -webkit-transform: translateX(-100%) !important;
        will-change: transform !important;
        padding: 1.5rem !important;
        border-radius: 0 !important;
        border-right: 4px solid #ff8c42 !important;
        border-bottom: 4px solid #ff8c42 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        overflow-y: hidden !important;
    }
    
    .mobile-nav-overlay.active .mobile-nav-sidebar {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
    }
    
    /* Mobile Menu Items */
    .mobile-nav-overlay .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        margin: 1.5rem 0 1rem 0 !important;
        padding: 0 !important;
        list-style: none !important;
        gap: 0.3rem !important;
    }
    
    .mobile-nav-overlay .nav-menu li {
        margin: 0 !important;
    }
    
    .mobile-nav-overlay .nav-menu a {
        display: block !important;
        padding: 0.8rem 0 !important;
        color: #ff8c42 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
    }
    
    /* Mobile Book Button */
    .mobile-nav-overlay .nav-book-btn {
        background: #ff8c42 !important;
        color: white !important;
        border: none !important;
        padding: 1rem 2rem !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        transition: background 0.3s !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        display: block !important;
        margin: 1rem 0 2rem 0 !important;
    }
    
    .mobile-nav-overlay .nav-book-btn:hover {
        background: #d35400 !important;
    }
    
    /* Close Button - Mobile Specific */
    .mobile-nav-close {
        position: absolute !important;
        top: 0.8rem !important;
        right: 1rem !important;
        width: 35px !important;
        height: 35px !important;
        background: #ff8c42 !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        z-index: 10002 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        cursor: pointer !important;
    }
}

/* Tablet and Desktop - 768px and up */
@media (min-width: 768px) {
    /* Show desktop navigation */
    .nav-menu {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        gap: 6rem;
    }

    .nav-book-btn {
        display: block !important;
    }

    /* Move treatments up on desktop */
    .treatments-hero {
        height: 500px !important;
    }

    .treatments-container {
        padding: 0 2rem 4rem 2rem !important;
        margin-top: -5rem !important;
    }

    .treatments-container .treatments-grid-layout {
        margin-bottom: 2rem !important;
    }

    /* Hide mobile hamburger */
    .mobile-hamburger {
        display: none !important;
    }

    /* Choose Drip Section - Increased spacing */
    .choose-drip-container {
        padding: 0 3rem !important;
    }

    .choose-drip h2 {
        padding: 0 3rem !important;
    }
    
    /* Larger logo on desktop */
    .logo-image {
        height: 120px;
        max-width: none;
        width: auto;
    }

    .nav-logo {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: auto;
        max-width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    /* More padding on larger screens */
    .nav-container {
        padding: 0 2rem;
    }
    
    /* Ensure mobile overlay is hidden */
    .mobile-nav-overlay {
        display: none !important;
    }
    
}

/* Mobile Footer Styles */
@media (max-width: 767px) {
    /* Hide desktop footer elements on mobile */
    .footer-sections,
    .footer-logo {
        display: none !important;
    }
    
    /* Mobile Footer Container */
    .mobile-footer {
        display: block !important;
        background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%) !important;
        color: white !important;
        padding: 0.8rem 0.5rem !important;
        overflow: visible !important;
    }

    .mobile-footer-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 100vw !important;
        margin: 0 !important;
        gap: 0.5rem !important;
        height: 80px !important;
        padding: 0 !important;
        overflow: visible !important;
        width: 100% !important;
    }

    /* Left side - Logo only */
    .mobile-footer-brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 0 0 auto !important;
        margin-left: -1rem !important;
    }

    .mobile-footer-logo {
        width: 200px !important;
        height: 200px !important;
        flex-shrink: 0 !important;
        object-fit: contain !important;
        margin: -60px 0 !important;
    }

    .mobile-footer-text h3 {
        color: white !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        margin: 0 0 0.2rem 0 !important;
        line-height: 1.1 !important;
        font-family: 'Poppins', sans-serif !important;
    }

    .mobile-footer-text p {
        color: white !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
        opacity: 0.9 !important;
        line-height: 1.1 !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 300 !important;
    }
    
    /* Right - Contact */
    .mobile-footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.2rem !important;
        text-align: right !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        padding-right: 1rem !important;
        padding-left: 0.5rem !important;
        max-width: 45% !important;
        overflow: visible !important;
        margin-right: -0.5rem !important;
    }

    .mobile-footer-contact h4 {
        color: white !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin: 0 0 0.3rem 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-family: 'Poppins', sans-serif !important;
    }

    .mobile-footer-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.1rem !important;
        margin-bottom: 0 !important;
    }

    .mobile-footer-info p {
        margin: 0 !important;
        color: white !important;
        opacity: 0.95 !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 400 !important;
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
    
    /* Right side - Social Icons */
    .mobile-footer-social {
        display: flex !important;
        gap: 0.3rem !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        margin-right: 0.5rem !important;
    }

    .mobile-footer-social a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .mobile-footer-social a:hover {
        background: rgba(255, 255, 255, 0.25) !important;
        transform: scale(1.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }

    .mobile-footer-social svg {
        width: 18px !important;
        height: 18px !important;
        fill: white !important;
    }
}

/* Hide mobile footer on desktop */
@media (min-width: 768px) {
    .mobile-footer {
        display: none !important;
    }
}

/* Large Desktop - 1024px and up */
@media (min-width: 1024px) {
    .nav-menu {
        gap: 6rem;
        margin-left: 6rem;
        margin-right: 2rem;
        justify-content: space-between;
    }
}

/* Extra Large Screens - 1920px and up */
@media (min-width: 1920px) {
    .nav-menu {
        gap: 8rem;
        margin-left: 8rem;
        margin-right: 3rem;
        justify-content: space-between;
    }
}

/* Ultra Wide Screens - 2560px and up */
@media (min-width: 2560px) {
    .nav-menu {
        gap: 10rem;
        margin-left: 10rem;
        margin-right: 4rem;
        justify-content: space-between;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-btn,
    .nav-book-btn,
    .learn-more-btn,
    .view-all-btn,
    .book-treatment-btn,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .hamburger-menu {
        display: flex !important;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background-image,
    .about-header-image,
    .treatments-hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

