:root {
    /* Primary wellness colors */
    --primary-green: #3A6B5F;
    --secondary-green: #5A9B8F;
    --light-green: #F0F7F5;
    --accent-gold: #D4B483;
    --light-gold: #FAF5ED;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #E8E8E8;
    --medium-gray: #999999;
    --dark-gray: #2C3E3A;
    
    /* Text colors */
    --text-dark: #1A2A27;
    --text-light: #666666;
    
    /* Shadow and effects */
    --shadow: rgba(44, 62, 58, 0.08);
    --shadow-strong: rgba(44, 62, 58, 0.12);
    
    /* Transitions and borders */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ======================================== */
/* RESET AND BASE STYLES */
/* ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
}

/* Headings use our serif font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-gray);
}

/* Main container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================================== */
/* HEADER AND NAVIGATION */
/* ======================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 20px var(--shadow);
    border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo container */
.logo-container {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

/* Underline animation for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

/* Booking button in navigation */
.nav-links .booking-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 25px;
    margin-left: 10px;
    transition: var(--transition) !important;
    font-weight: 600;
}

.nav-links .booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 107, 95, 0.3);
    color: var(--white) !important;
}

.nav-links .booking-btn::after {
    display: none !important;
}

.nav-links .booking-btn:hover::after {
    display: none;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--light-green);
}

/* ======================================== */
/* HERO SECTION WITH BACKGROUND IMAGE */
/* ======================================== */
.hero-section {
    padding: 200px 0 120px;
    background: linear-gradient(rgba(44, 62, 58, 0.8), rgba(44, 62, 58, 0.8)), 
                url('assets/gallery-images/HERO.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 80px;
    position: relative;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* Main call-to-action button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(58, 107, 95, 0.2);
    position: relative;
    overflow: hidden;
}

/* Shine effect on button hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(58, 107, 95, 0.3);
}

.cta-button i {
    font-size: 18px;
}

/* ======================================== */
/* SECTION STYLING */
/* ======================================== */
.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 60px;
    position: relative;
    font-weight: 400;
}

/* Underline under section titles */
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ======================================== */
/* SERVICES GRID */
/* ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Top border animation on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-strong);
    border-color: var(--light-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--primary-green);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: var(--transition);
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-weight: 500;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.service-price {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-duration {
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 500;
}

/* ======================================== */
/* PRICING LIST STYLES */
/* ======================================== */
.pricing-list {
    text-align: left;
    margin-top: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    flex: 1;
    color: var(--text-dark);
    font-size: 14px;
}

.price-item .price {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    margin-left: 16px;
}

/* ======================================== */
/* GALLERY GRID - INSTAGRAM STYLE */
/* ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 58, 0.9) 0%, transparent 60%);
    color: var(--white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.8;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ======================================== */
/* ABOUT PAGE STYLES */
/* ======================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(44, 62, 58, 0.8), rgba(44, 62, 58, 0.8)), 
                url('assets/gallery-images/HERO.jpeg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    transform: rotate(-2deg);
}

.about-image:nth-child(even) {
    transform: rotate(2deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ======================================== */
/* VALUES GRID */
/* ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 24px;
}

/* ======================================== */
/* WHATSAPP BOOKING SECTION */
/* ======================================== */
.whatsapp-booking {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--off-white) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(58, 107, 95, 0.1);
}

.whatsapp-title {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.whatsapp-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ======================================== */
/* CONTACT GRID */
/* ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    padding: 48px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary-green);
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-details p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ======================================== */
/* FORM STYLES */
/* ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.form-label.required::after {
    content: " *";
    color: var(--primary-green);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(58, 107, 95, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58, 107, 95, 0.3);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* ======================================== */
/* SOCIAL LINKS */
/* ======================================== */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ======================================== */
/* FOOTER */
/* ======================================== */
footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1A2A27 100%);
    padding: 80px 0 40px;
    margin-top: 120px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-link:hover,
