/* Multi-Page Website Styles for Deccan Events */

/* Root Variables */
:root {
    --primary-color: #a05544;
    --secondary-color: #FFFFFF;
    --accent-color: #F4D03F;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --gradient-primary: linear-gradient(135deg, #a05544 0%, #6F4E37 100%);
    --gradient-secondary: linear-gradient(135deg, #F4D03F 0%, #F39C12 100%);
    --shadow-light: 0 2px 10px rgba(160, 85, 68, 0.1);
    --shadow-medium: 0 5px 20px rgba(160, 85, 68, 0.2);
    --shadow-heavy: 0 10px 30px rgba(160, 85, 68, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Router Container */
.router-container {
    margin-left: 280px;
    min-height: 100vh;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
    background: white;
    z-index: 1;
    position: relative;
}

.sidebar.collapsed ~ .router-container {
    margin-left: 70px;
}

/* Page Transitions */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.page-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-giveaway, .btn-enquire, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-giveaway {
    background: var(--gradient-secondary);
    color: white;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

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

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Giveaway Promo */
.giveaway-promo {
    padding: 60px 0;
    background: linear-gradient(135deg, #F4D03F 0%, #F39C12 100%);
}

.giveaway-banner {
    text-align: center;
    color: white;
}

.giveaway-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-mosaic { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.svc-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(160,85,68,0.12); display: block; border: 1px solid rgba(160,85,68,0.12); }
.svc-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; transition: transform .35s ease; }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.9)); display: grid; grid-template-rows: auto 1fr auto; gap: 8px; align-items: start; justify-items: center; padding: 16px; color: #fff; backdrop-filter: blur(6px); z-index: 1; }
.svc-icon { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); position: absolute; top: 10px; left: 10px; }
.svc-title { font-weight: 800; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,0.75); letter-spacing: 0.3px; display: inline-block; background: rgba(0,0,0,0.45); padding: 4px 8px; border-radius: 8px; text-align: center; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; justify-content: center; }
.svc-tags span { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,0.28); border: 1px solid rgba(255,255,255,0.5); font-size: .85rem; color: #fff; }
.svc-cta { margin-top: 6px; display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.6); font-weight: 800; color: #2c3e50; align-self: end; }
.svc-card:hover .svc-image { transform: scale(1.04); }

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* About Page Styles */
.company-intro {
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.intro-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.event-icon {
    font-size: 4rem;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Event-specific backgrounds */
.wedding-bg {
    background: linear-gradient(135deg, #e91e63, #ad1457, #880e4f);
}

.corporate-bg {
    background: linear-gradient(135deg, #3f51b5, #283593, #1a237e);
}

.party-bg {
    background: linear-gradient(135deg, #ff9800, #f57c00, #e65100);
}

.baby-shower-bg {
    background: linear-gradient(135deg, #e1bee7, #ba68c8, #9c27b0);
}

.engagement-bg {
    background: linear-gradient(135deg, #ffb74d, #ff9800, #f57c00);
}

.shop-opening-bg {
    background: linear-gradient(135deg, #4caf50, #388e3c, #2e7d32);
}

.custom-theme-bg {
    background: linear-gradient(135deg, #9c27b0, #673ab7, #3f51b5);
}

/* Timeline Styles */
.timeline-section {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* MVV Section */
.mvv-section {
    padding: 100px 0;
}

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

/* Services Page Hero Background */
.services-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('Ourservice.JPG') center/cover no-repeat;
}

.services-page .page-header::before {
    background: rgba(0, 0, 0, 0.15);
}

/* Events Page Hero Background */
.events-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('events.jpg') center/cover no-repeat;
}

.events-page .page-header::before {
    background: rgba(0, 0, 0, 0.15);
}

/* Gallery Page Hero Background */
.gallery-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('52.JPG') center/cover no-repeat;
}

.gallery-page .page-header::before {
    background: rgba(0, 0, 0, 0.15);
}

/* About Page Hero Background */
.about-page .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('about.JPG') center/cover no-repeat;
}

.about-page .page-header::before {
    background: rgba(0, 0, 0, 0.15);
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Services Page Styles */
.services-detailed {
    padding: 100px 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card-detailed {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img,
.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 199, 210, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card-detailed:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-content li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.service-content li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-enquire {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    justify-content: center;
}

/* Events Page Styles */
.events-showcase {
    padding: 100px 0;
}

.events-slider,
.event-types-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.event-slide.active {
    opacity: 1;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.event-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-nav-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.event-nav-btn.active,
.event-nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Event Categories */
.event-categories {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 2rem;
}

/* Venues Page Styles */
.venues-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1ABC9C 50%, var(--accent-color) 100%);
}

.venues-showcase {
    padding: 100px 0;
}

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

.venue-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.venue-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 199, 210, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-info {
    text-align: center;
    color: white;
}

.venue-content {
    padding: 2rem;
}

.venue-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.coming-soon {
    opacity: 0.7;
}

/* Venue Skeletons */
.venue-skeleton-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.venue-skeleton-card { border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid rgba(160,85,68,0.12); box-shadow: 0 10px 24px rgba(160,85,68,0.10); }
.vskeleton-image { height: 180px; background: #f2f2f2; }
.vskeleton-content { padding: 14px; }
.vskeleton-title { height: 16px; width: 60%; border-radius: 8px; background: #f2f2f2; margin-bottom: 10px; }
.vskeleton-badges { display: flex; gap: 8px; }
.vskeleton-badges span { display: inline-block; height: 12px; width: 70px; border-radius: 999px; background: #f2f2f2; }
.shimmer { position: relative; overflow: hidden; }
.shimmer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0)); transform: translateX(-100%); animation: shimmerMove 1.6s infinite; }
@keyframes shimmerMove { 0%{ transform: translateX(-100%);} 100%{ transform: translateX(100%);} }

/* No Venues state */
.no-venues { text-align: center; padding: 24px; border-radius: 16px; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); border: 1px solid rgba(160,85,68,0.12); box-shadow: 0 10px 24px rgba(160,85,68,0.10); }
.no-venues p { color: #7f8c8d; }

.venue-advantages { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 18px; }
.adv-card { background: #ffffff; border: 1px solid rgba(160,85,68,0.15); border-radius: 16px; padding: 18px; box-shadow: 0 12px 26px rgba(160,85,68,0.10); position: relative; transition: var(--transition); }
.adv-card::after { content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: conic-gradient(from 0deg, #d8a58f, #a05544, #6F4E37, #d8a58f); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.06; }
.adv-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(160,85,68,0.18); }
.adv-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f6ebe7, #ffffff); color: #a05544; border: 2px solid rgba(160,85,68,0.25); box-shadow: 0 6px 16px rgba(0,0,0,0.08); margin-bottom: 10px; }
.advantages-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 16px 0 22px; }
.adv-stat { background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 14px; padding: 16px; text-align: center; box-shadow: 0 10px 24px rgba(160,85,68,0.10); }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: #2c3e50; }
.stat-label { color: #7f8c8d; }

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

/* Venue Inspiration Mosaic */
.venue-inspiration { padding: 80px 0; }
.vi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.vi-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(160,85,68,0.12); display: block; }
.vi-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }
.vi-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.6)); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; color: #fff; }
.vi-title { font-weight: 800; font-family: 'Playfair Display', serif; }
.vi-cta { margin-top: 4px; display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); }
.vi-card:hover .vi-image { transform: scale(1.03); transition: transform .3s ease; }

/* Venue Filters */
.venues-filters { padding: 14px 0; }
.venue-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.venue-chip { padding: 8px 14px; border-radius: 999px; border: 1.5px solid rgba(160,85,68,0.25); background: #fff; color: #a05544; font-weight: 700; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.08); }
.venue-chip.active, .venue-chip:hover { background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; border-color: rgba(160,85,68,0.35); }

/* Venue Spotlight Carousel */
.venue-spotlight { padding: 80px 0; }
.venue-spotlight-track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.venue-spotlight-track::-webkit-scrollbar { display: none; }
.venue-spotlight-card { position: relative; flex: 0 0 calc(100% / var(--vs-per-view, 1)); height: 320px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-medium); background: #000; }
.vs-image { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.vs-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.75) 100%); }
.vs-info { position: absolute; left: 0; right: 0; bottom: 0; color: #fff; padding: 16px 18px; display: grid; gap: 6px; }
.vs-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
.vs-features { display: inline-flex; gap: 10px; flex-wrap: wrap; opacity: 0.9; }
.vs-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); font-weight: 700; font-size: 0.85rem; }
.venue-spotlight-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.vs-prev, .vs-next { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(160,85,68,0.25); background: #fff; color: #a05544; font-weight: 800; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.12); }
.vs-prev:hover, .vs-next:hover { filter: brightness(1.05); }
.vs-dots { display: inline-flex; gap: 6px; }
.vs-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(160,85,68,0.25); }
.vs-dots .dot.active { background: #a05544; }

@media (min-width: 860px) {
  .venue-spotlight-card { flex-basis: calc(100% / var(--vs-per-view, 2)); }
}

/* Gallery Page Styles */
.gallery-filters {
    padding: 50px 0;
    background: #F8F9FA;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid-section {
    padding: 60px 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid-section { padding: 24px 0; }
    .masonry-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 199, 210, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-view {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close {
    top: -50px;
    right: -50px;
}

.lightbox-prev {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.lightbox-placeholder {
    width: 600px;
    height: 400px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Concepts Page Styles */
.concepts-header {
    background: linear-gradient(135deg, #F8F9FA 0%, var(--primary-color) 100%);
}

.concepts-carousel {
    padding: 100px 0;
}

.carousel-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.concept-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
}

.concept-slide.active {
    opacity: 1;
}

.concept-video {
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.concept-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.btn-book-theme {
    background: var(--gradient-secondary);
    color: white;
    margin-top: 2rem;
    align-self: flex-start;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn.active {
    background: var(--primary-color);
}

/* Theme Categories */
.theme-categories {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.theme-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-thumbnail {
    position: relative;
    height: 200px;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.theme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

/* Team Page Styles */
.leadership-team {
    padding: 100px 0;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.leader-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.leader-image {
    height: 300px;
    position: relative;
}

.leader-info {
    padding: 2rem;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-info blockquote {
    font-style: italic;
    color: var(--text-light);
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.team-members {
    padding: 100px 0;
    background: #F8F9FA;
}

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

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    height: 200px;
}

.team-info {
    padding: 1.5rem;
}

.team-values {
    padding: 100px 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    justify-content: center;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    height: 400px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: white;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    font-weight: 600;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Success Animation */
.success-animation {
    text-align: center;
    margin-bottom: 1rem;
}

.success-animation i {
    font-size: 4rem;
    color: #27AE60;
    animation: bounceIn 0.6s ease-out;
}

/* CTA Sections */
.services-cta,
.concepts-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

/* Override: Use image background for Services CTA */
.services-cta {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/10.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
}

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

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

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

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .router-container {
        margin-left: 0;
        padding-top: 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid,
    .contact-grid,
    .event-content,
    .concept-slide {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .categories-grid,
    .venues-grid,
    .themes-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .mvv-card,
    .category-card,
    .venue-card,
    .team-card,
    .value-card {
        margin: 0 10px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .router-container {
        margin-left: 0;
        padding-top: 55px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .modal,
    .lightbox {
        display: none !important;
    }
    
    .page-header {
        background: none !important;
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
    }
}
.hero-cta-ribbon { margin-top: 12px; position: relative; z-index: 11; }
.hero-cta-ribbon .container { overflow: visible; }
.ribbon-wrap { display: flex; gap: 10px; justify-content: center; background: rgba(255,255,255,0.8); border: 1px solid rgba(160,85,68,0.25); backdrop-filter: blur(10px); border-radius: 999px; padding: 10px 14px; box-shadow: 0 14px 30px rgba(160,85,68,0.16); }
.ribbon-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; font-weight: 800; }
.ribbon-primary { background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; }
.ribbon-secondary { background: #fff; color: #a05544; border: 1px solid rgba(160,85,68,0.35); }
.ribbon-whatsapp { background: #25D366; color: #fff; }
@media (max-width: 768px){ .ribbon-wrap { flex-wrap: wrap; } }

.brand-promise { padding: 60px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.promise-item { background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 14px; padding: 16px; text-align: center; box-shadow: 0 10px 24px rgba(160,85,68,0.10); }
.promise-icon { font-size: 1.6rem; }
.promise-title { font-weight: 800; margin-top: 6px; }
.promise-desc { opacity: 0.9; }

.moments-reel { padding: 80px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.reel-carousel { position: relative; }
.reel-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.reel-track::-webkit-scrollbar { display: none; }
.reel-card { position: relative; flex: 0 0 calc(100% / var(--mr-per-view, 1)); height: 280px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(160,85,68,0.12); border: 1px solid rgba(160,85,68,0.12); }
.reel-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.75)); display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; color: #fff; }
.reel-title { font-weight: 800; font-family: 'Playfair Display', serif; }
.reel-caption { opacity: 0.9; }
.reel-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.reel-prev, .reel-next { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(160,85,68,0.25); background: #fff; color: #a05544; font-weight: 800; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.12); }
.reel-prev:hover, .reel-next:hover { filter: brightness(1.05); }
.reel-dots { display: inline-flex; gap: 6px; }
.reel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(160,85,68,0.25); }
.reel-dots .dot.active { background: #a05544; }

@media (min-width: 860px) {
  .reel-card { flex-basis: calc(100% / var(--mr-per-view, 2)); }
}
.services-preview,
.testimonials-section,
.gallery-preview,
.brand-promise,
.moments-reel,
.events-hero,
.events-reel,
.events-mosaic,
.events-journey,
.events-cta { content-visibility: auto; contain-intrinsic-size: 600px; }

@media (max-width: 768px){
  .svc-overlay { backdrop-filter: blur(3px); padding: 12px; }
  .reel-overlay { backdrop-filter: blur(3px); }
}
/* Events Premium Redesign */
.events-hero { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); text-align: center; }
.events-hero h2 { font-family: 'Playfair Display', serif; font-weight: 800; }
.events-hero p { opacity: 0.9; }

.events-reel { padding: 60px 0; }
.events-reel .reel-card { height: 260px; }

.events-mosaic { padding: 60px 0; }
.events-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.events-chip { padding: 8px 14px; border-radius: 999px; border: 1.5px solid rgba(160,85,68,0.25); background: #fff; color: #a05544; font-weight: 700; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.08); }
.events-chip.active, .events-chip:hover { background: linear-gradient(135deg, #a05544, #6F4E37); color: #fff; border-color: rgba(160,85,68,0.35); }
.em-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.em-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(160,85,68,0.12); border: 1px solid rgba(160,85,68,0.12); display: block; }
.em-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }
.em-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.78)); display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; color: #fff; }
.em-title { font-weight: 800; font-family: 'Playfair Display', serif; }
.em-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.em-tags span { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,0.20); border: 1px solid rgba(255,255,255,0.35); }

/* Giveaway Promo Modal */
.promo-modal .promo-content { max-width: 780px; width: min(92%, 780px); border-radius: 18px; overflow: visible; padding: 0; animation: promoScaleIn .28s ease-out; background: transparent; max-height: none; }
.promo-hero { position: relative; width: 100%; height: 420px; }
.promo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.78)); }
.promo-frame { position: absolute; inset: 0; border-radius: 18px; padding: 1px; background: conic-gradient(from 0deg, #d8a58f, #a05544, #6F4E37, #d8a58f); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.12; }
.promo-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); color: #fff; font-weight: 800; }
.promo-panel { position: absolute; left: 16px; right: 16px; bottom: 18px; display: flex; flex-direction: column; gap: 10px; z-index: 2; }
.promo-title { position: static; color: #fff; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.8rem; text-shadow: 0 2px 14px rgba(0,0,0,0.65); margin: 0; }
.promo-features { position: static; display: inline-flex; gap: 8px; flex-wrap: wrap; }
.promo-features span { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,0.20); border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.promo-countdown { position: static; display: inline-flex; gap: 10px; align-items: center; }
.promo-countdown .cd-item { display: inline-flex; flex-direction: column; align-items: center; color: #fff; padding: 6px 10px; border-radius: 12px; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px); min-width: 70px; }
.promo-countdown .cd-item span { font-weight: 800; font-size: 1.1rem; line-height: 1; }
.promo-countdown .cd-item label { font-size: .75rem; opacity: .9; margin-top: 4px; }
.promo-cta { position: static; display: flex; gap: 10px; }
@keyframes promoScaleIn { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 768px){ 
  .promo-modal .promo-content{ max-width: 96%; } 
  .promo-hero{ height: min(74vh, 560px); }
  .promo-panel{ background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); padding: 12px; border-radius: 14px; }
  .promo-title{ font-size: clamp(1.2rem, 5vw, 1.7rem); line-height: 1.2; }
  .promo-features{ gap: 6px; }
  .promo-countdown{ flex-wrap: wrap; gap: 8px; }
  .promo-countdown .cd-item{ min-width: 64px; padding: 6px 8px; }
  .promo-cta{ flex-direction: column; }
  .promo-cta a, .promo-cta button{ width: 100%; }
}

.events-journey { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #f8f4f2 100%); }
.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; position: relative; }
.journey-step { background: #ffffff; border: 1px solid rgba(160,85,68,0.12); border-radius: 14px; padding: 16px; text-align: center; box-shadow: 0 10px 24px rgba(160,85,68,0.10); }
.es-icon { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f6ebe7, #ffffff); color: #a05544; border: 2px solid rgba(160,85,68,0.25); box-shadow: 0 6px 16px rgba(0,0,0,0.08); margin-bottom: 8px; position: relative; }
.es-icon::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(160,85,68,0.35); animation: pulseRing 1.8s ease-out infinite; }
.es-title { font-weight: 800; margin-bottom: 4px; }
.es-desc { opacity: 0.9; }
@keyframes pulseRing { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.15); opacity: 0; } }

.events-cta { padding: 40px 0; }
.events-cta-wrap { display: flex; gap: 10px; justify-content: center; background: rgba(255,255,255,0.8); border: 1px solid rgba(160,85,68,0.25); backdrop-filter: blur(8px); border-radius: 999px; padding: 10px 14px; box-shadow: 0 12px 26px rgba(160,85,68,0.12); }
@media (max-width: 768px){ .events-cta-wrap { flex-wrap: wrap; } }