/* ==========================================
   Lumina Weddings Theme Design System
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-cream: #f5efe6;
    --dark-brown: #3a2a20;
    --dark-wood: #2a1f18;
    --accent-gold: #d4af7a;
    --accent-gold-hover: #b8906a;
    --sand-beige: #ede5d8;
    --rose-pink: #e8a5a0;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-cormorant: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5efe6;
    overflow-x: hidden;
    color: #3a2a20;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5efe6;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(180, 140, 100, 0.2);
    border-top-color: #b8906a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 40px;
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo {
    color: #3a2a20;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active-link {
    color: #d4af7a !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af7a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: #3a2a20;
}

.nav-cta {
    padding: 10px 24px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #d4af7a;
    border-color: #d4af7a;
}

.navbar.scrolled .nav-cta {
    border-color: #b8906a;
    color: #3a2a20;
}

.navbar.scrolled .nav-cta:hover {
    background: #d4af7a;
    border-color: #d4af7a;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: #3a2a20;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .navbar {
        padding: 15px 24px;
    }
    .navbar.scrolled {
        padding: 12px 24px;
    }
    .nav-links {
        display: none !important;
    }
    .nav-cta {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://image.qwenlm.ai/public_source/d0cd59a9-f837-4ffc-8178-a043018da238/1fe4d26e5-3303-43ac-8658-6c039e8316de.png') center center / cover no-repeat;
    z-index: 1;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(40, 25, 18, 0.3) 0%,
        rgba(40, 25, 18, 0.2) 40%,
        rgba(40, 25, 18, 0.6) 70%,
        rgba(40, 25, 18, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    margin: auto;
    max-width: 800px;
}

.hero-ornament {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-ornament svg {
    width: 120px;
    height: 30px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(50px, 9vw, 90px);
    color: #d4af7a;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.9s both;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 25px;
    animation: fadeIn 1s ease 1s both;
}

.hero-divider-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.hero-divider-heart {
    color: #e8a5a0;
    font-size: 14px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1.3s both;
}

.hero-cta:hover {
    background: #d4af7a;
    color: #3a2a20;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    cursor: pointer;
    animation: scrollFadeInUp 1s ease 1.6s both;
    width: 150px;
}

@keyframes scrollFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(-50%, 25px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
}

.scroll-circle {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
    animation: bounce 2.5s ease infinite;
}

.scroll-circle:hover {
    border-color: #d4af7a;
    background: rgba(212, 175, 122, 0.2);
}

.scroll-circle svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    font-weight: 400;
}

/* Hero Action Cards Style */
.hero-action-card {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease 1.5s both;
}

.action-card-btn {
    background: rgba(58, 42, 32, 0.4);
    border: 1.5px solid rgba(212, 175, 122, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.action-card-btn:hover {
    background: #d4af7a;
    border-color: #d4af7a;
    color: #3a2a20;
    transform: translateY(-2px);
}

.action-card-btn .btn-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .hero-action-card {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
    }
    .action-card-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 10px;
    }
}

/* Section Styles */
.section {
    padding: 100px 24px;
}

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

.section-ornament {
    margin-bottom: 15px;
}

.section-ornament svg {
    width: 120px;
    height: 30px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #3a2a20;
    margin-bottom: 5px;
    font-weight: 400;
}

.section-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 64px);
    color: #d4af7a;
    line-height: 1;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8a7560;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    background: #f5efe6;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(60, 40, 30, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1.5px solid #d4af7a;
    border-radius: 8px;
    z-index: -1;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 450px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .about-stats {
        justify-content: center;
        gap: 30px;
    }
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #3a2a20;
    margin-bottom: 5px;
    font-weight: 400;
}

.about-content .script-name {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #d4af7a;
    margin-bottom: 20px;
}

.about-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 20px;
}

.about-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #b8906a;
    margin-top: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 144, 106, 0.3);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af7a;
    font-weight: 500;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8a7560;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Portfolio Section */
