:root {
    --bg-dark: #121212;
    --bg-charcoal: #1a1a1a;
    --bg-cream: #F9F7F2;
    --accent-gold: #B99272;
    --accent-gold-dark: #9c7a5e;
    --text-light: #FFFFFF;
    --text-muted: #AAAAAA;
    --text-dark: #222222;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-accent {
    background-color: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--bg-dark);
    border-color: var(--bg-dark);
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-dark);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--bg-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.modal-content p {
    margin-bottom: 30px;
    color: #666;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#booking-form input, #booking-form select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
}

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

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* Darker overlay for better contrast */
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    margin-left: calc((100vw - var(--container-width)) / 2 + 20px);
}

.hero-content .subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
}

.hero-content h1 {
    font-size: 82px;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    opacity: 0;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0;
    max-width: 600px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
}

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--accent-gold) !important;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-gold);
    color: #fff !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* Animations for active slide */
.swiper-slide-active .animated {
    animation: fadeInUp 1s forwards;
}

.swiper-slide-active .subtitle { animation-delay: 0.3s; }
.swiper-slide-active h1 { animation-delay: 0.5s; }
.swiper-slide-active p { animation-delay: 0.7s; }
.swiper-slide-active .hero-btns { animation-delay: 0.9s; }

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

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--accent-gold);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-dark);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .description {
    font-size: 18px;
    margin-bottom: 30px;
}

.features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 60px;
}

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

.service-card {
    background: #fff;
    padding: 0;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.service-icon {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    background: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -65px auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-card p {
    padding: 0 30px 40px;
    font-size: 15px;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: #fff;
}

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

.category-title {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-item {
    width: 100%;
}

.item-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.item-header .name {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.item-header .dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
}

.item-header .price {
    font-size: 18px;
    color: var(--accent-gold);
    font-weight: 700;
}

.pricing-item .desc {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-image img {
    border-radius: 5px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1512690199101-8d8eb8bb9944?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.testimonial-content .quote-icon {
    font-size: 60px;
    color: var(--accent-gold);
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial-item .quote {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item .client-name {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #ffc107;
}

.rating span {
    margin-left: 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: #fff;
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.about-col .logo {
    margin-bottom: 20px;
}

.about-col p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #fff;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-col ul li i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 12px 15px;
    color: #fff;
}

.newsletter-form button {
    background: var(--accent-gold);
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
}

.footer-bottom {
    padding: 25px 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-image.reveal-init {
    transform: translateX(-30px);
}

.about-text.reveal-init {
    transform: translateX(30px);
}

.about-image.revealed, .about-text.revealed {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper, .services-grid, .pricing-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content {
        margin-left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .about-image img {
        box-shadow: none;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    
    .about-image.reveal-init, .about-text.reveal-init {
        transform: translateY(30px);
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .logo a {
        font-size: 20px;
    }
}

