/* ===================================
   Color Palette - Bee Theme (Dark Mode)
   =================================== */
:root {
    --primary-yellow: #FFD700;
    --bright-yellow: #FFC107;
    --light-yellow: #FFF9C4;
    --black: #FFFFFF;
    --soft-black: #F0F0F0;
    --white: #4a4a4a;
    --off-white: #3a3a3a;
    --gray: #D5D5D5;
    --light-gray: #5a5a5a;
    --shadow: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

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

/* ===================================
   Floating Props Background
   =================================== */
.floating-props {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.prop {
    position: absolute;
    font-size: 6rem;
    opacity: 0.12;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.prop-1 {
    left: 10%;
    top: 80%;
    animation: float 15s infinite;
    animation-delay: 0s;
}

.prop-2 {
    left: 20%;
    top: 60%;
    animation: float 18s infinite;
    animation-delay: 2s;
}

.prop-3 {
    left: 30%;
    top: 40%;
    animation: float 12s infinite;
    animation-delay: 4s;
}

.prop-4 {
    left: 40%;
    top: 70%;
    animation: float 20s infinite;
    animation-delay: 1s;
}

.prop-5 {
    left: 50%;
    top: 50%;
    animation: float 16s infinite;
    animation-delay: 3s;
}

.prop-6 {
    left: 60%;
    top: 30%;
    animation: float 14s infinite;
    animation-delay: 5s;
}

.prop-7 {
    left: 70%;
    top: 90%;
    animation: float 19s infinite;
    animation-delay: 2.5s;
}

.prop-8 {
    left: 80%;
    top: 45%;
    animation: float 13s infinite;
    animation-delay: 4.5s;
}

.prop-9 {
    left: 15%;
    top: 25%;
    animation: float 17s infinite;
    animation-delay: 6s;
}

.prop-10 {
    left: 85%;
    top: 65%;
    animation: float 15s infinite;
    animation-delay: 1.5s;
}

/* Honeycomb Elements */
.honeycomb {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-yellow);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.honeycomb-1 {
    left: 15%;
    top: 15%;
    animation: floatSlow 20s infinite;
    animation-delay: 0s;
}

.honeycomb-2 {
    left: 75%;
    top: 30%;
    animation: floatSlow 25s infinite;
    animation-delay: 5s;
    font-size: 2.5rem;
}

.honeycomb-3 {
    left: 40%;
    top: 60%;
    animation: floatSlow 22s infinite;
    animation-delay: 3s;
    font-size: 3.5rem;
}

.honeycomb-4 {
    left: 90%;
    top: 80%;
    animation: floatSlow 18s infinite;
    animation-delay: 7s;
    font-size: 2rem;
}

.honeycomb-5 {
    left: 10%;
    top: 85%;
    animation: floatSlow 24s infinite;
    animation-delay: 2s;
    font-size: 2.8rem;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(30deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-50px) translateX(-15px) rotate(60deg);
        opacity: 0.12;
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(30deg);
        opacity: 0.18;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) translateX(20px) rotate(270deg);
    }
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-yellow);
}

/* Header Honeycombs */
.header-honeycomb {
    position: absolute;
    color: var(--primary-yellow);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    font-size: 2rem;
}

.header-honeycomb-1 {
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    animation: headerFloat 6s infinite ease-in-out;
}

.header-honeycomb-2 {
    left: 50%;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    animation: headerFloat 7s infinite ease-in-out;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.header-honeycomb-3 {
    right: 15%;
    top: 50%;
    transform: translateY(-50%) rotate(25deg);
    animation: headerFloat 8s infinite ease-in-out;
    animation-delay: 4s;
    font-size: 1.8rem;
}

.header-honeycomb-4 {
    left: 25%;
    top: 30%;
    transform: translateY(-50%) rotate(-10deg);
    animation: headerFloat 9s infinite ease-in-out;
    animation-delay: 1s;
    font-size: 1.3rem;
}

.header-honeycomb-5 {
    right: 35%;
    top: 70%;
    transform: translateY(-50%) rotate(35deg);
    animation: headerFloat 7.5s infinite ease-in-out;
    animation-delay: 3s;
    font-size: 1.6rem;
}

.header-honeycomb-6 {
    right: 5%;
    top: 25%;
    transform: translateY(-50%) rotate(-25deg);
    animation: headerFloat 8.5s infinite ease-in-out;
    animation-delay: 5s;
    font-size: 1.4rem;
}

@keyframes headerFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-60%) rotate(15deg) scale(1.1);
        opacity: 0.18;
    }
    50% {
        transform: translateY(-50%) rotate(30deg) scale(1.15);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-40%) rotate(15deg) scale(1.1);
        opacity: 0.18;
    }
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo::after {
    content: '⬡';
    position: absolute;
    color: var(--primary-yellow);
    font-size: 0.8rem;
    opacity: 0.4;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) rotate(45deg) scale(1.2);
    }
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--white) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0.5;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 2px 5px var(--shadow);
}

