/* ============================================
   GREEN DAY SPA - COMPLETE PREMIUM CSS
   ============================================ */

:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --accent: #d4a373;
    --accent-light: #e9c46a;
    --accent-dark: #c68a45;
    --dark: #1a1a2e;
    --text: #4a4a5a;
    --text-light: #7a7a8a;
    --bg-light: #f8f6f2;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --radius: 15px;
    --radius-lg: 25px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-icon {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.preloader-icon .leaf {
    font-size: 2rem;
    animation: leafFloat 1.5s ease-in-out infinite;
}

.leaf-1 { animation-delay: 0s; }
.leaf-2 { animation-delay: 0.3s; font-size: 2.5rem; }
.leaf-3 { animation-delay: 0.6s; }

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 1; }
}

.preloader-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== NAVBAR ===== */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 9990;
}

#mainNavbar.scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon { font-size: 1.8rem; }

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.scrolled .brand-text,
.page-header ~ .footer .brand-text { color: var(--primary-dark); }

.brand-highlight { color: var(--accent); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.scrolled .navbar-nav .nav-link {
    color: var(--text) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Fix: dropdown toggle arrow not showing after content */
.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.btn-booking {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white) !important;
    border: none;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212,163,115,0.3);
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,163,115,0.5);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 5px 10px;
}

.scrolled .navbar-toggler {
    border-color: var(--primary);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--bg-light);
    color: var(--primary);
}

/* ===== HERO CLASSIC ===== */
.hero-classic {
    height: 100vh;
    min-height: 650px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1400') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(27,67,50,0.85), rgba(45,106,79,0.7), rgba(26,26,46,0.8));
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 25px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white) !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212,163,115,0.4);
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,163,115,0.6);
    color: var(--white) !important;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white) !important;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item { text-align: center; color: var(--white); }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.hero-scroll-indicator a {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 25px; height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 3px; height: 8px;
    background: var(--accent);
    border-radius: 3px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* ===== SECTIONS ===== */
.section-padding { padding: 100px 0; }
.bg-light-custom { background: var(--bg-light); }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(45,106,79,0.05));
    border: 1px solid rgba(45,106,79,0.15);
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-badge-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-accent { color: var(--accent); font-style: italic; }

.title-divider {
    width: 80px; height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 3px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== WELCOME ===== */
.welcome-images { position: relative; padding: 20px; }

.welcome-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.welcome-img-secondary {
    position: absolute;
    bottom: -20px; right: -10px;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.welcome-experience-badge {
    position: absolute;
    top: 0; left: -10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: var(--accent);
}

.exp-text { font-size: 0.85rem; opacity: 0.9; line-height: 1.3; }

.welcome-features { margin: 30px 0; }

.welcome-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.welcome-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.feature-icon { font-size: 2rem; flex-shrink: 0; }

.welcome-feature h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.welcome-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(45,106,79,0.3);
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45,106,79,0.5);
    color: var(--white) !important;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img { transform: scale(1.1); }

.service-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(45,106,79,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay { opacity: 1; }

.btn-service-overlay {
    background: var(--white);
    color: var(--primary) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .btn-service-overlay { transform: translateY(0); }

.service-price-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.service-content { padding: 25px; text-align: center; }
.service-icon { font-size: 2.5rem; margin-bottom: 10px; }

.service-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-meta span { color: var(--text-light); font-size: 0.85rem; }
.service-meta i { color: var(--primary); margin-right: 5px; }

.service-book-btn {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-book-btn:hover { color: var(--primary); }

/* ===== CHOOSE CARDS ===== */
.choose-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.choose-icon { font-size: 3rem; margin-bottom: 20px; }

.choose-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.choose-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ===== OFFERS ===== */
.offers-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1400') center/cover no-repeat fixed;
}

.offers-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(27,67,50,0.92), rgba(26,26,46,0.92));
}

.offer-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.offer-featured {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
}

.offer-ribbon {
    position: absolute;
    top: 20px; right: -35px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 5px 45px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.offer-icon { font-size: 3rem; margin-bottom: 15px; }

.offer-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.offer-price { margin-bottom: 25px; }

.price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    margin-right: 10px;
}

.price-new {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.btn-offer {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,163,115,0.5);
    color: var(--white) !important;
}

/* ===== TESTIMONIALS ===== */
.testimonial-swiper { padding-bottom: 60px; }

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 10px;
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-hover); }

