:root {
    --black: #000000;
    --gold: #A8B600;
    --white: #FFFFFF;
    --grey: #f4f4f4;
    --text-color: #333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--black);
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* --- Image Lightbox --- */
.image-lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.image-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.image-lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* --- Video Lightbox --- */
.video-lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    height: auto;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-lightbox-content iframe,
.video-lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.video-lightbox-caption {
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    text-align: left;
    display: none;
}

.video-lightbox-caption h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.video-lightbox-caption p {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 0.5rem;
}

.video-lightbox-caption .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.video-lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.video-lightbox-close:hover,
.video-lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* --- Header --- */
.main-header {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: padding 0.3s ease;
}

.main-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 40px;
}

.main-nav {
    display: none; /* Hidden on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    border-top: 1px solid var(--grey);
}

.main-nav.active {
    display: block;
}

.main-nav .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-links li {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
}

.nav-links a {
    color: var(--black);
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cart-btn {
    position: relative;
    font-size: 1.2rem;
    color: var(--black);
    padding: 0.5rem;
}

.header-cart-btn:hover {
    color: var(--gold);
}

.cart-item-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-actions .social-media {
    display: flex; /* Changed from none to flex */
    align-items: center;
    gap: 0.75rem;
}

.header-actions .social-media a {
    margin-left: 0; /* Removed margin in favor of gap */
    font-size: 1rem;
    color: var(--black);
}
.header-actions .social-media a:hover {
    color: var(--gold);
}

.header-actions .social-media a:first-child {
    margin-left: 0;
}

