@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --ivory: #FDF9F5;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --rose-gold: #E8B4B8;
    --rose-gold-rgb: 232, 180, 184;
    --brown: #2E1F1A;
    --brown-light: #453028;
    --light: #ffffff;
    --light-trans: rgba(255, 255, 255, 0.85);
    --dark-trans: rgba(46, 31, 26, 0.9);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--ivory);
    color: var(--brown);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   SCROLLBAR & PROGRESS BAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--rose-gold), var(--gold));
    z-index: 10002;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
#custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

#custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

#custom-cursor.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--rose-gold);
}

@media (max-width: 1024px) {
    #custom-cursor, #custom-cursor-dot {
        display: none !important;
    }
}

/* ==========================================================================
   SCROLL FADE-UP ANIMATIONS (Intersection Observer)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   GLOBAL COMPONENTS & BUTTONS
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 span {
    color: var(--gold);
    font-style: italic;
}

.section-header .divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.section-header .divider::before,
.section-header .divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.section-header .divider svg {
    fill: var(--gold);
    width: 16px;
    height: 16px;
    animation: pulse 2s infinite ease-in-out;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background-color: var(--brown);
    color: var(--ivory);
    border: 1px solid var(--brown);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--brown);
    box-shadow: 0 10px 20px rgba(46, 31, 26, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--brown);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--brown);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--brown);
    color: var(--ivory);
    border-color: var(--brown);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Consistent minimum gap between main header elements */
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 60px;
    filter: brightness(0) invert(11%) sepia(26%) saturate(692%) hue-rotate(328deg) brightness(97%) contrast(92%);
}

.nav-links {
    display: flex;
    gap: 35px; /* Consistent gap between navigation items */
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.nav-links a {
    color: var(--ivory);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease, letter-spacing 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled .nav-links a {
    color: var(--brown);
}

.nav-links a:hover {
    color: var(--gold);
    letter-spacing: 2.2px; /* Subtle elegant expansion on hover */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

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

.header-btn {
    border: 1px solid var(--ivory);
    color: var(--ivory);
    padding: 11px 24px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

header.scrolled .header-btn {
    border-color: var(--gold);
    color: var(--brown);
    background-color: var(--gold);
}

header.scrolled .header-btn:hover {
    background-color: var(--brown);
    border-color: var(--brown);
    color: var(--ivory);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--ivory);
    transition: var(--transition-fast);
}

header.scrolled .menu-toggle span {
    background-color: var(--brown);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(46, 31, 26, 0.4), rgba(46, 31, 26, 0.7)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(46, 31, 26, 0.4) 100%);
    z-index: -1;
}

.petals-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    background-color: var(--rose-gold);
    opacity: 0.6;
    border-radius: 150% 0 150% 0;
    transform-origin: center;
    animation: fall 12s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--rose-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 350;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    font-family: var(--font-heading);
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    color: rgba(253, 249, 245, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-scroll-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    z-index: 2;
}

.hero-scroll-btn:hover {
    color: var(--gold);
    opacity: 1;
}

.hero-scroll-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
#stats {
    background-color: var(--brown);
    color: var(--ivory);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-gold);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    padding: 30px;
}

.about-img-main {
    border: 1px solid var(--gold);
    padding: 15px;
    background: var(--light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--brown);
    color: var(--gold);
    padding: 30px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-badge .badge-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-top: 5px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content h3 span {
    color: var(--gold);
    font-style: italic;
}

.about-text {
    color: var(--brown-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-details {
    margin-bottom: 40px;
}

.about-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-detail-icon {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-detail-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-detail-info p {
    font-size: 0.9rem;
    color: var(--brown-light);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 45px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--ivory);
    border: 1px solid var(--rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: rotateY(180deg);
}

.service-icon-box svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon-box svg {
    fill: var(--brown);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--brown);
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--brown-light);
    line-height: 1.6;
}

/* ==========================================================================
   WEDDING TIMELINE
   ========================================================================== */
#timeline {
    background-color: #FDFDFD;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose-gold), var(--gold), var(--rose-gold));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0%;
    background-color: var(--gold);
    transform: translateX(-50%);
    z-index: 2;
    transition: height 0.5s ease-out;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    z-index: 3;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-node {
    position: absolute;
    top: 35px;
    width: 20px;
    height: 20px;
    background-color: var(--ivory);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 4;
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-node {
    left: -10px;
}

.timeline-item:nth-child(odd) .timeline-node {
    right: -10px;
}

.timeline-item.active .timeline-node {
    background-color: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    transform: scale(1.3);
}

.timeline-content {
    background: var(--light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.timeline-step {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--brown);
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--brown-light);
}

/* ==========================================================================
   GALLERY SECTION (Masonry / Lightbox)
   ========================================================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-light);
    padding: 8px 18px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--gold);
}

.filter-btn.active::after {
    width: 60%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--light);
    cursor: pointer;
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, rgba(46, 31, 26, 0.8));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    transform: translateY(10px);
}

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

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-cat {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 5px;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--ivory);
    font-weight: 400;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 31, 26, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 75vh;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--ivory);
}

.lightbox-caption {
    color: var(--ivory);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--ivory);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ivory);
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 10px;
}

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

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ==========================================================================
   FEATURED VIDEOS
   ========================================================================== */
#videos {
    background-color: var(--brown);
    color: var(--ivory);
}

#videos .section-header h2 {
    color: var(--ivory);
}

.videos-slider-container {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.videos-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.videos-slider::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: var(--brown-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.video-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--brown);
    margin-left: 3px;
}

.video-card:hover .video-overlay-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--gold);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--ivory);
}