.portfolio-section {
    background: #ede5d8;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #3a2a20;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af7a;
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #e8ddd0;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(60, 40, 30, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(40, 25, 18, 0.85), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

/* Horizontal Scroll Portfolio & Video Section */
.horizontal-section {
    background: #ede5d8;
    padding: 100px 24px;
    overflow: hidden;
}

.horizontal-track-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.horizontal-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #d4af7a rgba(184, 144, 106, 0.1);
    padding-bottom: 25px;
}

.horizontal-track::-webkit-scrollbar {
    height: 4px;
}

.horizontal-track::-webkit-scrollbar-track {
    background: rgba(184, 144, 106, 0.1);
}

.horizontal-track::-webkit-scrollbar-thumb {
    background: #d4af7a;
    border-radius: 2px;
}

.portfolio-card {
    min-width: 380px;
    flex: 0 0 380px;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #e8ddd0;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(60, 40, 30, 0.2);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(40, 25, 18, 0.85), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
}

.card-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 5;
}

.portfolio-card:hover .play-overlay-icon {
    opacity: 1;
    background: #d4af7a;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay-icon svg {
    width: 18px;
    height: 18px;
    fill: #3a2a20;
    stroke: none;
    margin-left: 2px;
}

.horizontal-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.horizontal-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d4af7a;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.horizontal-nav button:hover {
    background: #d4af7a;
}

.horizontal-nav button svg {
    width: 20px;
    height: 20px;
    stroke: #3a2a20;
    fill: none;
    stroke-width: 2;
}

.horizontal-nav button:hover svg {
    stroke: #fff;
}

/* Services Section */
.services-section {
    background: #f5efe6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    border: 2px solid #d4af7a;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #d4af7a;
    color: #fff;
    padding: 5px 40px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 1.5px solid #d4af7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3a2a20;
    margin-bottom: 10px;
    font-weight: 400;
}

.service-price {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #d4af7a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 144, 106, 0.2);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #3a2a20;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.service-btn:hover {
    background: #d4af7a;
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    background: #ede5d8;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card, .testimonial-item {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-quote, .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: #3a2a20;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before, .testimonial-text::before {
    content: '"';
    font-family: 'Great Vibes', cursive;
    font-size: 80px;
    color: #d4af7a;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3a2a20;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #d4af7a;
}

.testimonial-author h4 {
    font-weight: 500;
}

.testimonial-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #8a7560;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot, .testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184, 144, 106, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active, .testimonial-dot.active {
    background: #d4af7a;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #d4af7a;
    stroke: none;
}

/* Contact Section */
.contact-section {
    background: #f5efe6;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(60, 40, 30, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #3a2a20;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(184, 144, 106, 0.3);
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #3a2a20;
    background: #faf8f5;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d4af7a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #d4af7a;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b8906a;
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 60px;
    height: 60px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #3a2a20;
    margin-bottom: 10px;
}

.form-success p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #5a4a3a;
}

/* Video Gallery Grid Section */
.video-gallery-section {
    background: #ede5d8;
    padding: 100px 24px;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.06);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(60, 40, 30, 0.12);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.video-gallery-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-gallery-item .play-overlay-icon {
    width: 44px;
    height: 44px;
}

.video-gallery-item .play-overlay-icon svg {
    width: 14px;
    height: 14px;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    margin-bottom: 5px;
    font-weight: 400;
}

.video-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #8a7560;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Video Parallax Section */
.video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    color: #fff;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid #d4af7a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #d4af7a;
    transform: scale(1.05);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    stroke: none;
    margin-left: 4px;
    transition: fill 0.3s ease;
}

.play-btn:hover svg {
    fill: #3a2a20;
}

.video-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.video-content h2 em {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
    color: #d4af7a;
    font-style: normal;
}

.video-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* CTA Parallax Section */
.cta-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cta-content h2 em {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
    color: #d4af7a;
    font-style: normal;
}

.cta-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #d4af7a;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Instagram Section */
.instagram-section {
    background: #f5efe6;
    padding: 80px 24px;
    text-align: center;
}

.instagram-header {
    margin-bottom: 40px;
}

.instagram-header .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8a7560;
    text-transform: uppercase;
}

.instagram-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #3a2a20;
    margin: 8px 0;
    font-weight: 400;
}