.footer-link.active {
    color: var(--accent-gold);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-footer .contact-item {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.contact-info-footer .contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-footer i {
    color: var(--accent-gold);
    margin-right: 12px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ======================================== */
/* WHATSAPP FLOAT BUTTON */
/* ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ======================================== */
/* MODAL STYLES */
/* ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 30px;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal slide-in animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--light-gray);
    border: none;
    font-size: 16px;
    color: var(--dark-gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.modal-title {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

/* ======================================== */
/* ANIMATIONS */
/* ======================================== */
/* Instagram-like loading animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Ensure text doesn't overflow in 3-column layout */
.service-title,
.service-description,
.service-price,
.service-duration {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Price badge styling - adds R before price */
.service-price::before {
    content: "R";
    font-size: 14px;
    vertical-align: super;
    margin-right: 2px;
}

/* Instagram-like hover effect for desktop only */
@media (hover: hover) and (min-width: 769px) {
    .service-card:hover .service-description {
        display: block;
    }
}

/* ======================================== */
/* RESPONSIVE DESIGN - TABLET */
/* ======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .nav-links {
        gap: 25px;
    }
}

/* ======================================== */
/* RESPONSIVE DESIGN - MOBILE */
/* ======================================== */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile navigation menu */
    .nav-links {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 20px 60px var(--shadow);
        z-index: 999;
        border-radius: 0 0 var(--radius) var(--radius);
        align-items: flex-start;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Booking button in mobile menu */
    .nav-links .booking-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
        width: fit-content;
    }
    
    /* Section padding adjustment */
    .section-padding {
        padding: 80px 0;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 160px 0 80px;
    }
    
    /* Form layout becomes vertical */
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Page title size */
    .page-title {
        font-size: 42px;
    }
    
    /* WhatsApp booking padding */
    .whatsapp-booking {
        padding: 40px 24px;
    }
    
    /* Modal padding */
    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
        margin: 0 20px;
    }
    
    /* Contact info padding */
    .contact-info {
        padding: 32px 24px;
    }
    
    /* ======================================== */
    /* SERVICES GRID ON MOBILE - 2 COLUMNS */
    /* ======================================== */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 20px 12px;
        border-radius: 8px;
        text-align: center;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 12px var(--shadow);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-title {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-description {
        font-size: 10px;
        margin-bottom: 12px;
        line-height: 1.4;
        display: none; /* Hide description on mobile to save space */
    }
    
    .service-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 4px;
    }
    
    .service-price::before {
        font-size: 10px;
    }
    
    .service-duration {
        font-size: 10px;
        color: var(--medium-gray);
    }
    
    /* Pricing list on mobile */
    .pricing-list {
        margin-top: 10px;
        font-size: 10px;
    }
    
    .price-item {
        padding: 6px 0;
        flex-direction: column;
        text-align: center;
    }
    
    .price-item span:first-child {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .price-item .price {
        font-size: 12px;
        margin-left: 0;
        font-weight: 700;
    }
    
    /* Service card buttons */
    .service-card .submit-btn {
        padding: 8px 12px !important;
        font-size: 10px !important;
        margin-top: 10px !important;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
        color: white;
        border: none;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .service-card .submit-btn:active {
        transform: scale(0.95);
    }
    
    .service-card .submit-btn i {
        font-size: 12px;
        margin-right: 4px;
    }
    
    /* Hero section text */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* Section title size */
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    /* ======================================== */
    /* GALLERY ON MOBILE - INSTAGRAM 3 COLUMNS */
    /* ======================================== */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns like Instagram */
        gap: 4px; /* Tight spacing */
        margin-top: 40px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1; /* Perfect squares */
        height: auto; /* Auto height for square ratio */
        border-radius: 4px; /* Slight rounding */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Crop to fill square */
    }
    
    .gallery-overlay {
        padding: 10px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    }
    
    .gallery-overlay h3 {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .gallery-overlay p {
        font-size: 9px;
        display: none; /* Hidden by default on mobile */
    }
    
    /* Show overlay text on tap */
    .gallery-item:active .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-item:active .gallery-overlay p {
        display: block;
    }
    
    /* About content single column */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: center;
    }
    
    /* Values grid - 2 columns */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* WhatsApp title vertical layout */
    .whatsapp-title {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Footer single column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer links in 3 columns */
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer-link {
        font-size: 12px;
        text-align: center;
        padding: 8px 4px;
    }
    
    /* CTA button size */
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Smaller logo */
    .logo {
        max-width: 100px;
        max-height: 35px;
    }
    
    /* Team section - 3 columns */
    .team-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .team-section .service-card {
        min-height: 180px;
        padding: 15px 8px;
    }
    
    .team-section .service-title {
        font-size: 11px;
    }
    
    .team-section .service-description {
        font-size: 9px;
        display: block;
        margin-bottom: 8px;
    }
    
    /* Fix for February Specials on mobile */
    .valentine-special {
        min-height: auto;
        padding: 20px;
    }
    
    /* Fix form inputs on mobile */
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ======================================== */
/* EXTRA SMALL MOBILE DEVICES */
/* ======================================== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Gallery - still 3 columns on very small */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
    
    .gallery-item {
        border-radius: 2px;
    }
    
    .gallery-overlay h3 {
        font-size: 10px;
    }
    
    /* Footer links - 2 columns */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* WhatsApp float button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    /* Booking button */
    .nav-links .booking-btn {
        padding: 10px 24px !important;
    }
    
    /* Logo size */
    .logo {
        max-width: 90px;
        max-height: 30px;
    }
    
    /* Services grid - 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-card {
        padding: 15px 8px;
        min-height: 200px;
    }
    
    .service-title {
        font-size: 11px;
    }
    
    .service-price {
        font-size: 12px;
    }
    
    .service-duration {
        font-size: 9px;
    }
    
    /* Values grid - single column */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Team section */
    .team-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .team-section .service-card {
        min-height: 160px;
        padding: 12px 6px;
    }
    
    .team-section .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .team-section .service-icon i {
        font-size: 16px;
    }
    
    .team-section .service-title {
        font-size: 10px;
    }
    
    .team-section .service-description {
        font-size: 8px;
    }
    
    /* Modal adjustments for very small screens */
    .modal-content {
        padding: 25px 16px;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* ======================================== */
/* FIXED FORM STYLES - Smaller and Stable */
/* ======================================== */

/* Prevent horizontal scrolling on mobile */
.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 2px;
}

/* Ensure form stays stable and doesn't shift */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(58, 107, 95, 0.1);
}

/* Fix for service options text wrapping */
.form-select option {
    font-size: 13px;
    padding: 4px;
    word-break: break-word;
}

/* Ensure form fields don't overflow on small screens */
.form-input,
.form-select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix for February Specials layout */
.valentine-special {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.valentine-special ul {
    margin-bottom: 15px;
    flex-grow: 1;
}

.valentine-special button {
    margin-top: auto;
}
