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

:root {
    --primary-color: #a05544;
    --primary-gradient: #6F4E37;
    --secondary-color: #FFFFFF;
    --accent-color: #EAEAEA;
    --text-dark: #2c3e50;
    --text-light: #666;
    --shadow: 0 4px 20px rgba(160, 85, 68, 0.15);
    --shadow-hover: 0 8px 30px rgba(160, 85, 68, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

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

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #3D2914 !important;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFF0;
}

.sidebar.collapsed .sidebar-header {
    padding: 20px 10px;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3D2914;
    font-weight: 600;
    font-size: 18px;
}

.logo i {
    width: 24px;
    height: 24px;
}

.logo-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.sidebar.collapsed .logo-image {
    max-width: 28px;
}

.logo-text {
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar.collapsed .logo-text {
    opacity: 0;
    width: 0;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #3D2914;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.collapsed .sidebar-toggle {
    margin: 0;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.menu-list {
    list-style: none;
}

.menu-item {
    margin-bottom: 8px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.sidebar.collapsed .menu-link {
    padding: 12px;
    justify-content: center;
    gap: 0;
}

.menu-link:hover,
.menu-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 4px 0 0 white;
}

.menu-link i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.menu-text {
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar.collapsed .menu-text {
    opacity: 0;
    width: 0;
}

/* Tooltip for collapsed sidebar */
.sidebar.collapsed .menu-link {
    position: relative;
}

.sidebar.collapsed .menu-link:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1001;
    opacity: 1;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar.collapsed .menu-link:hover::before {
    content: '';
    position: absolute;
    left: 62px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
}

/* Special styling for giveaway menu item */
.giveaway-item {
    margin-top: 10px;
    border-top: 1px solid rgba(45, 199, 210, 0.2);
    padding-top: 10px;
}

.giveaway-link {
    background: linear-gradient(135deg, #a05544 0%, #6F4E37 100%);
    color: white !important;
    border-radius: 8px;
    margin: 5px;
    position: relative;
    overflow: hidden;
    animation: giveawayPulse 2s ease-in-out infinite;
}

.giveaway-link:hover {
    background: linear-gradient(135deg, #6F4E37 0%, #a05544 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(45, 199, 210, 0.3);
}

.giveaway-link .menu-text {
    color: white;
    font-weight: 600;
}

.giveaway-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: #FFD700;
    color: #2C3E50;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    animation: badgeBounce 1s ease-in-out infinite alternate;
}

@keyframes giveawayPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(45, 199, 210, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(45, 199, 210, 0);
    }
}

@keyframes badgeBounce {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Hide badge when sidebar is collapsed */
.sidebar.collapsed .giveaway-badge {
    display: none;
}

/* Special tooltip for giveaway item */
.sidebar.collapsed .giveaway-link::after {
    background: linear-gradient(135deg, #FFD700 0%, #F4D03F 100%);
    color: #2C3E50;
    font-weight: 600;
    border: 2px solid #a05544;
}

.submenu-arrow {
    margin-left: auto;
    transition: var(--transition);
}

.sidebar.collapsed .submenu-arrow {
    opacity: 0;
    width: 0;
}

.has-submenu.open .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed .submenu {
    display: none;
}

.has-submenu.open .submenu {
    max-height: 300px;
}

.sidebar.collapsed .has-submenu.open .submenu {
    display: none;
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 8px 20px 8px 52px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.submenu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.collapsed .sidebar-footer {
    padding: 15px 10px;
}

.footer-shortcuts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar.collapsed .footer-shortcuts {
    align-items: center;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar.collapsed .footer-link {
    padding: 8px;
    gap: 0;
    justify-content: center;
}

.footer-link:hover {
    color: white;
}

.footer-text {
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar.collapsed .footer-text {
    opacity: 0;
    width: 0;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    transition: var(--transition);
}

.sidebar.collapsed ~ .main-content {
    margin-left: 70px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 255, 255, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="wedding" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23wedding)"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 85, 68, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

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

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

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

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

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

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.7) 100%);
}
@keyframes kenburns { 0%{ transform: scale(1) translate3d(0,0,0);} 100%{ transform: scale(1.08) translate3d(0,0,0);} }
@keyframes auroraDrift { 0%{ transform: translate3d(0,0,0) rotate(0deg);} 100%{ transform: translate3d(0,0,0) rotate(360deg);} }
.hero-aurora { position: absolute; inset: -10vh -10vw; pointer-events: none; }
.hero-wave { position: absolute; width: 140vw; height: 140vh; top: -20vh; left: -20vw; filter: blur(40px); opacity: 0.28; background: conic-gradient(from 90deg, rgba(255,180,0,0.35), rgba(255,255,255,0.0), rgba(160,85,68,0.35)); animation: auroraDrift 20s linear infinite; }
.hero-wave:nth-child(2){ animation-delay: -6s; opacity: 0.22; }
.hero-wave:nth-child(3){ animation-delay: -12s; opacity: 0.18; }
.hero-brand-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); color: #fff; font-weight: 700; margin-bottom: 10px; }

@media (prefers-reduced-motion: reduce){
  .hero-image { animation: none !important; }
  .hero-wave { animation: none !important; }
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.home-highlights { padding: 12px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.highlights-ticker { overflow: hidden; }
.ticker-track { display: inline-flex; gap: 40px; white-space: nowrap; animation: tickerScroll 26s linear infinite; }
.ticker-track span { color: #2c3e50; opacity: 0.9; letter-spacing: 0.4px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Home Stats */
.home-stats { padding: 30px 0; background: linear-gradient(180deg, #fff 0%, #f6ebe7 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.home-stat { background: #ffffff; border: 1px solid #EAD4CB; border-radius: 12px; padding: 16px; text-align: center; box-shadow: 0 8px 18px rgba(160,85,68,0.08); }
.home-stat .stat-value { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.6rem; color: #2c3e50; }
.home-stat .stat-value .stat-suffix { font-size: 1.2rem; margin-left: 2px; color: #6F4E37; }
.home-stat .stat-label { color: #6F4E37; }

/* Brand Strip */
.brand-strip { padding: 18px 0; }
.brands-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.brand-pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; border: 1px solid #EAD4CB; color: #6F4E37; background: #ffffff; box-shadow: 0 6px 12px rgba(160,85,68,0.06); }

/* Home Testimonials */
.home-testimonials { padding: 60px 0; }
.ht-carousel { position: relative; }
.ht-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.ht-track::-webkit-scrollbar { display: none; }
.ht-card { flex: 0 0 calc(100% / var(--ht-per-view, 1)); background: #ffffff; border: 1px solid #EAD4CB; border-radius: 12px; padding: 16px; box-shadow: 0 10px 22px rgba(160,85,68,0.08); }
.ht-name { font-weight: 800; color: #2c3e50; }
.ht-rating { color: #FFD700; letter-spacing: 2px; margin: 6px 0; }
.ht-quote { color: #6F4E37; }
.ht-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; }
.ht-prev, .ht-next { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #EAD4CB; background: #fff; color: #6F4E37; font-weight: 800; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.12); }
.ht-prev:hover, .ht-next:hover { filter: brightness(1.05); }
.ht-dots { display: inline-flex; gap: 6px; }
.ht-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: #EAD4CB; }
.ht-dots .dot.active { background: #6F4E37; }

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

/* Home Gallery Carousel */
.home-gallery { padding: 60px 0; }
.hg-carousel { position: relative; }
.hg-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.hg-track::-webkit-scrollbar { display: none; }
.hg-card { flex: 0 0 calc(100% / var(--hg-per-view, 1)); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 22px rgba(160,85,68,0.08); border: 1px solid #EAD4CB; background: #ffffff; }
.hg-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }
.hg-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; }
.hg-prev, .hg-next { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #EAD4CB; background: #fff; color: #6F4E37; font-weight: 800; cursor: pointer; box-shadow: 0 6px 16px rgba(160,85,68,0.12); }
.hg-prev:hover, .hg-next:hover { filter: brightness(1.05); }
.hg-dots { display: inline-flex; gap: 6px; }
.hg-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: #EAD4CB; }
.hg-dots .dot.active { background: #6F4E37; }

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

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), #25B6C3);
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

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

/* Events Section */
.events-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.events-carousel {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
}

.event-slide[data-event="weddings"] .event-background {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.event-slide[data-event="corporate"] .event-background {
    background: linear-gradient(135deg, #3f51b5, #283593);
}

.event-slide[data-event="private"] .event-background {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.event-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.event-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

/* Venues Section */
.venues-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

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

.venue-image {
    height: 250px;
    background: var(--primary-gradient);
    position: relative;
}

.venue-card:nth-child(1) .venue-image {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.venue-card:nth-child(2) .venue-image {
    background: linear-gradient(135deg, #ff5722, #d84315);
}

.venue-card.coming-soon .venue-image {
    background: linear-gradient(135deg, #9e9e9e, #616161);
}

.venue-content {
    padding: 30px;
}

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

.venue-content p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.photo-grid,
.video-grid,
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.team-image {
    height: 250px;
    background: var(--primary-gradient);
}

.team-content {
    padding: 30px;
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

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

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 199, 210, 0.1);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: #2b1f17;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    margin-left: 280px; /* keep footer clear of expanded sidebar */
}

.footer::before { display: none; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Footer offset when sidebar collapses */
.sidebar.collapsed ~ .footer {
    margin-left: 70px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.footer-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.footer-section::before { content: none; }

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.footer-section:hover { box-shadow: none; }

.footer-section h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 8px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 8px;
}

.footer-section h4::after { content: none; }

.footer-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-image {
    width: 160px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.footer-logo p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-top: 12px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links li::before { content: none; }

.footer-links li:hover::before {
    color: #ff6b6b;
    transform: translateX(3px);
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #F4D03F;
    text-decoration: underline;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.95);
    padding: 8px 0;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    background: transparent;
}

.contact-item:hover {
    border-left-color: rgba(160, 85, 68, 0.4);
}

.contact-item i {
    color: #F4D03F;
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
}
.contact-item span { color: rgba(255,255,255,0.98); display: inline; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; }

.footer-bottom {
    border-top: 1px solid rgba(160, 85, 68, 0.12);
    padding: 20px 0;
    text-align: center;
    background: transparent;
}

.footer-bottom-content p {
    color: rgba(255,255,255,0.8);
    margin: 6px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Main content offset to avoid sidebar overlap */
.router-container {
    margin-left: 280px; /* match expanded sidebar width */
    transition: var(--transition);
}

.sidebar.collapsed ~ .router-container {
    margin-left: 70px; /* match collapsed sidebar width */
}

@media (max-width: 768px) {
    /* On mobile, keep content visible when sidebar collapses */
    .router-container {
        margin-left: 0;
    }
    .footer { margin-left: 0; }
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border: none;
    font-size: 1.2rem;
}

.footer-brand-card {
    background: #ffffff;
    border: 1px solid #EAD4CB;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.footer-brand-card .footer-logo { text-align: center; }
.footer-brand-card .footer-logo p { color: #6F4E37 !important; margin-top: 12px; font-size: 1rem; line-height: 1.6; }

@media (max-width: 768px) {
    .footer-newsletter .newsletter-field { max-width: 100%; grid-template-columns: auto 1fr; }
    .footer-newsletter .btn-primary { margin-top: 8px; width: 100%; }
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-color: #e1306c;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    border-color: #1877f2;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: #ff0000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.4);
}

.social-links a:nth-child(5):hover {
    background: linear-gradient(45deg, #0077b5, #005885);
    border-color: #0077b5;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4);
}

.social-links a:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-8px) scale(1.1); }
    50% { transform: translateY(-8px) scale(1.15); }
}

/* Floating Social Media Bar */
.social-float-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none; /* Hidden on desktop by default */
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-icon:hover {
    transform: translateX(5px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.facebook:hover {
    background: #2d4373;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #d4822a 0%, #c55a33 25%, #b91f39 50%, #a91d5a 75%, #9a1575 100%);
}

.social-icon.whatsapp:hover {
    background: #1da851;
}

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

.lightbox.active {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
    color: var(--text-dark);
}

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

.modal-body {
    padding: 20px;
}

.partner-modal .modal-content {
    max-width: 720px;
    border-radius: 18px;
    overflow: hidden;
    max-height: 90dvh;
    -webkit-overflow-scrolling: touch;
}

.partner-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), #F4D03F);
    color: #fff;
    padding: 18px 22px;
}

.partner-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.partner-form .form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.partner-form .btn-primary { min-width: 140px; }
.partner-form .btn-enquire {
    width: auto;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.partner-form .btn-enquire:hover {
    background: var(--primary-color);
    color: #fff;
}

.form-field {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 1.5px solid #eaeef2;
    border-radius: 12px;
    background: #fafafa;
    outline: none;
    transition: var(--transition);
    font-size: 0.98rem;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.form-label {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
}

.form-field:focus-within .form-label,
.form-field.filled .form-label {
    top: 8px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.form-field textarea.form-input {
    min-height: 110px;
    resize: vertical;
}

@media (max-width: 768px) {
    .partner-form { grid-template-columns: 1fr; }
    .partner-modal .modal-content { max-width: 96%; max-height: 92dvh; }
    .form-field { margin-bottom: 12px; }
    .form-input { padding: 16px 16px 16px 44px; font-size: 1rem; }
}

html.modal-open, body.modal-open { overscroll-behavior: contain; }

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Improve mobile hero visibility and account for bottom nav */
    .hero-section {
        height: calc(100vh - 90px);
    }
    .hero-image,
    .hero-video {
        object-position: center;
    }
    .hero-video-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
        display: block;
    }
    .hero-media-container { background-color: #000; }
    .hero-title { text-shadow: 0 3px 8px rgba(0,0,0,0.7); }
    .hero-subtitle { color: #f0f0f0; text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
    .social-float-bar {
        display: flex; /* Show on mobile devices */
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer {
        padding-bottom: 120px; /* Account for bottom navigation */
        margin-left: 0; /* on mobile, overlay/sidebar slides over content */
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: calc(100vh - 120px);
    }
    .hero-image,
    .hero-video {
        object-position: center;
    }
    .hero-video-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .social-float-bar {
        display: flex; /* Show on small mobile devices */
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer {
        padding-bottom: 100px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #25B6C3;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: #FFFFF0;
    z-index: 1001;
    padding: 8px 20px;
    padding-top: calc(8px + env(safe-area-inset-top));
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo-image {
    width: 90px;
    height: auto;
    max-height: calc(100% - 16px);
    display: block;
    object-fit: contain;
}

.mobile-menu-button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #333;
}
.mobile-menu-button:hover { filter: brightness(1.05); }

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }
    
    .router-container {
        padding-top: 85px;
    }
    
    .sidebar {
        right: 0;
        left: auto;
        transform: translateX(100%);
        width: 280px;
        z-index: 1002;
        position: fixed;
        top: 0;
        bottom: 0;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-header .sidebar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 12px;
        top: 12px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.12);
        background: #fff;
        color: #333;
        z-index: 1003;
    }
    .sidebar-header .sidebar-toggle:hover { filter: brightness(1.05); }
    
    .main-content {
        margin-left: 0;
        padding: 20px 15px;
    }
    
    /* Touch-friendly menu items */
    .menu-link {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .submenu .menu-link {
        padding: 12px 40px;
    }
    
    /* Improved hero section for mobile */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Better grid layouts for mobile */
    .services-grid,
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Mobile-friendly stats */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        height: 80px;
        padding: 8px 15px;
        padding-top: calc(8px + env(safe-area-inset-top));
    }
    
    .router-container {
        padding-top: 80px;
    }
    
    .mobile-logo-image {
        width: 90px;
        height: auto;
        max-height: calc(100% - 16px);
    }
    
    .sidebar {
        width: 100%;
    }
    
    .main-content {
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile overlay for sidebar */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-overlay.active {
        display: block;
    }
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    max-width: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 16px;
    position: relative;
    min-width: 60px;
    transform: scale(1);
}

.bottom-nav-item:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.bottom-nav-item.active {
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}

/* Special styling for giveaway button */
.giveaway-nav-item {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 65px !important;
    height: 65px !important;
    margin-top: -20px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
    animation: giveawayPulse 2s infinite !important;
}

.giveaway-nav-item:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6) !important;
    animation: giveawayPulse 1s infinite, giftShake 0.5s ease-in-out !important;
}

.giveaway-icon {
    font-size: 24px !important;
    margin-bottom: 2px !important;
}

.giveaway-nav-item .bottom-nav-label {
    font-size: 9px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    color: white !important;
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: slideDown 0.3s ease-out;
}

.bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.bottom-nav-item:active .bottom-nav-icon {
    transform: scale(0.9);
}

.bottom-nav-item.active .bottom-nav-icon {
    animation: bounce 0.5s ease;
}

.bottom-nav-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.bottom-nav-item.active .bottom-nav-label {
    opacity: 1;
    font-weight: 600;
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
        transform: translateY(0);
    }
    
    /* Add bottom padding to main content to prevent overlap */
    .router-container {
        padding-bottom: 80px;
    }
    
    /* Hide mobile header hamburger menu when bottom nav is active */
    .mobile-header {
        background: #FFFFF0;
    }
}

/* Dark theme support for bottom nav */
@media (prefers-color-scheme: dark) {
    .bottom-nav {
        background: rgba(30, 30, 30, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .bottom-nav-item {
        color: #ccc;
    }
    
    .bottom-nav-item:hover,
    .bottom-nav-item.active {
        color: var(--primary-color);
    }
    
    .bottom-nav-item.active {
        background: rgba(52, 152, 219, 0.2);
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

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

@keyframes giftShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Ripple effect for touch feedback */
.bottom-nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.bottom-nav-item:active::after {
    width: 60px;
    height: 60px;
}

/* Enhanced Gallery Styles for SPA */
.gallery-item-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #f2f4f7;
}

.gallery-item { content-visibility: auto; contain-intrinsic-size: 240px; }
.gallery-media.lazy { filter: blur(10px); transform: scale(1.03); background: linear-gradient(180deg, #f7f9fc, #eef2f7); }
.gallery-media { transition: filter 0.3s ease, transform 0.3s ease; }

@media (max-width: 768px) {
    .gallery-item-media { aspect-ratio: 1 / 1; }
}

.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-rating i {
    color: #FFC107;
    width: 16px;
    height: 16px;
}

.testimonial-quote {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .testimonial-card { padding: 18px; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pricing Packages */
.pricing-packages {
    padding: 80px 0;
    background: #f8f9fa;
    --primary-color: #FFB000;
    --primary-dark: #CC8A00;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eaeef2;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FFD369);
    border-radius: 0 0 6px 6px;
}

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

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.package-price {
    margin-bottom: 24px;
}

.package-price .currency {
    font-size: 20px;
    color: var(--primary-color);
    vertical-align: top;
}

.package-price .amount {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .period {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.package-features {
    background: #f9fbfc;
    border: 1px solid #eaeef2;
    border-radius: 12px;
    padding: 16px 18px;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1rem;
}

.package-features li i {
    color: #4CAF50;
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.package-subtitle {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 8px;
}

.package-note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 6px;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-pay-now {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pay-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 176, 0, 0.35);
}

.btn-enquire-package {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.payment-info {
    margin-top: 60px;
    text-align: center;
}

.payment-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.payment-feature i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.payment-note {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.payment-modal h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.payment-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.payment-detail-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #5a6268;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .payment-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
}

/* Media Modal Enhancements */
.media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    margin: 5% auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}

.modal-media img,
.modal-media video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-info {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

.modal-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.modal-info p {
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-50%);
}

.nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
}
.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-photo,
.gallery-media {
  width: 100%;
  height: auto;
  object-fit: cover;
  content-visibility: auto;
}

.gallery-media {
  aspect-ratio: 4/3;
}
/* Footer Newsletter */
.footer-newsletter .newsletter-field {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 8px;
    position: relative;
    align-items: center;
}
.footer-newsletter .newsletter-field i { display: none; }
.footer-newsletter input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 8px;
    border: 1px solid #EAD4CB;
    background: #ffffff;
    color: #6F4E37;
    grid-column: 1;
}
.footer-newsletter input::placeholder { color: rgba(111,78,55,0.6); }
.footer .btn-primary { background: #6F4E37; color: #ffffff; }
.footer-newsletter .btn-primary { padding: 12px 16px; }
.newsletter-note { color: #6F4E37; font-size: 0.9rem; margin-top: 8px; }