.instagram-handle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #d4af7a;
    text-decoration: none;
    font-style: italic;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.instagram-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

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

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 42, 32, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.insta-icon {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

/* Footer */
.footer {
    background: #2a1f18;
    padding: 60px 24px 30px;
    color: rgba(255,255,255,0.7);
}

.footer-content, .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content, .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    .footer-social, .footer-socials {
        justify-content: center;
    }
}

.footer-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #d4af7a;
    margin-bottom: 15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #d4af7a;
}

.logo-text span {
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.footer-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
    color: rgba(255,255,255,0.7);
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links, .footer-col ul {
    list-style: none;
}

.footer-links li, .footer-col li {
    margin-bottom: 12px;
}

.footer-links a, .footer-col a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-col a:hover {
    color: #d4af7a;
}

.footer-social, .footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon, .footer-socials a {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #fff;
}

.social-icon:hover, .footer-socials a:hover {
    border-color: #d4af7a;
    background: rgba(212, 175, 122, 0.1);
    color: #d4af7a;
}

.social-icon svg, .footer-socials a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(245, 239, 230, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: left 0.4s ease;
}

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

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #3a2a20;
    text-decoration: none;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #d4af7a;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Parallax Components */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    transition: transform 0.1s linear;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 25, 18, 0.45);
    z-index: 2;
}

/* Reveal Classes */
.reveal, .about-reveal, .srv-reveal, .cnt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible, .about-reveal.visible, .srv-reveal.visible, .cnt-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1, .about-reveal-d1, .srv-reveal-d1, .cnt-reveal-d1 { transition-delay: 0.15s; }
.reveal-delay-2, .about-reveal-d2, .srv-reveal-d2, .cnt-reveal-d2 { transition-delay: 0.3s; }
.reveal-delay-3, .about-reveal-d3, .srv-reveal-d3, .cnt-reveal-d3 { transition-delay: 0.45s; }
.reveal-delay-4, .about-reveal-d4, .srv-reveal-d4, .cnt-reveal-d4 { transition-delay: 0.6s; }

/* Custom Modals Interactivity */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 31, 24, 0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: #f5efe6;
    border: 1.5px solid #d4af7a;
    border-radius: 8px;
    width: 90%;
    max-width: 520px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    z-index: 10;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.custom-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(184, 144, 106, 0.3);
    transition: all 0.3s ease;
}

.modal-close:hover {
    border-color: #d4af7a;
    background: rgba(212, 175, 122, 0.1);
}

.modal-close svg {
    width: 14px;
    height: 14px;
    stroke: #3a2a20;
    stroke-width: 2;
    fill: none;
}

.modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #3a2a20;
    margin-bottom: 8px;
    font-weight: 400;
}

.modal-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #8a7560;
}

.modal-body form {
    display: block;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(184, 144, 106, 0.3);
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #3a2a20;
    background: #faf8f5;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.modal-input:focus {
    border-color: #d4af7a;
}

.modal-btn {
    width: 100%;
    padding: 14px;
    background: #d4af7a;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #b8906a;
    transform: translateY(-2px);
}

.modal-tabs {
    display: flex;
    border-bottom: 1.5px solid rgba(184, 144, 106, 0.2);
    margin-bottom: 25px;
    margin-top: -10px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8a7560;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #d4af7a;
    border-bottom-color: #d4af7a;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.qr-scanner-container {
    width: 100%;
    height: 180px;
    background: #faf8f5;
    border-radius: 6px;
    border: 1.5px solid rgba(184, 144, 106, 0.2);
    overflow: hidden;
    position: relative;
}

.qr-scanner-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-laser {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e8a5a0;
    box-shadow: 0 0 10px #e8a5a0;
    animation: qrLaserAnim 2s infinite linear;
}

@keyframes qrLaserAnim {
    0% { top: 10px; }
    50% { top: 170px; }
    100% { top: 10px; }
}

.qr-target-box {
    width: 100px;
    height: 100px;
    border: 2px solid #d4af7a;
    border-radius: 4px;
    position: relative;
    background: rgba(212, 175, 122, 0.05);
}

.scanner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #8a7560;
    letter-spacing: 1px;
    margin-top: 12px;
    text-transform: uppercase;
}

.qr-upload-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #8a7560;
}