.video-info p {
    font-size: 0.8rem;
    color: var(--rose-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.package-card {
    background: var(--light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.package-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}

.package-tag {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--brown);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 15px;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 30px;
}

.package-price span {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--brown-light);
    vertical-align: middle;
}

.package-features {
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.92rem;
    color: var(--brown-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

.package-btn {
    width: 100%;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.why-icon {
    width: 50px;
    height: 50px;
    fill: var(--gold);
    margin: 0 auto 20px;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--brown-light);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
#testimonials {
    background-color: var(--light);
}

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
}

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

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--brown-light);
    font-style: italic;
    margin-bottom: 25px;
}

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

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

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

.testimonial-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   CONSULTATION FORM (Glassmorphism)
   ========================================================================== */
#contact-section {
    background-image: linear-gradient(rgba(46, 31, 26, 0.8), rgba(46, 31, 26, 0.95)), url('../assets/images/reception.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--ivory);
}

#contact-section .section-header h2 {
    color: var(--ivory);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ivory);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background-color: var(--brown);
    color: var(--ivory);
}

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

.submit-btn {
    width: 100%;
}

.contact-info-panel {
    padding-left: 20px;
}

.contact-info-panel h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 300;
}

.contact-info-panel p {
    color: rgba(253, 249, 245, 0.8);
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-details-list {
    margin-bottom: 40px;
}

.contact-detail-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon-circle svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.contact-detail-text h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 5px;
}

.contact-detail-text p {
    font-size: 1.05rem;
    color: var(--ivory);
    margin: 0;
}

.locations-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
}

.locations-box h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(253, 249, 245, 0.9);
}

.location-item svg {
    width: 14px;
    height: 14px;
    fill: var(--rose-gold);
}

/* ==========================================================================
   INSTAGRAM FEED
   ========================================================================== */
#instagram {
    padding: 0;
    background-color: var(--brown);
}

.instagram-header {
    background-color: var(--ivory);
    text-align: center;
    padding: 60px 0 20px;
}

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 10px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.instagram-handle:hover {
    color: var(--brown);
}

.instagram-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 31, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.instagram-overlay svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transform: scale(0.8);
    transition: var(--transition-fast);
}

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

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

.instagram-item:hover .instagram-overlay svg {
    transform: scale(1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--brown);
    color: var(--ivory);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(253, 249, 245, 0.7);
    margin-bottom: 25px;
    font-size: 0.92rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--brown);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--rose-gold);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(253, 249, 245, 0.75);
    font-size: 0.92rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(253, 249, 245, 0.75);
    font-size: 0.92rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(253, 249, 245, 0.5);
}

.footer-bottom a {
    color: var(--gold);
}

/* ==========================================================================
   FLOATING ELEMENTS (WhatsApp & Back to Top)
   ========================================================================== */
#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    z-index: 999;
    transition: var(--transition);
}

#whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

#whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

#back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brown);
    border: 1px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

#back-to-top:hover {
    background-color: var(--gold);
    color: var(--brown);
    transform: translateY(-5px);
}

#back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(200px) rotate(360deg);
    }
}

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

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instagram-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--brown);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: -10px 0 35px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--ivory) !important;
        font-size: 1.1rem;
    }
    
    .header-btn {
        display: none; /* Hide header CTA in mobile menu */
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .timeline-line, .timeline-progress {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 20px;
    }
    
    .timeline-node {
        left: 20px !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .instagram-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-form-card {
        padding: 30px 20px;
    }
    
    .locations-list {
        grid-template-columns: 1fr;
    }
    
    #whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    #back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
