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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background: #8b7355;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #8b7355;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: -5px;
}

.nav-brand span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b7355;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8b7355;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-align: left;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.experience-badge,
.trusted-badge,
.promo-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid #8b7355;
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    font-family: 'Playfair Display', serif;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
}

.badge-highlight {
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #8b7355;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(139, 115, 85, 0.8);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
}

.promo-content {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.promo-item {
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
}

.promo-item.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Quick Services */
.quick-services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    color: #8b7355;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #2c2c2c;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-preview h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-preview p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* About Sections */
.about-detailed {
    padding: 100px 0;
    background: white;
}

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

.about-text h3 {
    color: #8b7355;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quality-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: #faf9f7;
}

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

.experience-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h4 {
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: #faf9f7;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.mv-card h3 {
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Values */
.team-values {
    padding: 100px 0;
    background: #faf9f7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-features span {
    background: #f0f0f0;
    color: #8b7355;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Specialty Treatments */
.specialty-treatments {
    padding: 100px 0;
    background: #faf9f7;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.specialty-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b7355;
    font-family: 'Playfair Display', serif;
}

/* Treatment Process */
.treatment-process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Detailed */
.pricing-detailed {
    padding: 100px 0;
    background: white;
}

.pricing-section {
    margin-bottom: 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #8b7355;
    transform: scale(1.05);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-card.premium .price {
    color: white;
}

.package-includes {
    text-align: left;
    margin-bottom: 2rem;
}

.package-includes p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8b7355;
}

.pricing-card.premium .package-includes p {
    color: white;
}

.package-includes ul {
    list-style: none;
    padding: 0;
}

.package-includes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.pricing-card.premium .package-includes li::before {
    color: white;
}

.pricing-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.pricing-category h3 {
    color: #8b7355;
    margin-bottom: 2rem;
    text-align: center;
}

.price-list {
    background: #faf9f7;
    border-radius: 15px;
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.price-item:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

.service-name {
    font-weight: 600;
    color: #2c2c2c;
    display: block;
    margin-bottom: 0.3rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
}

.service-price {
    font-weight: 700;
    color: #8b7355;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

/* Payment Info */
.payment-info {
    padding: 80px 0;
    background: #faf9f7;
}

.payment-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.payment-card h3 {
    color: #8b7355;
    margin-bottom: 2rem;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bank-info h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.bank-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.payment-note {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8b7355;
}

.payment-note p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.payment-note a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

/* Special Offers */
.special-offers {
    padding: 100px 0;
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #8b7355;
    position: relative;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b7355;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.offer-card h4 {
    color: #2c2c2c;
    margin: 1rem 0;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.booking-info h3 {
    color: #8b7355;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-details h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #8b7355;
    text-decoration: none;
}

.contact-details small {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.booking-hours {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 15px;
}

.booking-hours h4 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.hour-item:last-child {
    border-bottom: none;
}

.booking-form-container {
    background: #faf9f7;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: #8b7355;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8b7355;
    border-color: #8b7355;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

/* Quick Booking */
.quick-booking {
    padding: 80px 0;
    background: #faf9f7;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-option {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quick-option:hover {
    transform: translateY(-5px);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-option h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.quick-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Booking Policies */
.booking-policies {
    padding: 80px 0;
    background: white;
}

.policies-content h3 {
    color: #8b7355;
    text-align: center;
    margin-bottom: 3rem;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.policy-item {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.policy-item h4 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.policy-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b7355, #a08965);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #8b7355;
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #8b7355;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #8b7355;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b7355;
}

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

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-sections {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .booking-form-container {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card {
        min-width: auto;
    }
}

/* About Home Section */
.about-home {
    padding: 5rem 0;
    background: #fff;
}

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

.about-home .about-text h3 {
    color: #c9a456;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-home .about-text h2 {
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-home .about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-home .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-home .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.about-home .about-image:hover img {
    transform: scale(1.05);
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 5rem 0;
    background: #faf9f7;
}

.featured-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-card.featured {
    border: 2px solid #c9a456;
}

.package-card.premium {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
}

.package-card.premium h4,
.package-card.premium .price {
    color: #fff;
}

.package-card.premium .package-includes p,
.package-card.premium .package-includes li {
    color: rgba(255,255,255,0.9);
}

.package-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a456;
    margin: 1rem 0;
}

.package-card .package-includes {
    margin: 1.5rem 0;
}

.package-card .package-includes p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-card .package-includes ul {
    list-style: none;
    padding: 0;
}

.package-card .package-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-card .package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a456;
    font-weight: bold;
}

.pricing-quick-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-column {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-column h3 {
    color: #c9a456;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #c9a456;
}

.pricing-column .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-column .price-item:last-child {
    border-bottom: none;
}

.pricing-column .service-name {
    font-size: 0.95rem;
    color: #333;
}

.pricing-column .service-price {
    font-weight: 700;
    color: #c9a456;
    font-size: 1.1rem;
}

.view-all-prices {
    text-align: center;
    margin: 3rem 0;
}

.home-special-offer {
    background: linear-gradient(135deg, #c9a456 0%, #a88342 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,164,86,0.3);
}

.home-special-offer .offer-content h4 {
    font-size: 2rem;
    color: #fff;
    margin: 1rem 0;
}

.home-special-offer .offer-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.home-special-offer .offer-badge {
    display: inline-block;
    background: #fff;
    color: #c9a456;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .about-home .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-home .about-image img {
        height: 400px;
    }

    .featured-packages {
        grid-template-columns: 1fr;
    }

    .pricing-quick-view {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    animation: pulse 2s infinite;
}

/* Intersection Observer Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}