.qr-upload-divider::before,
.qr-upload-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(184, 144, 106, 0.2);
    margin: 0 10px;
}

.qr-upload-area {
    border: 1.5px dashed rgba(184, 144, 106, 0.4);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    background: rgba(250, 248, 245, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-upload-area:hover {
    border-color: #d4af7a;
    background: rgba(212, 175, 122, 0.05);
}

.upload-icon {
    width: 24px;
    height: 24px;
    stroke: #d4af7a;
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 8px;
}

.qr-upload-area p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #3a2a20;
}

.qr-upload-area p span {
    color: #d4af7a;
    text-decoration: underline;
}

.upload-filename {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    margin-top: 5px;
    font-weight: 500;
}

.availability-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.availability-loading .spinner {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(180, 140, 100, 0.2);
    border-top-color: #d4af7a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.availability-loading p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #8a7560;
}

.availability-result {
    text-align: center;
    padding: 10px 0;
}

.result-icon-success {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.result-icon-success svg {
    width: 24px;
    height: 24px;
    stroke: #d4af7a;
    stroke-width: 2;
    fill: none;
}

.availability-result h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3a2a20;
    margin-bottom: 8px;
}

.availability-result p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    margin-bottom: 20px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    z-index: 10;
    border: 1.5px solid #d4af7a;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-modal-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 31, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    border: 1.5px solid #d4af7a;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: color 0.3s ease;
}

.lightbox-nav-btn:hover {
    color: #d4af7a;
}

.lightbox-nav-btn svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* About Page Specific Styles */
.about-hero-section, .srv-hero, .cnt-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-bg, .srv-hero-bg, .cnt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../img/hero2.png') center center / cover no-repeat;
    z-index: 1;
    transition: transform 0.1s linear;
}

.about-hero-overlay, .srv-hero-overlay, .cnt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 25, 18, 0.5);
    z-index: 2;
}

.about-hero-content, .srv-hero-content, .cnt-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 24px;
    color: #fff;
}

.about-hero-label, .srv-hero-label, .cnt-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af7a;
}

.about-hero-title, .srv-hero-title, .cnt-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 54px);
    margin: 15px 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.about-hero-title em, .srv-hero-title em, .cnt-hero-title em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.about-hero-desc, .srv-hero-desc, .cnt-hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.about-hero-scroll-line, .cnt-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-hero-scroll-line span, .cnt-hero-scroll span {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.sline, .cnt-sline {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

.about-stats-section {
    background: #ede5d8;
    padding: 60px 24px;
}

.about-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.asi-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #d4af7a;
    font-weight: 500;
    margin-bottom: 5px;
}

.asi-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #3a2a20;
    text-transform: uppercase;
}

.about-story-section {
    background: #f5efe6;
    padding: 100px 24px;
}

.about-story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-story-images {
    position: relative;
}

.about-story-img-main {
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(60,40,30,0.15);
}

.about-story-img-secondary {
    position: absolute;
    width: 45%;
    right: 0;
    bottom: -40px;
    border-radius: 8px;
    border: 6px solid #f5efe6;
    box-shadow: 0 15px 40px rgba(60,40,30,0.2);
}

.about-story-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 80%;
    border: 1.5px solid #d4af7a;
    border-radius: 8px;
    z-index: -1;
}

.about-story-accent-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #d4af7a;
    color: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.3);
}

.acb-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
}

.acb-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-story-text .as-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8a7560;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    color: #3a2a20;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-story-text h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-size: 1.4em;
    font-style: normal;
}

.about-story-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 20px;
}

.as-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(184, 144, 106, 0.2);
    padding-top: 25px;
}

.as-signature img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #d4af7a;
}

.sig-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    font-weight: 500;
}

.sig-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #8a7560;
    text-transform: uppercase;
}

.about-philosophy-section {
    background: #ede5d8;
    padding: 100px 24px;
    text-align: center;
}

.about-philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.ap-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af7a;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-philosophy-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-style: italic;
    line-height: 1.6;
    color: #3a2a20;
    margin-bottom: 20px;
}

.ap-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: #8a7560;
    text-transform: uppercase;
}

.about-values-section, .about-timeline-section, .about-team-section, .about-process-section {
    background: #f5efe6;
    padding: 100px 24px;
}