.testimonial-rating { margin-bottom: 15px; }
.testimonial-rating i { color: #f1c40f; font-size: 1rem; margin-right: 3px; }

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-author h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-author span { font-size: 0.85rem; color: var(--primary); }

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 12px; height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.15); }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(45,106,79,0.85), rgba(45,106,79,0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ddd;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid-item.hidden { display: none !important; }

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--dark));
    position: relative;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.btn-booking-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(45,106,79,0.3);
}

.btn-booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45,106,79,0.5);
    color: var(--white) !important;
}

.booking-info { margin-top: 30px; }

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--white);
}

.booking-info-item i {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.booking-info-item h6 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--white);
}

.booking-info-item p { margin: 0; opacity: 0.8; font-size: 0.95rem; }

/* ===== PAGE HEADER ===== */
.page-header {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbec6d?w=1400') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(27,67,50,0.9), rgba(26,26,46,0.85));
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    width: 100%;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== SERVICE DETAIL ===== */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-detail-card:hover { box-shadow: var(--shadow-hover); }

.service-detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.meta-item i { color: var(--accent); }

.service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-includes li { padding: 5px 0; color: var(--text); }
.service-includes i { color: var(--primary); margin-right: 10px; }

/* ===== CONTACT INFO ===== */
.contact-info-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card p { color: var(--text-light); margin-bottom: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; }

/* ===== MISSION ===== */
.mission-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon { font-size: 3rem; margin-bottom: 20px; }

.mission-card h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 15px;
}

.mission-card p { color: var(--text-light); margin: 0; }

/* ===== ENVIRONMENT ===== */
.environment-card { text-align: center; transition: var(--transition); }
.environment-card:hover { transform: translateY(-10px); }
.environment-card img { box-shadow: var(--shadow); }
.environment-card:hover img { box-shadow: var(--shadow-hover); }

.environment-card h5 {
    font-family: var(--font-heading);
    color: var(--dark);
}

.environment-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== TEAM ===== */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img { transform: scale(1.1); }

.team-content { padding: 25px; }

.team-content h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-content span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.team-content p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ===== ABOUT STORY ===== */
.story-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.story-year { font-size: 0.8rem; display: block; opacity: 0.9; }

.story-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top { padding: 80px 0 50px; }

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-logo .brand-text { color: var(--white); font-size: 1.4rem; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--accent);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact { list-style: none; padding: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p { margin: 0; font-size: 0.9rem; }

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 35px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 35px rgba(37,211,102,0.6), 0 0 0 15px rgba(37,211,102,0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 35px;
    width: 45px; height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(45,106,79,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== ROUNDED HELPER ===== */
.rounded-custom { border-radius: var(--radius-lg) !important; }
.rounded-4 { border-radius: 15px !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .section-padding { padding: 70px 0; }
    .page-header { height: 300px; }
    .page-header-content h1 { font-size: 2.5rem; }

    #mainNavbar {
        background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(20px);
    }

    .brand-text { color: var(--primary-dark) !important; }
    .navbar-nav .nav-link { color: var(--text) !important; }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover { color: var(--accent) !important; }

    .navbar-toggler {
        border-color: var(--primary) !important;
    }
}

@media (max-width: 767px) {
    .hero-classic { min-height: 600px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .section-padding { padding: 50px 0; }
    .welcome-img-secondary { width: 140px; bottom: -10px; right: 0; }
    .welcome-experience-badge { padding: 12px; }
    .exp-number { font-size: 1.8rem; }
    .booking-form-wrapper { padding: 25px; }
    .hero-scroll-indicator { display: none; }
    .gallery-item { height: 200px; }
    .page-header { height: 250px; }
    .page-header-content h1 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { bottom: 80px; right: 25px; width: 40px; height: 40px; }
}