.header-actions .btn {
    display: none; /* Hidden on mobile */
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    z-index: 1001; /* Ensure it's above other header elements */
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: -1;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta .btn {
    margin: 0.5rem;
}

.hero-cta .btn-primary {
    color: var(--black);
}
.hero-cta .btn-primary:hover {
    color: var(--white);
}

.hero-cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- Announcement Section --- */
.announcement-box {
    background-color: var(--grey);
    border-left: 5px solid var(--gold);
    padding: 2rem;
    margin: 0 auto;
    max-width: 900px;
    border-radius: 0 8px 8px 0;
}

.announcement-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.announcement-list {
    list-style: none;
    padding-left: 0;
}

.announcement-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.announcement-list li strong {
    color: var(--black);
    font-weight: 600;
}

.pricing-intro {
    font-size: 1.1rem !important;
    font-weight: 500;
    color: var(--black) !important;
}

/* --- Pricing Menu Section --- */
.pricing-menu {
  background-color: #fdfdfd;
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #A8B600;; /* Bleu élégant */
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

/* Carrousel container */
.pricing-carousel-container {
  overflow-x: auto; 
  display: flex;
  scroll-snap-type: x mandatory; 
  gap: 2rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
}

/* Carousel flex */
.pricing-carousel {
  display: flex;
  gap: 2rem;
}

/* Pricing cards */
.pricing-card {
  flex: 0 0 250px; 
  scroll-snap-align: start; 
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 250px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

/* Category title */
.pricing-category {
  font-size: 1.5rem;
  color: #A8B600; /* Or élégant */
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

/* Pricing list */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #A8B600;
  font-size: 1rem;
  color: black;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li span:last-child {
    color: red; /* ou la couleur exacte que tu veux */
    font-weight: 600; /* facultatif, pour mieux faire ressortir le prix */
}

.pricing-list .consult-note {
  justify-content: center;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: #A8B600;;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: black;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-card {
    flex: 0 0 220px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    flex: 0 0 180px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    flex: 0 0 160px;
    padding: 1.2rem 1rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .section-title p {
    font-size: 1rem;
  }
  .pricing-category {
    font-size: 1.2rem;
  }
}



/* --- Reels Section (New Video Section) --- */
.reels-section {
    background-color: var(--grey);
}

.reels-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
    gap: 1.5rem;
    padding: 1rem 0;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.reels-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.reel {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 75vh;
    max-height: 600px;
    background-color: var(--black);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole video is visible */
}

.reel-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.mute-btn {
    background-color: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.mute-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

@media (min-width: 500px) {
    .reel {
        flex-basis: calc(50% - 0.75rem); /* 2 items on screen */
    }
}

@media (min-width: 992px) {
    .reel {
        flex-basis: calc(33.333% - 1rem); /* 3 items on screen */
    }
}

/* --- Video Section --- */
.video-section {
    background-color: var(--black);
}

.video-section .section-title h2,
.video-section .section-title p {
    color: var(--white);
}

.video-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 189, 89, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px; /* Match parent's border-radius */
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover; /* Changed to cover for a fuller look, keeps aspect ratio */
    border-radius: 8px; /* Ensure video inside wrapper is also rounded */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1; /* Show on hover */
}

.video-overlay i {
    color: var(--white);
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay i {
    transform: scale(1.2);
}


/* ===== PAGE SERVICES ===== */
.page-services {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}

/* ===== SECTION TITRE ===== */
.page-services .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-services .section-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color:black;
    margin-bottom: 1rem;
}

.page-services .section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

/* ===== FILTRES DE SERVICE ===== */
.page-services .service-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.page-services .service-filters .filter-btn {
    background-color: #fff;
    color: black;
    border: 2px solid rgba(168, 182, 0);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-services .service-filters .filter-btn.active,
.page-services .service-filters .filter-btn:hover {
    background-color: rgba(168, 182, 0);
    color: black;
}

/* ===== LISTE DES SERVICES ===== */
.page-services .services-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ===== CARTES DE SERVICE ===== */
.page-services .service-list-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.page-services .service-list-item img {
    width: 100%;
    height: 60vh;      /* hauteur sur grand écran */
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 0;
}


.page-services .service-list-item:hover img {
    transform: scale(1.05);
}

.page-services .service-list-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-services .service-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.page-services .service-list-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(168, 182, 0);
}

.page-services .service-price {
    font-weight: 600;
    color: #ff4d4d; /* rouge Samsodo pour le prix */
}

/* ===== DESCRIPTION & BOUTON ===== */
.page-services .service-list-details p {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.page-services .service-list-details .btn {
    width: 100%;
    background-color: rgba(168, 182, 0);
    color: black;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-services .service-list-details .btn:hover {
    background-color:rgba(168, 182, 0);
}

/* ===== LIGHTBOX ET MODAL ===== */
.page-services #image-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.page-services #image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.page-services .booking-modal {
    /* le modal reste inchangé, couleur et formule conservées */
}

/* ===== RESPONSIVE ===== */
/* Ajustement pour mobile */
@media (max-width: 768px) {
    .page-services .service-list-item img {
        width: 100%;
        height: 100vh;   /* remplissage complet de l'écran style short */
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .page-services .service-list-item img {
        height: 100vh; /* encore plus petit pour téléphones très petits */
    }
}
/* Desktop large */
@media (min-width: 1024px) {
    .page-services .section-title h1 {
        font-size: 3rem; /* titre plus grand */
    }
    .page-services .section-title p {
        font-size: 1.2rem; /* texte plus lisible */
    }
    .page-services .service-filters button {
        padding: 0.8rem 2rem; /* boutons plus grands */
        font-size: 1rem;
    }
    .page-services .service-list-item .service-list-details {
        padding: 2rem;
    }
    .page-services .service-list-item h3 {
        font-size: 1.5rem;
    }
    .page-services .service-list-item p {
        font-size: 1rem;
    }
}
/* --- Services Preview --- */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.service-card {
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 500px; /* augmente la hauteur d'affichage */
    object-fit: contain; /* affiche l’image entière */
    object-position: center; /* centre l’image dans le bloc */
    background-color: #f8f8f8; /* couleur de fond neutre pour combler les vides */
    border-radius: 12px;
    padding: 8px; /* petit espace pour éviter que ça colle aux bords */
}

.service-card:hover img {
    transform: scale(1.05); /* petit effet zoom au survol */
}

.service-card h3 {
    margin: 1rem 0 0.5rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
    color: #666;
    flex-grow: 1;
}

/* --- About Preview --- */


.about-image video {
    width: 100%;          /* prend toute la largeur du conteneur */
    max-width: 600px;     /* limite la taille sur PC */
    height: auto;         /* conserve le ratio */
    border-radius: 8px;
    display: block;
    object-fit: cover;    /* garde le ratio sans déformer */
    margin: 0 auto;       /* centre la vidéo sur desktop */
}


/* --- Featured Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    transition: box-shadow 0.3s ease;
    overflow: hidden; /* Important pour que le zoom ne dépasse pas la carte */
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card img {
    margin: 0 auto 1rem;
    width: 100%;
    height: 450px;           /* Tu peux augmenter ici pour agrandir l'image */
    object-fit: cover;       /* cover pour remplir la carte */
    border-radius: 4px;
    transition: transform 0.3s ease; /* Pour effet zoom */
}

/* Zoom léger au survol */
.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.2rem;
}

.product-card .desc {
    font-size: 0.9rem;
    color: #666;
    padding: 0 0.5rem;
    min-height: 45px;
}

.price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}


/* --- Reviews Section --- */
.reviews {
    background: var(--grey);
}

#reviews-slider {
    padding-bottom: 50px; /* space for pagination */
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: contain; /* Changed from cover to contain */
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card h4 {
    color: var(--gold);
}

.swiper-pagination-bullet-active {
    background-color: var(--gold) !important;
}

/* --- Gallery Preview --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Page Specific: About --- */
.page-header {
    background: var(--grey);
    text-align: center;
    padding: 60px 1rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}

.about-page-grid.reverse {
    direction: rtl;
}
.about-page-grid.reverse > * {
    direction: ltr;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain; /* Changed from cover to contain */
    margin: 0 auto 1rem;
    border: 4px solid var(--grey);
}

.team-member p {
    color: var(--gold);
    font-weight: 500;
}

.team-member .team-quote {
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

/* --- Page Specific: Checkout --- */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.checkout-form-container h3, .order-summary h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

#paypal-button-container-checkout {
    margin-top: 1.5rem;
}

.order-summary {
    background: var(--grey);
    padding: 1.5rem;
    border-radius: 8px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}
.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item img {
    width: 60px;
    height: 60px;
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 4px;
}

.item-details {
    flex-grow: 1;
}
.item-details .item-title {
    font-weight: 600;
    margin: 0;
}
.item-details .item-quantity {
    font-size: 0.9rem;
    color: #666;
}

.item-price {
    font-weight: 600;
}

.summary-total {
    margin-top: 1.5rem;
    border-top: 2px solid #ddd;
    padding-top: 1.5rem;
}
.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.total-row.grand-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}
.total-row.grand-total span {
    color: var(--black);
}

/* --- Page Specific: Booking & Contact --- */
.booking-container, .contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form, .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--body-font);
    font-size: 1rem;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--gold);
    border-color: var(--gold);
}