.about-values-header, .about-timeline-header, .about-team-header, .about-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.avh-label, .ath-label, .aph-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8a7560;
    text-transform: uppercase;
}

.about-values-header h2, .about-timeline-header h2, .about-team-header h2, .about-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #3a2a20;
    margin-top: 8px;
    font-weight: 400;
}

.about-values-header h2 em, .about-timeline-header h2 em, .about-team-header h2 em, .about-process-header h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.avh-divider, .ath-divider, .aph-divider {
    width: 60px;
    height: 1.5px;
    background: #d4af7a;
    margin: 15px auto 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.about-value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.1);
    transition: transform 0.4s ease;
}

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

.about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-value-icon svg {
    width: 22px;
    height: 22px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.about-value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-value-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.6;
}

/* Timeline */
.about-timeline-section {
    background: #ede5d8;
}

.about-timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(184, 144, 106, 0.4);
    transform: translateX(-50%);
}

.about-timeline-item {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding-right: 45px;
    position: relative;
    margin-bottom: 50px;
}

.about-timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 45px;
}

.ati-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.1);
}

.ati-year {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d4af7a;
    font-weight: 600;
    margin-bottom: 8px;
}

.ati-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #3a2a20;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ati-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.6;
}

.about-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4af7a;
    border: 3px solid #ede5d8;
    position: absolute;
    right: -7px;
    top: 35px;
    z-index: 5;
}

.about-timeline-item:nth-child(even) .about-timeline-dot {
    right: auto;
    left: -7px;
}

@media (max-width: 768px) {
    .about-timeline-line {
        left: 20px;
    }
    
    .about-timeline-item {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
        margin-left: 0 !important;
        justify-content: flex-start !important;
    }
    
    .about-timeline-dot {
        left: 13px !important;
        right: auto !important;
    }
}

/* Team Section */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

.about-team-member {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: #ede5d8;
}

.atm-image {
    width: 100%;
    height: 100%;
}

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

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

.atm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 42, 32, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-team-member:hover .atm-overlay {
    opacity: 1;
}

.atm-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 400;
}

.atm-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #d4af7a;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.atm-socials {
    display: flex;
    gap: 12px;
}

.atm-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.atm-socials a:hover {
    border-color: #d4af7a;
    color: #d4af7a;
}

.atm-socials svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

/* Awards Track */
.about-awards-section {
    background: #ede5d8;
    padding: 80px 24px;
}

.about-awards-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-award-item {
    text-align: center;
}

.about-award-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-award-icon svg {
    width: 36px;
    height: 36px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.about-award-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3a2a20;
    font-weight: 500;
    margin-bottom: 5px;
}

.about-award-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #8a7560;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Process */
.about-process-steps, .srv-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-process-steps, .srv-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .about-process-steps, .srv-process-steps {
        grid-template-columns: 1fr;
    }
}

.about-process-step, .srv-process-step {
    text-align: center;
}

.aps-number, .srv-step-number {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    color: rgba(212, 175, 122, 0.4);
    line-height: 1;
    margin-bottom: -15px;
}

.about-process-step h3, .srv-process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-process-step p, .srv-process-step p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.6;
}

/* Secondary CTA Section */
.about-cta-section, .srv-cta-section, .cnt-cta-section {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-cta-bg, .srv-cta-bg, .cnt-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../img/2.jpg') center center / cover no-repeat;
    z-index: 1;
    transition: transform 0.1s linear;
}

.about-cta-overlay, .srv-cta-overlay, .cnt-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 25, 18, 0.55);
    z-index: 2;
}

.about-cta-content, .srv-cta-content, .cnt-cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 24px;
    color: #fff;
}

.about-cta-content h2, .srv-cta-content h2, .cnt-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-cta-content h2 em, .srv-cta-content h2 em, .cnt-cta-content h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.about-cta-content p, .srv-cta-content p, .cnt-cta-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.5vw, 19px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-btn-primary, .srv-btn-primary, .cnt-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #d4af7a;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.about-btn-primary:hover, .srv-btn-primary:hover, .cnt-btn-primary:hover {
    background: #b8906a;
    border-color: #b8906a;
    transform: translateY(-2px);
}

