:root {
    --primary-color: #2d5a3d;     /* Deep Forest Green */
    --secondary-color: #c7a17a;   /* Warm Gold */
    --accent-color: #d4af8c;      /* Light Gold */
    --text-color: #e8e8e8;        /* Light gray text */
    --text-dark: #2c2c2c;         /* Dark text for light backgrounds */
    --light-color: #0a0a0a;       /* Almost black */
    --light-bg: #f8f6f2;          /* Warm beige for light sections */
    --dark-bg: #000000;           /* Pure black */
    --card-bg: #1a1a1a;           /* Dark card background */
    --white: #ffffff;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* Full viewport minus nav height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback background */
    margin-top: 80px; /* Nav height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hero Image Placeholder */
.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hide placeholder when video is loaded */
.hero.video-loaded .hero-image-placeholder {
    opacity: 0;
    pointer-events: none;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio based on width */
    min-height: 100%;
    min-width: 177.78vh; /* 16:9 aspect ratio based on height */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: auto;
}

#vimeo-player {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#vimeo-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Force Vimeo's internal player to stretch */
.hero-video-container iframe[src*="vimeo"] {
    object-fit: fill !important;
}

/* Target Vimeo player wrapper */
.hero-video-container > div[style*="padding"] {
    padding: 0 !important;
    height: 100% !important;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 161, 122, 0.4);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(199, 161, 122, 0.2);
    border-top: none;
    margin-top: 0;
}

.nav-logo {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* Contact Info Bar */
.contact-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    height: 40px;
    border-bottom: none;
}

.contact-info-item {
    font-size: 0.85rem;
}

.contact-info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.contact-info-item a:hover {
    color: var(--secondary-color);
}

/* Show full contact info on desktop, hide short version */
.contact-full {
    display: inline;
}

.contact-short {
    display: none;
}

.contact-info-item i {
    color: #999;
    margin-right: 0.4rem;
    font-size: 0.85em;
    opacity: 0.8;
}

.contact-info-item:hover i {
    color: var(--secondary-color);
    opacity: 1;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 3rem;
    background-color: var(--light-color);
    margin-bottom: 0;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Large portfolio item spans full width on top */
.portfolio-item-large {
    grid-column: span 2;
}

/* Portfolio CTA Buttons */
.portfolio-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.portfolio-button {
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: none;
    min-width: 140px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portfolio-button:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.4);
}

.video-lightbox {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(199, 161, 122, 0.15);
}

.video-lightbox:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(199, 161, 122, 0.3);
    border-color: rgba(199, 161, 122, 0.4);
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.video-preview::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(199, 161, 122, 0.95);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent var(--black);
    z-index: 2;
    transition: all 0.3s ease;
}

.video-lightbox:hover .video-preview::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-lightbox:hover .video-preview::before {
    transform: translate(-40%, -50%) scale(1.1);
}

.video-title {
    margin-top: 1.2rem;
    text-align: center;
}

.video-title h3 {
font-size: 1.3rem;
color: var(--primary-color);
font-family: 'Playfair Display', serif;
text-align: center;
margin: 0;
}

.video-title h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.video-lightbox:hover + .video-title h3::after {
    width: 80px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

#lightboxIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-lightbox:hover {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    flex-grow: 1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    .lightbox {
        padding: 10px;
    }
    
    .lightbox-content {
        width: 95%;
        max-width: 95%;
    }
    
    .close-lightbox {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--light-bg);
    border-top: 1px solid rgba(199, 161, 122, 0.2);
    border-bottom: 1px solid rgba(199, 161, 122, 0.2);
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about h2.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.about h2.about-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content:last-child {
    margin-bottom: 0;
}

/* Reverse layout for alternating content blocks */
.about-content-reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.about-content:not(.about-content-reverse) .about-text p {
    padding-right: 2rem;
}

.about-content-reverse .about-text p {
    padding-left: 2rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(199, 161, 122, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 6rem 1rem;
    background: #000;
}

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

.pricing .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--white) !important;
    font-size: 2.7rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
}

body .pricing h2.section-title {
    color: #ffffff !important;
    text-shadow: 0 18px 55px rgba(0, 0, 0, 0.95) !important;
}