.booking-confirmation {
    background: var(--grey);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border-left: 5px solid var(--gold);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-details h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-details ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-details ul li i {
    color: var(--gold);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-map {
    margin-top: 2rem;
}

.contact-map img {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* --- Page Specific: Gallery (Re-styled) --- */
.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-filters .filter-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

.gallery-filters .filter-btn:hover {
    background: var(--grey);
    border-color: var(--gold);
}

.gallery-filters .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.gallery-masonry-grid {
    margin: 0 auto;
}

.gallery-masonry-grid:after {
    content: '';
    display: block;
    clear: both;
}

.gallery-item-full {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    width: 100%;
    break-inside: avoid;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item-full .media-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--grey);
    display: block;
    line-height: 0;
}

.gallery-item-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-full .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
}
.gallery-item-full .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.play-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    background: rgba(0,0,0,0.4);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    pointer-events: none;
}
.gallery-item-full:hover .play-icon-wrapper {
    background: rgba(168, 182, 0);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2.5rem 1.5rem 1.5rem;
    pointer-events: none;
}

.gallery-item-full:hover .gallery-item-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
    opacity: 0;
    pointer-events: all;
}
.gallery-item-full:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 0 0.25rem 0;
}

.overlay-content .description {
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 0.75rem;
}

.overlay-content .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.overlay-buttons {
    display: flex;
    gap: 0.75rem;
}

.overlay-buttons .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 20px;
}
.overlay-buttons .btn i {
    margin-right: 6px;
}

.overlay-buttons .btn.view-btn,
.overlay-buttons .btn.video-play-btn {
    background-color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
    color: var(--black);
}
.overlay-buttons .btn.view-btn:hover,
.overlay-buttons .btn.video-play-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/* --- Lightbox Customization --- */
body.sl-custom-open {
    overflow: hidden;
}
.sl-custom .sl-overlay {
    background: #000;
    opacity: 0.85;
}