.about-btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn-outline:hover {
    background: #fff;
    color: #3a2a20;
    transform: translateY(-2px);
}

/* Services Page Specific Styles */
.srv-services-section, .srv-packages-section, .srv-addons-section, .srv-process-section, .srv-faq-section {
    background: #f5efe6;
    padding: 100px 24px;
}

.srv-services-header, .srv-packages-header, .srv-addons-header, .srv-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ssh-label, .sph-label, .sah-label, .spr-label, .sfh-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8a7560;
    text-transform: uppercase;
}

.srv-services-header h2, .srv-packages-header h2, .srv-addons-header h2, .srv-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #3a2a20;
    margin-top: 8px;
    font-weight: 400;
}

.srv-services-header h2 em, .srv-packages-header h2 em, .srv-addons-header h2 em, .srv-faq-header h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.ssh-divider, .sph-divider, .sah-divider, .spr-divider, .sfh-divider {
    width: 60px;
    height: 1.5px;
    background: #d4af7a;
    margin: 15px auto 0;
}

.srv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .srv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .srv-services-grid {
        grid-template-columns: 1fr;
    }
}

.srv-service-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.1);
    transition: transform 0.4s ease;
}

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

.srv-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.srv-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.srv-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
}

.srv-service-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.6;
}

/* Service Pricing Packages */
.srv-packages-section {
    background: #ede5d8;
}

.srv-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 900px) {
    .srv-packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.srv-package-card {
    background: #fff;
    border-radius: 8px;
    padding: 50px 35px;
    box-shadow: 0 10px 35px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.srv-package-card.featured {
    border: 2px solid #d4af7a;
    padding: 60px 35px;
}

.srv-package-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: #d4af7a;
    color: #fff;
    padding: 6px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.srv-package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #3a2a20;
    font-weight: 400;
    margin-bottom: 15px;
}

.srv-package-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #d4af7a;
    margin-bottom: 30px;
}

.srv-package-price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #8a7560;
    font-weight: 300;
}

.srv-package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    padding: 0 10px;
}

.srv-package-features li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #5a4a3a;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 144, 106, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.srv-package-features li:last-child {
    border-bottom: none;
}

.srv-package-features li svg {
    width: 16px;
    height: 16px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.srv-package-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1.5px solid #d4af7a;
    border-radius: 30px;
    color: #3a2a20;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.srv-package-btn:hover,
.srv-package-card.featured .srv-package-btn {
    background: #d4af7a;
    color: #fff;
}

.srv-package-card.featured .srv-package-btn:hover {
    background: #b8906a;
    border-color: #b8906a;
}

/* Add-ons Grid */
.srv-addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .srv-addons-grid {
        grid-template-columns: 1fr;
    }
}

.srv-addon-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.04);
    border: 1px solid rgba(184, 144, 106, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.srv-addon-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv-addon-icon svg {
    width: 20px;
    height: 20px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.srv-addon-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    margin-bottom: 8px;
    font-weight: 500;
}

.srv-addon-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #5a4a3a;
    line-height: 1.5;
    margin-bottom: 10px;
}

.srv-addon-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #d4af7a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FAQs Accordion */
.srv-faq-container, .cnt-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.srv-faq-item, .cnt-faq-item {
    border-bottom: 1.5px solid rgba(184, 144, 106, 0.2);
    padding: 20px 0;
}

.srv-faq-item:last-child, .cnt-faq-item:last-child {
    border-bottom: none;
}

.srv-faq-question, .cnt-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: #3a2a20;
    cursor: pointer;
    padding: 10px 0;
    outline: none;
}

.srv-faq-question svg, .cnt-faq-question svg {
    width: 16px;
    height: 16px;
    stroke: #d4af7a;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.srv-faq-question.active svg, .cnt-faq-question.active svg {
    transform: rotate(45deg);
}

.srv-faq-answer, .cnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
    padding: 0;
}

.srv-faq-answer.open, .cnt-faq-answer.open {
    max-height: 500px;
    padding-top: 15px;
    transition: max-height 0.8s cubic-bezier(0.85, 0.15, 0.3, 0.85), padding 0.4s ease;
}