.pricing .section-title::after {
    content: '';
    display: block;
    width: 88px;
    height: 3px;
    border-radius: 999px;
    background: var(--secondary-color);
    margin: 0.9rem auto 0;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.pricing .section-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1.05rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.80);
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.package-card {
    background: rgba(10, 10, 10, 0.72);
    border-radius: 14px;
    border: 1px solid rgba(199, 161, 122, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card.popular {
    border: 2px solid rgba(199, 161, 122, 0.75);
    box-shadow: 0 22px 60px rgba(199, 161, 122, 0.22);
    transform: translateY(-6px);
}

.package-header {
    padding: 1.6rem 1.6rem 1.2rem;
    background: linear-gradient(180deg, rgba(45, 90, 61, 0.16), rgba(0, 0, 0, 0));
    border-bottom: 1px solid rgba(199, 161, 122, 0.18);
}

.package-name {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.98) !important;
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 0.4px;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
}

.package-badge {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(199, 161, 122, 0.22);
    border: 1px solid rgba(199, 161, 122, 0.45);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.85rem;
}

.package-price {
    margin-top: 0.8rem;
    font-size: 1.15rem;
    color: var(--secondary-color) !important;
    font-weight: 600;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.package-card,
.package-card * {
    color: rgba(255, 255, 255, 0.92);
}

.package-card .package-price {
    color: var(--secondary-color) !important;
}

.inquire-btn {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
}

.package-card button.cta-button {
    background-color: var(--secondary-color) !important;
    color: var(--black) !important;
    border: 2px solid var(--secondary-color) !important;
}

.package-card button.cta-button:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: var(--black) !important;
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.inquiry-modal[aria-hidden="false"] {
    display: flex;
}

.inquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(6px);
}

.inquiry-dialog {
    position: relative;
    width: min(720px, 100%);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(199, 161, 122, 0.35);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.70);
    overflow: hidden;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
}

.inquiry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(199, 161, 122, 0.22);
    background: linear-gradient(180deg, rgba(45, 90, 61, 0.18), rgba(0, 0, 0, 0));
}

.inquiry-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.96);
}

.inquiry-close {
    appearance: none;
    border: 1px solid rgba(199, 161, 122, 0.35);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.92);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inquiry-close:hover {
    border-color: rgba(199, 161, 122, 0.65);
}

.inquiry-body {
    padding: 18px 20px 20px;
    color: rgba(255, 255, 255, 0.92);
    overflow: auto;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.inquiry-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.inquiry-input,
.inquiry-textarea,
.inquiry-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.9rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(199, 161, 122, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    box-shadow: none;
    box-sizing: border-box;
}

.inquiry-input:focus,
.inquiry-textarea:focus,
.inquiry-select:focus {
    outline: none;
    border-color: rgba(199, 161, 122, 0.75);
    box-shadow: 0 0 0 3px rgba(199, 161, 122, 0.18);
}

.inquiry-textarea {
    min-height: 140px;
    resize: vertical;
}

.inquiry-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.inquiry-actions .cta-button {
    margin-left: auto;
}

.inquiry-status {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    min-height: 1.2em;
}

@media (max-width: 720px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-body {
        padding: 16px;
    }
}

.package-body {
    padding: 1.3rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.package-description {
    color: rgba(255, 255, 255, 0.90) !important;
    font-size: 0.98rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.package-features li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.95rem;
}

.package-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    margin-top: 0.1rem;
}

.addons {
    margin-top: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(199, 161, 122, 0.2);
}

.addons-title {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.addons-list {
    margin: 0;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-footer {
    padding: 0 1.6rem 1.6rem;
}

.package-footer .cta-button {
    width: 100%;
    text-align: center;
}

.note {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding: 1.2rem 1.3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(199, 161, 122, 0.28);
    color: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(10px);
}

.note strong {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: none;
    }
}

@media (max-width: 700px) {
    .pricing .section-title {
        font-size: 2.1rem;
    }
}
.reviews {
    padding: 6rem 2rem;
    background-color: #2a2a2a;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #d4d4d4;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(199, 161, 122, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(199, 161, 122, 0.3);
}

.review-header {
    margin-bottom: 1.5rem;
}

.review-author h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-text p {
    margin-bottom: 0.8rem;
}

.review-preview {
    display: block;
}

.review-full {
    display: none;
}

.review-card.expanded .review-full {
    display: block;
}

.read-more-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(199, 161, 122, 0.15);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 161, 122, 0.3);
    box-shadow: 0 12px 32px rgba(199, 161, 122, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Pricing and Deals Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-color);
    color: var(--dark-bg);
}

.pricing .section-title {
    text-align: center;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.pricing-text {
    flex: 1;
}

.pricing-text p {
    color: #666;
}

.pricing-package-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.promotion-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-weight: 600;
}

.promotion-dates {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.promotion-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.promotion-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #666;
}

.promotion-features li:before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-container {
    margin-top: 2rem;
    text-align: center;
}

/* Pricing Image Collage */
.pricing-collage {
    position: relative;
    height: 550px;
    width: 100%;
}