.sl-custom .sl-wrapper .sl-image {
    padding: 20px;
}

.sl-custom .sl-wrapper .sl-image img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sl-custom .sl-wrapper .sl-close,
.sl-custom .sl-wrapper .sl-navigation button {
    color: #fff;
    font-size: 2rem;
    opacity: 0.8;
}

.sl-custom .sl-wrapper .sl-image .sl-caption {
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-family: var(--body-font);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: left;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
}
.sl-custom .sl-wrapper .sl-image .sl-caption h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--white);
}

.sl-custom .sl-wrapper .sl-image .sl-caption p {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    color: #eee;
}

.sl-custom .sl-wrapper .sl-image .sl-caption .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

/* --- Page Specific: Shop --- */
.shop-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-filters .filter-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

.shop-filters .filter-btn:hover {
    background: var(--grey);
    border-color: var(--gold);
}

.shop-filters .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.shop-product-grid .product-card {
    display: block;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.shop-product-grid .product-card .btn {
    width: calc(100% - 2rem);
    margin: 1rem;
}

/* --- Footer --- */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-col .logo img {
    height: 50px;
    margin: 0 auto 1rem;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
}
.footer-col a:hover {
    color: var(--gold);
}

.footer-col .social-media a {
    color: var(--white);
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-fl {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-fl:hover {
    transform: scale(1.1);
    color: white;
}

/* --- Responsive (Mobile Menu) --- */
/* Mobile menu is default. No .active class needed for initial display style. */


/* --- Media Queries for larger screens --- */

/* Tablets - Still uses burger menu */
@media (min-width: 768px) {
    .section-title h2 { font-size: 2.5rem; }
    .hero-title { font-size: 4rem; }

    .nav-toggle { display: none; }
    .main-nav { 
        display: flex; 
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }
    .main-nav .nav-links {
        flex-direction: row;
        gap: 0;
    }
    .main-nav .nav-links li {
        margin: 0;
        margin-left: 1.5rem;
        width: auto;
    }

    .header-actions .btn { display: inline-block; }
    .header-actions {
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
    .about-content .section-title {
        margin-bottom: 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-col .logo img {
        margin: 0 0 1rem;
    }
    .gallery-item-full {
        width: calc(33.333% - 16px);
    }
    .video-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .checkout-wrapper {
        grid-template-columns: 2fr 1fr;
    }
    .checkout-form {
         grid-template-columns: 1fr 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .service-list-item {
        grid-template-columns: 250px 1fr;
    }
    .service-list-header {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
    }
}

/* Desktops - Switch to horizontal nav */
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
    
    .nav-toggle { display: none; }
    .main-nav { 
        display: flex; 
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }
    .main-nav .nav-links {
        flex-direction: row;
        gap: 0;
    }
    .main-nav .nav-links li {
        margin: 0;
        margin-left: 1.5rem;
        width: auto;
    }

    .header-actions .btn { display: inline-block; }
    .header-actions {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .gallery-item-full {
        width: calc(33.333% - 16px);
    }
    .video-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-list-item {
        grid-template-columns: 250px 1fr;
    }

    .booking-form, .contact-form {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.booking-modal.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.booking-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal.visible .booking-modal-content {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.booking-modal-close:hover {
    color: var(--black);
}

.booking-modal-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.modal-service-img {
    width: 100px;
    height: 100px;
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 8px;
    flex-shrink: 0;
}

.modal-service-details h3 {
    margin-bottom: 0.25rem;
}
.modal-service-details p, #modal-gallery-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0;
}

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

#paypal-button-container {
    margin-top: 1.5rem;
    position: relative;
    z-index: 100; /* Ensure PayPal button is above other elements */
}

@media (min-width: 768px) {
    .modal-form {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.5rem;
    }
    .modal-form .form-group.full-width {
        grid-column: 1 / -1;
    }
}

.modal-form .form-group {
    margin-bottom: 0; /* remove default margin */
}

#modal-booking-confirmation, #modal-order-confirmation, #modal-gallery-confirmation {
    text-align: center;
    padding: 2rem;
    background: var(--grey);
    border-radius: 8px;
}
#modal-gallery-confirmation .btn {
    margin-top: 1rem;
}