.srv-faq-answer p, .cnt-faq-answer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a3a;
}

/* Contact Page Specific Styles */
.cnt-info-section {
    background: #ede5d8;
    padding: 80px 24px;
}

.cnt-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .cnt-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cnt-info-container {
        grid-template-columns: 1fr;
    }
}

.cnt-info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.04);
    border: 1px solid rgba(184, 144, 106, 0.1);
    transition: transform 0.3s ease;
}

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

.cnt-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cnt-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.cnt-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
}

.cnt-info-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #5a4a3a;
    line-height: 1.6;
}

.cnt-info-card p a {
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cnt-info-card p a:hover {
    color: #d4af7a;
}

.cnt-main-section {
    background: #f5efe6;
    padding: 100px 24px;
}

.cnt-main-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .cnt-main-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.cnt-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    color: #3a2a20;
    font-weight: 400;
    margin-bottom: 15px;
}

.cnt-left h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.cnt-left p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 35px;
}

.cnt-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.cnt-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cnt-contact-item .cci-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d4af7a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af7a;
    flex-shrink: 0;
}

.cci-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.cci-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3a2a20;
    font-weight: 500;
    margin-bottom: 4px;
}

.cci-info span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #8a7560;
    line-height: 1.5;
}

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

.cnt-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(58, 42, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a2a20;
    transition: all 0.3s ease;
}

.cnt-social-links a:hover {
    border-color: #d4af7a;
    color: #d4af7a;
    background: rgba(212, 175, 122, 0.05);
}

.cnt-social-links svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.cnt-form-wrapper {
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(60, 40, 30, 0.06);
    border: 1px solid rgba(184, 144, 106, 0.1);
}

@media (max-width: 600px) {
    .cnt-form-wrapper {
        padding: 30px 20px;
    }
}

.cnt-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3a2a20;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.cnt-form-title em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.3em;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .cnt-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.cnt-form-group {
    margin-bottom: 20px;
}

.cnt-form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #3a2a20;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cnt-form-group input,
.cnt-form-group textarea,
.cnt-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(184, 144, 106, 0.25);
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #3a2a20;
    background: #faf8f5;
    outline: none;
    transition: border-color 0.3s ease;
}

.cnt-form-group input:focus,
.cnt-form-group textarea:focus,
.cnt-form-group select:focus {
    border-color: #d4af7a;
}

.cnt-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cnt-submit-btn {
    width: 100%;
    padding: 15px;
    background: #d4af7a;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cnt-submit-btn:hover {
    background: #b8906a;
    transform: translateY(-2px);
}

.cnt-form-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #8a7560;
    text-align: center;
    margin-top: 15px;
}

/* Map Section */
.cnt-map-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.cnt-map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.cnt-map-overlay-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #fff;
    border: 1.5px solid #d4af7a;
    border-radius: 8px;
    padding: 40px;
    max-width: 380px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 5;
}

@media (max-width: 768px) {
    .cnt-map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin: -80px 24px 40px;
    }
    
    .cnt-map-section {
        height: 350px;
    }
}

.cnt-map-overlay-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
}

.cnt-map-overlay-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 25px;
}

.cnt-map-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d4af7a;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt-map-btn:hover {
    background: #b8906a;
}

/* Success popup modal in contact.php */
.cnt-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    background: rgba(42, 31, 24, 0.6);
    backdrop-filter: blur(8px);
}

.cnt-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.cnt-success-card {
    background: #f5efe6;
    border: 1.5px solid #d4af7a;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.cnt-success-modal.active .cnt-success-card {
    transform: translateY(0);
}

.cnt-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cnt-success-icon svg {
    width: 28px;
    height: 28px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 2;
}

.cnt-success-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3a2a20;
    margin-bottom: 12px;
    font-weight: 500;
}

.cnt-success-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a3a;
    margin-bottom: 25px;
}

.cnt-success-close {
    padding: 12px 30px;
    background: #d4af7a;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cnt-success-close:hover {
    background: #b8906a;
}

/* Legal Pages */
.pp-hero, .tc-hero {
    background: #2a1f18;
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
}

