.editor-only-content {
    display: none;
}

section {
    padding: 120px 5%; /* Generous section padding */
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
}

h2 {
    margin-bottom: 40px;
    font-size: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.label {
    margin-bottom: 16px;
    display: inline-block;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Move to left */
  padding: 120px 8% 80px; /* More padding on sides */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-glass {
  position: relative;
  z-index: 10;
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  padding: 80px 60px;
  max-width: 700px; /* Slightly narrower for left alignment */
  width: 100%;
  text-align: left; /* Align text left */
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items left */
  animation: fadeIn 1s ease-out;
  border-radius: var(--radius-lg);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

body.dark-theme .hero-glass {
  background: rgba(10, 10, 10, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-glass p {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.hero-glass h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 32px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 15px 40px;
    min-height: auto;
  }
  .hero-glass {
    padding: 60px 20px;
    border-radius: 0; /* Full width on mobile feels more editorial */
    border-left: none;
    border-right: none;
    background: rgba(255, 255, 255, 0.85);
  }
  body.dark-theme .hero-glass {
    background: rgba(10, 10, 10, 0.85);
  }
  .hero-glass p {
    letter-spacing: 0.3em;
    margin-bottom: 16px;
  }
  .hero-glass h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Portfolio Preview Grid */
.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.preview-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.preview-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .portfolio-preview {
    grid-template-columns: 1fr;
  }
}

/* Slogan Section */
.slogan-section {
    padding: 120px 5%;
    text-align: center;
    background: var(--bg-primary);
}

.slogan-text {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 400;
}

/* Portfolio Carousel Preview */
.portfolio-carousel-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
    text-align: center;
}

.portfolio-carousel-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 80px; /* Space for side buttons */
}

.portfolio-carousel-nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .portfolio-carousel-wrapper {
        padding: 0 40px;
    }
    .portfolio-carousel-nav-container {
        height: 500px; /* Increased from 350px */
        gap: 10px;
    }
}

/* Ensure the track handles the clipping instead */
.portfolio-carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* --- RESTORED IMPROVEMENTS --- */

/* About Section Modern Layout */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editable-text-field {
    font-size: 16px;
    line-height: 2;
    color: var(--text-secondary);
    white-space: pre-wrap;
    padding: 10px;
    transition: background 0.3s ease;
}

.about-footer-text {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

@media (max-width: 992px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-visual {
        order: -1;
    }
}


/* Editor Styling (Restored) */
.inline-delete-slide-btn, .inline-delete-item-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.inline-delete-slide-btn:hover, .inline-delete-item-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.inline-add-slide-btn {
    display: block;
    margin: 40px auto 0;
    width: fit-content !important;
}

.inline-add-slide-btn:hover {
    border-color: var(--accent);
}

.portfolio-page-manage-btn {
    display: block;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-page-manage-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(255,255,255,0.02);
}

.portfolio-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.portfolio-nav-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.portfolio-carousel-nav.prev { left: 30px; }
.portfolio-carousel-nav.next { right: 30px; }

.portfolio-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-carousel-slide {
    min-width: 100%;
    height: 100%;
}

.portfolio-carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .portfolio-carousel-wrapper {
        height: 400px;
    }
    .slogan-text {
        font-size: 1.8rem;
    }
}

/* Packages */
/* --- PACKAGES & UPSELLING --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.category-block {
    padding: 60px 0;
    margin-bottom: 40px;
}

.category-title {
    font-size: 3rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 50px;
    font-weight: 300;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.package-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.package-card.upselling {
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-sm);
}


.package-card.upselling:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.06);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-glow);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.btn-minimal {
    display: inline-block;
    padding: 12px 32px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

body.dark-theme .package-features li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.package-features li svg {
    color: var(--accent);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: -0.5px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .package-card.featured {
        transform: none;
        margin: 20px 0;
    }
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    .category-title {
        font-size: 2.2rem;
    }
}


/* Testimonials Slider */
.testimonials-section {
    padding: 140px 5%;
    background: var(--bg-secondary);
    text-align: center;
}

.testimonials-section .label {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
    font-style: italic;
    display: block;
    margin-bottom: 70px;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px; /* Space for absolute buttons */
}


.testimonial-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 60px 0 160px 0; /* Massive bottom space for deep shadow and dots */
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px 80px 20px; /* Extra bottom padding inside the slide */
}

.testimonial-content {
    background: var(--bg-card);
    padding: 60px 50px;
    border-radius: 20px;
    border: 1px solid var(--border);
    max-width: 800px;
    width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    box-sizing: border-box;
}

body.dark-theme .testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}


.testimonial-content::before {
    content: '\201C';
    display: block;
    font-family: var(--serif-font);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: -10px;
}

.testimonial-content p {
    font-family: var(--serif-font);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
}

.testimonial-content cite {
    display: block;
    font-family: var(--sans-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-dark);
    font-style: normal;
    font-weight: 600;
}

body.dark-theme .testimonial-content cite {
    color: var(--accent);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -80px; /* Position dots below the cards but within the increased slider padding */
    position: relative;
    z-index: 20;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-theme .slider-dots .dot {
    background: rgba(255, 255, 255, 0.15);
}

.slider-dots .dot.active {
    background: var(--accent-dark);
    width: 24px;
    border-radius: 4px;
}

body.dark-theme .slider-dots .dot.active {
    background: var(--accent);
}

.slider-nav {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

body.dark-theme .slider-nav {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.slider-nav:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}


@media (max-width: 1000px) {
    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Portfolio Page Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.portfolio-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--bg-secondary);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.lightbox-nav-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

@media (max-width: 1200px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 10px; right: 10px; }
}


@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .testimonial-slider-wrapper {
        gap: 0;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg-card);
        opacity: 0.8;
    }

    .slider-nav.prev { left: 5px; display: flex; }
    .slider-nav.next { right: 5px; display: flex; }

    .testimonial-slider-wrapper {
        padding: 0 10px; /* Fill more of the screen width */
    }

    .testimonial-slide {
        padding: 20px 5px 120px 5px; /* Tighter side padding on mobile */
    }

    .testimonial-content {
        padding: 40px 25px;
        margin: 0;
        width: 100%;
        min-height: 280px; /* Prevent it from being too thin */
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 24px;
    }

    .slider-dots {
        margin-top: -100px; /* Adjust dots for mobile padding */
    }

    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Fix for second image (About section) on mobile */
@media (max-width: 768px) {
    .about-image img {
        height: auto !important;
        aspect-ratio: auto !important;
        max-height: 50vh;
        object-fit: cover;
    }
}

/* --- BOOKING FORM PREMIUM STYLES --- */
.booking-form-container {
    max-width: 850px;
    margin: 0 auto;
}

.booking-form {
    padding: 60px;
    border-radius: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input:focus {
    border-color: var(--accent);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}