.collage-item {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

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

/* Overlapping layout */
.collage-large {
    width: 55%;
    height: 70%;
    top: 15%;
    left: 0;
    z-index: 2;
}

.collage-item:nth-child(2) {
    width: 45%;
    height: 35%;
    top: 0;
    right: 0;
    z-index: 1;
}

.collage-item:nth-child(3) {
    width: 40%;
    height: 35%;
    bottom: 10%;
    right: 5%;
    z-index: 3;
}

.collage-item:nth-child(4) {
    width: 35%;
    height: 30%;
    bottom: 0;
    left: 15%;
    z-index: 4;
}

/* Responsive styles */
@media (min-width: 768px) {
    .promotion-content {
        flex-direction: row;
        align-items: center;
    }
    
    .promotion-text {
        padding-right: 2rem;
    }
    
    .promotion-image {
        flex: 1;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .promotion-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Promotion Collage */
.promotion-collage {
    position: relative;
    flex: 1;
    min-height: 520px;
    width: 100%;
}

.promotion-collage .collage-item {
    position: absolute;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    object-position: center;
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: #ddd;
}

/* Main hero image */
.promotion-collage .collage-item.main {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54%; /* Slightly larger main image */
    aspect-ratio: 4 / 3;
    z-index: 2; /* Under supporting images */
}

/* Supporting images */
.promotion-collage .collage-item.left {
    left: 4%;
    top: 10%;
    width: 40%; /* Slightly smaller than main */
    aspect-ratio: 4 / 3;
    transform: rotate(-3deg);
    z-index: 3; /* Above main */
}

.promotion-collage .collage-item.right {
    right: 4%;
    top: 12%;
    width: 40%; /* Slightly smaller than main */
    aspect-ratio: 4 / 3;
    transform: rotate(3deg);
    z-index: 3; /* Above main */
}

/* Subtle hover lift on desktop */
@media (hover: hover) and (pointer: fine) {
    .promotion-collage .collage-item {
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .promotion-collage .collage-item:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    }
    .promotion-collage .collage-item.main:hover {
        transform: translate(-50%, -52%) scale(1.01);
    }
}

/* Responsive layout for collage */
@media (max-width: 992px) {
    .promotion-collage {
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .promotion-collage {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .promotion-collage .collage-item {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3; /* Keep consistent and tidy on mobile */
        transform: none !important;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        z-index: auto;
    }
}

/* Tablet stacking to avoid floating */
@media (max-width: 1024px) {
    .promotion-content {
        flex-direction: column;
        align-items: stretch;
    }
    .promotion-collage {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .promotion-collage .collage-item {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        transform: none !important;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        z-index: auto;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    border-top: 1px solid rgba(199, 161, 122, 0.2);
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(199, 161, 122, 0.25);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(199, 161, 122, 0.35);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--light-bg);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(199, 161, 122, 0.15);
}

.submit-button {
    background-color: var(--secondary-color);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 161, 122, 0.4);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--text-color);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(199, 161, 122, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-item i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

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

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    /* General Adjustments */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: calc(100vh - 70px);
        margin-top: 70px;
    }
    
    /* Show contact info bar on mobile with new layout */
    .contact-info-bar {
        display: flex !important;
        position: fixed;
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 0;
        gap: 1.5rem;
        z-index: 1001;
        background: transparent;
        border: none;
        pointer-events: all;
        flex-direction: row;
        align-items: center;
        height: auto;
    }
    
    .contact-info-item {
        font-size: 0.85rem;
    }
    
    .contact-info-item a {
        pointer-events: all;
    }
    
    /* Hide full contact info on mobile, show short version */
    .contact-full {
        display: none;
    }
    
    .contact-short {
        display: inline;
    }
    
    /* Navigation at the top on mobile */
    .main-nav {
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 1rem;
        height: 70px;
    }
    
    .nav-toggle {
        order: 1;
        margin-right: auto;
    }
    
    /* Show and style logo on mobile */
    .nav-logo {
        display: block;
        order: 3;
        margin-left: auto;
    }
    
    .nav-logo img {
        height: 45px;
        width: auto;
        object-fit: contain;
        border-radius: 4px;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
        border-bottom: 1px solid rgba(199, 161, 122, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        text-align: center;
    }
    
    .nav-link:hover, .nav-link.active {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    /* Hero Text */
    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    /* Ensure text comes before image on mobile */
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
        margin-top: 1rem;
    }
    
    .about-text p {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Portfolio Section - all same size stacked */
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .portfolio-item-large {
        grid-column: 1;
        grid-row: auto;
    }
    
    .video-lightbox {
        margin-bottom: 0;
        max-width: 100%;
    }
    
    /* Reviews Section - single column on mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    /* Pricing Section - stack on mobile */
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-collage {
        height: 400px;
    }
    
    .collage-large {
        width: 60%;
        height: 65%;
    }
    
    .collage-item:nth-child(2) {
        width: 50%;
        height: 35%;
    }
    
    .collage-item:nth-child(3) {
        width: 45%;
        height: 35%;
    }
    
    .collage-item:nth-child(4) {
        width: 40%;
        height: 30%;
    }
    
    /* Contact Section */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* Form Elements */
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Hide Vimeo play button on mobile */
    iframe[src*="vimeo"] {
        pointer-events: none;
    }
}


/* Smaller mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title, .portfolio h2 {
        font-size: 2rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 2rem 1rem 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
        font-size: 0.9rem;
        border-top: 1px solid rgba(199, 161, 122, 0.1);
        text-align: center;
    }
}

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

.service-card {
    animation: fadeIn 0.6s ease-out forwards;
}