.pp-hero-content, .tc-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.pp-hero-icon, .tc-hero-icon {
    width: 60px;
    height: 60px;
    border: 1.5px solid #d4af7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pp-hero-icon svg, .tc-hero-icon svg {
    width: 24px;
    height: 24px;
    stroke: #d4af7a;
    fill: none;
    stroke-width: 1.5;
}

.pp-hero-label, .tc-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #d4af7a;
    text-transform: uppercase;
}

.pp-hero-title, .tc-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin: 10px 0;
    font-weight: 400;
}

.pp-hero-title em, .tc-hero-title em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.pp-hero-updated, .tc-hero-updated {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.pp-main, .tc-main {
    background: #f5efe6;
    padding: 80px 24px;
}

.pp-main-container, .tc-main-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1024px) {
    .pp-main-container, .tc-main-container {
        grid-template-columns: 1fr;
    }
}

.pp-sidebar, .tc-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.pp-toc-toggle, .tc-toc-toggle {
    display: none;
    width: 100%;
    padding: 12px;
    background: #3a2a20;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .pp-toc-toggle, .tc-toc-toggle {
        display: block;
    }
    
    .pp-toc, .tc-toc {
        display: none;
    }
    
    .pp-toc.mobile-open, .tc-toc.mobile-open {
        display: block;
    }
}

.pp-toc, .tc-toc {
    background: #fff;
    padding: 30px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.15);
}

.pp-toc h3, .tc-toc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1.5px solid rgba(184, 144, 106, 0.2);
    padding-bottom: 10px;
}

.pp-toc ul, .tc-toc ul {
    list-style: none;
}

.pp-toc li, .tc-toc li {
    margin-bottom: 12px;
}

.pp-toc a, .tc-toc a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #8a7560;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
}

.pp-toc a:hover, .tc-toc a:hover,
.pp-toc a.active-toc, .tc-toc a.active-toc {
    color: #d4af7a;
    transform: translateX(4px);
}

.pp-content, .tc-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(60, 40, 30, 0.05);
    border: 1px solid rgba(184, 144, 106, 0.15);
}

@media (max-width: 600px) {
    .pp-content, .tc-content {
        padding: 30px 20px;
    }
}

.pp-section, .tc-section {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(184, 144, 106, 0.15);
    padding-bottom: 40px;
}

.pp-section:last-child, .tc-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pp-section-header, .tc-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pp-section-number, .tc-section-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #d4af7a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
}

.pp-section-header h2, .tc-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3a2a20;
    font-weight: 500;
}

.pp-content p, .tc-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 15px;
}

.pp-content ul, .tc-content ul,
.pp-content ol, .tc-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.pp-content li, .tc-content li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 8px;
}

.pp-content h3, .tc-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3a2a20;
    margin: 25px 0 12px;
    font-weight: 500;
}

.pp-highlight-box, .tc-highlight-box {
    background: #f5efe6;
    border-left: 3px solid #d4af7a;
    padding: 20px;
    border-radius: 0 6px 6px 0;
    margin: 25px 0;
}

.pp-highlight-box p, .tc-highlight-box p {
    margin-bottom: 0;
}

.pp-data-table, .tc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.pp-data-table th, .pp-data-table td,
.tc-table th, .tc-table td {
    padding: 12px 15px;
    border: 1px solid rgba(184, 144, 106, 0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    text-align: left;
}

.pp-data-table th, .tc-table th {
    background: #faf8f5;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3a2a20;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4af7a;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #3a2a20;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .portfolio-grid, .services-grid, .video-gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fixed Parallax Section */
.fixed-parallax {
    position: relative;
    height: 50vh;
    background-image: url('../img/hero3.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.fixed-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 25, 18, 0.55);
    z-index: 2;
}

.fixed-parallax-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
}

.fixed-parallax-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.fixed-parallax-content h2 em {
    font-family: 'Great Vibes', cursive;
    color: #d4af7a;
    font-style: normal;
    font-size: 1.4em;
}

.fixed-parallax-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.5vw, 13px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .fixed-parallax {
        background-attachment: scroll;
        height: 40vh;
    }
}

/* Custom Our Services section padding overrides on homepage */
#our-services {
    background: #ffffff;
    padding: 100px 24px;
}
