/* IV Drip Lounge - Premium Styles */

:root {
    --luxury-gold: #d4af37;
    --luxury-dark: #1a1a1a;
    --luxury-light: #f8f8f8;
    --luxury-accent: #5EC0BF;
}

/* Hero Section */
.iv-hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.iv-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.iv-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: contrast(1.1) brightness(1.05) saturate(1.15);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.iv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 55, 72, 0.88) 50%, rgba(94, 192, 191, 0.25) 100%);
    pointer-events: none;
}

.iv-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.iv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 9px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fadeInUp 0.8s ease;
}

.iv-hero-badge i {
    color: var(--luxury-gold);
    font-size: 20px;
}

.iv-hero-badge span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.iv-hero-title {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.luxury-text {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 62px;
    margin-top: 8px;
}

.iv-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
}

.iv-hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

/* Introduction Section */
.iv-intro {
    padding: 120px 0;
    background: var(--bg-white);
}

.iv-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.iv-intro-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.iv-intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.iv-intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.iv-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.iv-feature-item:hover {
    border-color: var(--luxury-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.iv-feature-item i {
    font-size: 32px;
    color: var(--luxury-accent);
}

.iv-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.iv-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.iv-intro-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 20px;
    filter: contrast(1.15) brightness(1.05) saturate(1.18);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.iv-intro-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.iv-intro-badge i {
    font-size: 36px;
    color: var(--luxury-gold);
}

.iv-intro-badge strong {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
}

.iv-intro-badge span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* Benefits Section */
.iv-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf7f7 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--luxury-accent);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--luxury-accent) 0%, #4aa8a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(94, 192, 191, 0.25);
}

.benefit-icon i {
    font-size: 36px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Treatments Section */
.iv-treatments {
    padding: 120px 0;
    background: var(--bg-white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.treatment-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--luxury-accent) 0%, var(--luxury-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.treatment-card:hover::before {
    transform: scaleX(1);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--luxury-accent);
}

.treatment-card.featured {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(94, 192, 191, 0.05) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--luxury-gold);
    color: #fff;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.treatment-header h3 {
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 600;
    flex: 1;
}

.treatment-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--luxury-accent);
    white-space: nowrap;
    margin-left: 15px;
}

.treatment-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    min-height: 70px;
}

.treatment-ingredients {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.treatment-ingredients li {
    font-size: 14px;
    color: var(--text-color);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.treatment-ingredients i {
    color: var(--luxury-accent);
    font-size: 14px;
}

.treatment-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.treatment-duration i {
    color: var(--luxury-accent);
}

/* Experience Section */
.iv-experience {
    padding: 120px 0;
    background: var(--bg-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.experience-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.experience-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--luxury-accent) 0%, #4aa8a7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(94, 192, 191, 0.25);
}

.experience-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.experience-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Gallery Section */
.iv-gallery {
    padding: 120px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.15) brightness(1.05) saturate(1.18);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, filter;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.gallery-item:hover img {
    transform: scale(1.1) translateZ(0);
    filter: contrast(1.2) brightness(1.08) saturate(1.25);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

/* Conditions Section */
.iv-conditions {
    padding: 120px 0;
    background: var(--bg-light);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.condition-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.condition-card:hover::before {
    transform: scaleX(1);
}

.condition-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.condition-icon i {
    font-size: 28px;
    color: #ffffff;
}

.condition-icon .condition-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    border-radius: 8px;
    padding: 6px;
}

.condition-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.condition-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.conditions-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 50px;
    padding: 20px 28px;
    background: rgba(94, 192, 191, 0.08);
    border: 1px solid rgba(94, 192, 191, 0.25);
    border-radius: 12px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.conditions-disclaimer i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.conditions-disclaimer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Who Is At Risk Section */
.iv-risk {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.iv-risk::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: rgba(94, 192, 191, 0.08);
    border-radius: 50%;
}

.risk-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.risk-text .section-label {
    color: var(--primary-color);
}

.risk-text h2 {
    color: #fff;
    margin-bottom: 20px;
}

.risk-text p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
}

.risk-list-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px;
}

.risk-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.risk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.risk-list li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Micronutrient Deficiencies Section */
.iv-micronutrient {
    padding: 120px 0;
    background: var(--bg-light);
}

.micronutrient-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.mn-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.mn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.mn-card i {
    font-size: 28px;
    color: var(--primary-color);
}

.mn-card .mn-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    padding: 6px;
}

.mn-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

/* Our Approach Section */
.iv-approach {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px;
}

.pillar {
    padding: 44px 32px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pillar-icon i {
    font-size: 28px;
    color: #fff;
}

.pillar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-color);
}

