:root {
    --primary-color: #9AC7C7; /* Bleu très doux */
    --secondary-color: #D4C08E; /* Beige doux */
    --dark-turquoise: #6A9A9A; /* Bleu foncé très doux */
    --light-turquoise: #D1E8E8; /* Bleu clair très doux */
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--light-turquoise), var(--primary-color));
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--light-color) !important;
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 55px;
    margin-right: 10px;
}

.navbar-brand span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    margin: 0 5px;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Hero Section Styles */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 120px 0;
}

.hero-content {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s;
}

.hero-image-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: fadeInRight 1s ease-out;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-image-slider {
        margin-top: 2rem;
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-image-slider {
        height: 300px;
    }
}

/* Buttons */
.btn-custom {
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    color: #fff;
    background: var(--gradient);
}

.btn-custom::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: all 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    background: linear-gradient(135deg, var(--dark-turquoise), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 191, 191, 0.3);
}

/* Services Cards */
.service-card {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(246, 209, 193, 0.1);
}

.form-control {
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 20, 147, 0.25);
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-title {
    color: #B8A164;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #B8A164;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B8A164;
}

.newsletter-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
}

.newsletter-form .btn-custom {
    background: #B8A164;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.newsletter-form .btn-custom:hover {
    background: #D4C08E;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #B8A164;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D4C08E;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-contact li,
    .footer-links li {
        margin-bottom: 8px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #FAF6F0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(78, 191, 191, 0.3);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(78, 191, 191, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: var(--light-color);
}

/* Promo Section */
.promo-section {
    background: var(--gradient);
    color: #FAF6F0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.promo-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.promo-section .lead {
    font-size: 2rem;
    margin-bottom: 30px;
}

.promo-section img {
    border: 10px solid rgba(250, 246, 240, 0.2);
    transition: all 0.3s ease;
}

.promo-section img:hover {
    transform: scale(1.05);
}

/* Service Details */
.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.service-details .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-turquoise);
}

.service-details .duration {
    font-size: 1.1rem;
    color: #666;
}

.service-details .duration i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Notification Bar */
.notification-bar {
    background: var(--gradient);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1031;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification-bar marquee {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-style: italic;
    text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.5);
}

.notification-bar i {
    margin: 0 5px;
    color: #FAF6F0;
}

/* Services Banner */
.services-banner {
    margin-top: 160px;
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/services-banner.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.services-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.services-banner .lead {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Service Cards */
.service-card.luxury {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
}

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

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #B8A164, #D4C08E);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #B8A164, #D4C08E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #B8A164;
}

.duration {
    color: #666;
    font-size: 1.1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #f8f8f8;
    color: #666;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-luxury:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
}

.btn-luxury i {
    transition: transform 0.4s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .services-banner h1 {
        font-size: 3.5rem;
    }
    
    .service-image {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .services-banner {
        height: 50vh;
    }
    
    .services-banner h1 {
        font-size: 2.8rem;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
}

/* Testimonials */
.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: var(--light-turquoise);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

.rating i {
    color: var(--secondary-color);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient);
    margin: 20px auto;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(184, 161, 100, 0.6);
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
    font-size: 0.8rem;
}

.experience-badge .years {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.6rem;
    font-weight: 400;
    margin-top: 1px;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.3rem;
    font-size: 0.8rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.3rem;
    }
    
    .feature-item {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .feature-item span {
        font-size: 0.7rem;
    }
}

/* Instagram Feed */
.instagram-section {
    background-color: var(--light-color);
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.instagram-item img {
    transition: transform 0.3s ease;
}

.instagram-item-link:hover .instagram-item img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 191, 191, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #FAF6F0;
    text-align: center;
}

.instagram-item-link:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.instagram-text {
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/cta-bg.jpg') center/cover fixed;
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animations */
.wow {
    visibility: hidden;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background: #FAF6F0;
    color: #F6D1C1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 246, 240, 0.2);
}

/* Rounded Custom */
.rounded-custom {
    border-radius: 30px;
}

/* Hero Carousel Styles */
#heroCarousel {
    margin-top: 0px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

#heroCarousel .carousel-item {
    height: 100vh;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#heroCarousel .hero-section {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

#heroCarousel .carousel-item.active .hero-section {
    transform: scale(1);
    filter: brightness(1);
}

#heroCarousel .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
    pointer-events: none;
}

#heroCarousel .carousel-item.active .hero-section::before {
    opacity: 1;
}