.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-family: 'Pacifico', cursive;
    color: var(--black);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-weight: 400;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--bright-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--bright-yellow);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 100px,
            var(--primary-yellow) 100px,
            var(--primary-yellow) 102px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 100px,
            var(--primary-yellow) 100px,
            var(--primary-yellow) 102px
        );
    opacity: 0.05;
}

.hero-content {
    text-align: center;
    color: var(--black);
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::before,
.section-header::after {
    content: '⬡';
    position: absolute;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    opacity: 0.3;
    top: 0;
}

.section-header::before {
    left: 50%;
    transform: translateX(-100px) rotate(15deg);
}

.section-header::after {
    right: 50%;
    transform: translateX(100px) rotate(-15deg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    margin: 0 auto;
    position: relative;
}

.underline::before,
.underline::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-yellow);
    top: 50%;
    transform: translateY(-50%);
}

.underline::before {
    right: 100%;
    margin-right: 10px;
}

.underline::after {
    left: 100%;
    margin-left: 10px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: transparent;
    position: relative;
}

.about::before {
    content: '⬡';
    position: absolute;
    right: 12%;
    top: 25%;
    font-size: 3.5rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(-30deg);
}

.about::after {
    content: '⬡⬡';
    position: absolute;
    left: 8%;
    bottom: 30%;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(20deg);
    letter-spacing: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

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

.about-headshot img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    border: 5px solid var(--primary-yellow);
    object-fit: cover;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 0 auto;
    display: block;
}

.headshot-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--white) 100%);
    border: 5px solid var(--primary-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 0 auto;
}

.headshot-placeholder span {
    font-size: 5rem;
    opacity: 0.5;
}

.headshot-placeholder p {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 600;
    opacity: 0.5;
}

.headshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.headshot-caption {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features-section {
    margin-top: 2rem;
}

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

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

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

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature p {
    color: var(--gray);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background-color: transparent;
    position: relative;
}

.services::before {
    content: '⬡';
    position: absolute;
    left: 5%;
    top: 10%;
    font-size: 4rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(15deg);
}

.services::after {
    content: '⬡';
    position: absolute;
    right: 8%;
    bottom: 15%;
    font-size: 3.5rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(-20deg);
}

.services-content {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--light-gray);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

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

.services-pricing .pricing-header h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .services-pricing {
        margin-top: 3rem;
    }
}

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

/* ===================================
   Book Section
   =================================== */
.book {
    background-color: var(--white);
    padding: 5rem 0;
    position: relative;
}

.book::before {
    content: '⬡⬡⬡';
    position: absolute;
    left: 2%;
    top: 50%;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.1;
    transform: translateY(-50%);
    letter-spacing: 1rem;
}

.book::after {
    content: '⬡⬡⬡';
    position: absolute;
    right: 2%;
    top: 50%;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.1;
    transform: translateY(-50%);
    letter-spacing: 1rem;
}

.book .section-header h2 {
    color: #ffffff;
}

/* ===================================
   Manage Booking Section
   =================================== */
.manage-booking {
    background-color: var(--white);
    padding: 5rem 0;
}

.booking-notice {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 5px;
}

.booking-notice p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.testimonial-container {
    position: relative;
    height: 450px;
}