.pillar p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
}

/* FAQ Section */
.iv-faq {
    padding: 120px 0;
    background: var(--bg-light);
}

/* Section-level toggle header */
.faq-section-toggle {
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
    margin-bottom: 0 !important; /* collapsed: no gap below header */
}

.faq-section-toggle:hover {
    opacity: 0.85;
}

.faq-section-toggle:focus-visible {
    outline: 3px solid var(--luxury-accent);
    outline-offset: 6px;
    border-radius: 8px;
}

.faq-section-chevron {
    font-size: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    color: var(--luxury-accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle-hint {
    font-size: 14px !important;
    color: var(--luxury-accent) !important;
    margin-top: 10px;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

/* Expanded state */
.iv-faq.faq-expanded .faq-section-chevron {
    transform: rotate(180deg);
}

.iv-faq.faq-expanded .faq-toggle-hint {
    opacity: 0;
    pointer-events: none;
}

.iv-faq.faq-expanded .faq-section-toggle {
    margin-bottom: 60px !important;
}

/* Collapsible container — hidden by default */
.faq-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    opacity: 0;
}

.iv-faq.faq-expanded .faq-collapsible {
    max-height: 3000px; /* large enough for all content */
    opacity: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 28px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--luxury-accent);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 35px 28px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.iv-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2D3748 100%);
    position: relative;
    overflow: hidden;
}

.iv-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="50" fill="%235EC0BF" opacity="0.1"/><circle cx="900" cy="400" r="80" fill="%23d4af37" opacity="0.1"/><circle cx="1100" cy="150" r="60" fill="%235EC0BF" opacity="0.08"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.iv-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.iv-cta-content .cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--luxury-accent) 0%, var(--luxury-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.iv-cta-content .cta-icon i {
    font-size: 26px;
    color: #fff;
}

.iv-cta-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}

.iv-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

    .luxury-text {
        font-size: 64px;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Reduce section padding for all IV drip page sections */
    .iv-intro,
    .iv-benefits,
    .iv-treatments,
    .iv-experience,
    .iv-gallery,
    .iv-conditions,
    .iv-risk,
    .iv-micronutrient,
    .iv-approach,
    .iv-faq,
    .iv-cta {
        padding: 80px 0;
    }

    .risk-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .micronutrient-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .iv-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .iv-hero-title {
        font-size: 42px;
    }

    .luxury-text {
        font-size: 48px;
    }

    .iv-hero-subtitle {
        font-size: 17px;
    }

    .iv-intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .iv-intro-features {
        grid-template-columns: 1fr;
    }

    .treatments-grid,
    .benefits-grid,
    .experience-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce image height for intro image on mobile */
    .iv-intro-image img {
        height: 320px;
    }

    .iv-intro-badge {
        padding: 15px 20px;
        gap: 12px;
    }

    .faq-question {
        padding: 22px 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 22px;
    }
}

@media (max-width: 480px) {
    /* Further reduce section padding on small phones */
    .iv-intro,
    .iv-benefits,
    .iv-treatments,
    .iv-experience,
    .iv-gallery,
    .iv-conditions,
    .iv-risk,
    .iv-faq,
    .iv-cta {
        padding: 60px 0;
    }

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

    .iv-hero {
        padding: 120px 0 60px;
    }

    .iv-hero-title {
        font-size: 36px;
    }

    .luxury-text {
        font-size: 40px;
    }

    .iv-hero-subtitle {
        font-size: 16px;
    }

    .iv-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .iv-intro-text h2,
    .iv-cta-content h2 {
        font-size: 32px;
    }

    .iv-intro-image img {
        height: 260px;
    }

    /* Remove the overlapping badge on very small screens */
    .iv-intro-badge {
        position: static;
        margin-top: 20px;
        border-radius: 12px;
        display: inline-flex;
        width: 100%;
    }

    .benefit-card,
    .treatment-card,
    .experience-item {
        padding: 30px 25px;
    }

    .treatment-header {
        flex-direction: column;
        gap: 10px;
    }

    .treatment-price {
        margin-left: 0;
    }
}

/* Ultra-small screens for IV Drip page */
@media (max-width: 360px) {
    .iv-intro,
    .iv-benefits,
    .iv-treatments,
    .iv-experience,
    .iv-gallery,
    .iv-conditions,
    .iv-risk,
    .iv-approach,
    .iv-faq,
    .iv-cta {
        padding: 50px 0;
    }

    .iv-hero-title {
        font-size: 28px;
    }

    .luxury-text {
        font-size: 32px;
    }

    .iv-hero-subtitle {
        font-size: 14px;
    }
}