#heroCarousel .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
    pointer-events: none;
}

#heroCarousel .carousel-item.active .hero-section::after {
    opacity: 1;
}

#heroCarousel .carousel-item:not(.active) {
    opacity: 0;
    transition: opacity 0.8s ease;
}

#heroCarousel .carousel-item.active {
    opacity: 1;
}

#heroCarousel .carousel-item {
    position: relative;
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

#heroCarousel .carousel-item.active::before {
    opacity: 1;
}

#heroCarousel .hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    margin-bottom: 40px;
    opacity: 0;
    transition: all 1s ease;
    transition-delay: 0.3s;
    pointer-events: auto;
}

#heroCarousel .carousel-item.active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

#heroCarousel .hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    line-height: 1.1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 0.5s;
}

#heroCarousel .carousel-item.active .hero-content h1 {
    transform: translateY(0);
    opacity: 1;
}

#heroCarousel .hero-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 0.7s;
}

#heroCarousel .carousel-item.active .hero-content h2 {
    transform: translateY(0);
    opacity: 1;
}

#heroCarousel .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    color: #fff;
    opacity: 0;
    line-height: 1.6;
    max-width: 800px;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.9s;
}

#heroCarousel .carousel-item.active .hero-content p {
    transform: translateY(0);
    opacity: 0.95;
}

#heroCarousel .hero-buttons {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    width: auto;
    padding: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 1.1s;
    pointer-events: auto;
}

#heroCarousel .carousel-item.active .hero-buttons {
    opacity: 1;
    bottom: -100px;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    #heroCarousel .hero-content {
        padding: 0 100px;
    }
    
    #heroCarousel .hero-content h1 {
        font-size: 4.5rem;
    }
    
    #heroCarousel .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    #heroCarousel {
        height: 90vh;
        margin-top: 0px;
    }
    
    #heroCarousel .carousel-item {
        height: 90vh;
    }
}

@media (max-width: 767.98px) {
    #heroCarousel {
        height: 80vh;
        margin-top: 0px;
    }
    
    #heroCarousel .carousel-item {
        height: 80vh;
    }
}

/* Featured Services */
.featured-services {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #B8A164, #D4C08E);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
    transition: all 0.6s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #B8A164, #D4C08E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.service-link:hover {
    border-bottom-color: #B8A164;
    color: #B8A164;
}

.service-link i {
    margin-left: 12px;
    transition: transform 0.4s ease;
}

.service-link:hover i {
    transform: translateX(8px);
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .services-grid {
        padding: 0 50px;
    }
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-item {
        height: 350px;
    }
    
    .service-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px;
        gap: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
        height: 450px;
        min-width: 0;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .service-overlay {
        display: none;
    }

    .service-content {
        padding: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #fff;
    }

    .service-content p {
        color: #fff;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .service-item {
        flex: 0 0 90%;
        height: 400px;
    }
}

/* About Page Styles */
.about-hero {
    margin-top: 160px;
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.about-hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
}

.location-info, .concept-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.location-info h3, .concept-info h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.location-info i {
    color: var(--primary-color);
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.3rem;
    font-size: 0.8rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--text-color);
}

@media (max-width: 991.98px) {
    .about-hero {
        height: 300px;
    }
    
    .about-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        height: 250px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .location-info, .concept-info {
        padding: 20px;
    }
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 2rem;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
}

.rating {
    color: #ffc107;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2c3e50;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/contact-bg.jpg') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 160px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-header, .contact-form-header {
    margin-bottom: 30px;
}

.contact-info-header h2, .contact-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-info-item .content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-info-item .content p {
    color: #666;
    margin: 0;
}

.contact-info-item .content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .content a:hover {
    color: var(--dark-turquoise);
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(154, 199, 199, 0.25);
}

.contact-form .btn-primary {
    background: var(--gradient);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(154, 199, 199, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(154, 199, 199, 0.3);
}

.map-section {
    margin-top: 80px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.map-container iframe {
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-hero {
        height: 300px;
    }
    
    .contact-info-card, .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        height: 250px;
        margin-top: 120px;
    }
    
    .contact-info-header h2, .contact-form-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .contact-info-item .icon {
        width: 40px;
        height: 40px;
    }
} 