.testimonial-item {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 5px solid var(--primary-yellow);
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-source {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-yellow);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background-color: rgba(255, 215, 0, 0.5);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-size: 4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.testimonial-arrow:hover {
    color: var(--black);
    transform: translateY(-50%) scale(1.2);
}

.testimonial-arrow-left {
    left: -60px;
}

.testimonial-arrow-right {
    right: -60px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background-color: transparent;
    padding: 6rem 0;
    position: relative;
}

.gallery::before {
    content: '⬡';
    position: absolute;
    right: 10%;
    top: 20%;
    font-size: 3rem;
    color: var(--primary-yellow);
    opacity: 0.1;
    transform: rotate(25deg);
    animation: floatSlow 10s infinite ease-in-out;
}

.gallery::after {
    content: '⬡';
    position: absolute;
    left: 5%;
    bottom: 20%;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    opacity: 0.1;
    transform: rotate(-15deg);
    animation: floatSlow 12s infinite ease-in-out;
    animation-delay: 3s;
}

.gallery .container {
    max-width: 100%;
    padding: 0 40px;
}

/* Gallery Carousel Container */
.gallery-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: visible;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1rem;
    padding: 0;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: calc(33.333% - 0.67rem);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.gallery-item:hover::before {
    content: '🔍 Click to view';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-yellow);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.photo-frame {
    background-color: var(--white);
    padding: 15px;
    border: 3px solid var(--primary-yellow);
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

.gallery-item:hover .photo-frame img {
    transform: scale(1.1);
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.carousel-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-nav span {
    line-height: 1;
    font-weight: bold;
}

/* Gallery Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    background-color: var(--bright-yellow);
    transform: scale(1.2);
}

.pagination-dot.active {
    background-color: var(--primary-yellow);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Gallery Counter */
.gallery-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.gallery-counter .current-page {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomInLightbox 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomInLightbox {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-yellow);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Placeholder photo styles (kept for backwards compatibility) */
.placeholder-photo {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--white) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 5px;
}

.placeholder-photo span {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-photo p {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 600;
}

/* Customize CTA in Gallery */
.customize-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #252525 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-yellow);
}

.customize-cta h3 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.customize-cta p {
    font-size: 1.2rem;
    color: var(--soft-black);
    margin-bottom: 2rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background-color: transparent;
    position: relative;
}

.contact::before {
    content: '⬡⬡';
    position: absolute;
    left: 3%;
    top: 15%;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(30deg);
    letter-spacing: 2rem;
}

.contact::after {
    content: '⬡⬡';
    position: absolute;
    right: 5%;
    bottom: 20%;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.08;
    transform: rotate(-25deg);
    letter-spacing: 1.5rem;
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.contact-item p {
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group textarea {
    resize: vertical;
}

.form-help {
    display: block;
    margin-top: 0.3rem;
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

.form-notice {
    border-left: 4px solid var(--primary-yellow);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    background: transparent;
}

.form-notice p {
    margin: 0;
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    visibility: visible;
}

.form-notice strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid var(--primary-yellow);
    position: relative;
}

.footer::before {
    content: '⬡ ⬡ ⬡';
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--primary-yellow);
    opacity: 0.6;
    letter-spacing: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .logo-image {
        width: 55px;
        height: 55px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .headshot-placeholder {
        width: 200px;
        height: 200px;
    }

    .headshot-placeholder span {
        font-size: 4rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery Carousel Responsive */
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }
}
/* ===================================
   Customize Section Styles
   =================================== */
.customize {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, #252525 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--soft-black);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.customize-container {
    margin-top: 3rem;
}

.customize-section {
    margin-bottom: 4rem;
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid #333;
}

.customize-heading {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customize-icon {
    font-size: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.option-card {
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.option-card.selected {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, var(--white) 0%, #1f1f1f 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.option-preview {
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.preview-content {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Theme Previews */
.theme-classic {
    background: linear-gradient(135deg, #000 0%, #fff 100%);
    border: 4px solid #FFD700;
}

.theme-modern {
    background: linear-gradient(135deg, #00D4FF 0%, #FF00FF 100%);
}

.theme-rustic {
    background: linear-gradient(135deg, #8B4513 0%, #DEB887 100%);
}

.theme-glamour {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    position: relative;
}

.theme-glamour::after {
    content: '✨';
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
}

/* Background Previews */
.bg-solid {
    background: linear-gradient(to right, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
}

.bg-sequin {
    background: radial-gradient(circle, #FFD700 1px, transparent 1px);
    background-size: 15px 15px;
    background-color: #C0C0C0;
}

.bg-floral {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0F5 100%);
}

.bg-floral .preview-content {
    font-size: 3rem;
}

.bg-custom {
    background: repeating-linear-gradient(
        45deg,
        #2a2a2a,
        #2a2a2a 10px,
        #3a3a3a 10px,
        #3a3a3a 20px
    );
}

.bg-custom .preview-content {
    font-size: 3rem;
}

/* Layout Previews */
.preview-layout {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 5px;
    padding: 10px;
}

.layout-strip .preview-layout {
    flex-direction: column;
}

.layout-box {
    background: var(--primary-yellow);
    border: 2px solid var(--black);
    flex: 1;
    border-radius: 4px;
}

.layout-box.large {
    flex: 3;
}

.postcard-layout {
    flex-direction: column;
}

.layout-text {
    color: var(--black);
    font-size: 0.8rem;
    padding: 5px;
    text-align: center;
}

.collage-layout {
    flex-wrap: wrap;
}

.gif-layout {
    align-items: center;
    justify-content: center;
}

.gif-icon {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    animation: pulse 1.5s infinite;
}

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

.option-card h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.option-card p {
    color: var(--soft-black);
    font-size: 0.9rem;
}

/* Props Selection */
.props-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.prop-checkbox {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.prop-checkbox:hover {
    border-color: var(--primary-yellow);
    transform: translateX(5px);
}

.prop-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray);
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.prop-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.prop-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.prop-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.prop-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.prop-name {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.prop-item small {
    color: var(--soft-black);
    font-size: 0.85rem;
}

/* Custom Text Form */
.custom-text-form {
    margin-top: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    background: var(--white);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--black);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Date Input Styling */
.form-group input[type="date"] {
    position: relative;
    cursor: pointer;
    padding-left: 3rem;
    min-height: 50px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    opacity: 1;
    transition: all 0.3s ease;
    filter: invert(1);
    position: absolute;
    left: 0.5rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    filter: invert(1) brightness(1.2);
}

.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--black);
}

.char-count {
    text-align: right;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Preview Section */
.preview-section {
    background: linear-gradient(135deg, #1f1f1f 0%, var(--off-white) 100%);
}

.preview-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--primary-yellow);
}

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

.preview-item {
    padding: 1rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
}

.preview-item strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
}

.preview-item span {
    color: var(--soft-black);
    font-size: 1rem;
}

.preview-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Config Code Box */
.config-code-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-yellow);
    animation: slideIn 0.5s ease-out;
}

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

.config-code-header {
    margin-bottom: 1rem;
}

.config-code-header strong {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.config-code-header p {
    color: var(--soft-black);
    font-size: 0.95rem;
    margin: 0;
}

.config-code-box .config-code-display {
    background: var(--off-white);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    word-break: break-all;
}

.config-code-box .config-code-display code {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    display: block;
    text-align: center;
}

.config-code-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.config-code-actions .btn {
    flex: 1;
    min-width: 200px;
}

#copy-code-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

#copy-code-btn:hover {
    transform: translateY(-2px);
}

/* Old Config Code Section - Keep for backwards compatibility */
.config-code-section {
    background: linear-gradient(135deg, #1a4d1a 0%, #0f3a0f 100%) !important;
    border: 3px solid var(--primary-yellow) !important;
    animation: slideIn 0.5s ease-out;
}

.config-code-container {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.config-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray);
}

.btn-secondary:hover {
    background: var(--light-gray);
    border-color: var(--black);
}

/* Responsive Styles for Customize Section */
@media (max-width: 768px) {
    .customize-section {
        padding: 1.5rem;
    }

    .customize-heading {
        font-size: 1.4rem;
    }

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

    .option-card {
        padding: 1rem;
    }

    .option-preview {
        height: 120px;
    }

    .props-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .preview-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .preview-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Gallery Responsive Styles */
@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0;
    }

    .gallery .container {
        padding: 0 20px;
    }

    .gallery-carousel-container {
        padding: 0 50px;
    }

    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-prev {
        left: -45px;
    }

    .carousel-next {
        right: -45px;
    }

    .gallery-pagination {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery .container {
        padding: 0 5px;
    }

    .gallery-carousel-container {
        padding: 0 30px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: -25px;
    }

    .carousel-next {
        right: -25px;
    }

    .gallery-pagination {
        gap: 6px;
        padding: 0 10px;
    }

    .pagination-dot {
        width: 8px;
        height: 8px;
    }
}

/* ===================================
   Widget Styling Overrides
   =================================== */
.booking-widget iframe,
.services-pricing iframe,
.contact-form iframe {
    filter: hue-rotate(200deg) saturate(1.3) brightness(1.05);
    background: transparent;
}

.manage-booking iframe {
    background: transparent;
}

/* Wrapper styling to blend widgets with site */
.booking-widget,
.services-pricing,
.contact-form > div:has(iframe),
.manage-booking > .booking-widget {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}