/* ===================================
   PART 1: Base Styles, Navigation, 
   Decorative Elements, and Sections
   =================================== */

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

:root {
    --dark-purple: #160d2b;
    --medium-purple: #2a1a4a;
    --gold: #f8f8ff;
    --light-gold: #f8f8ff;
    --black: #0f0f0f;
    --accent: #4169e1;
    --charcoal-blue: #2d3748;
    
    /* Wedding Section - Lavender Dreams */
    --wedding-bg-start: #524060;
    --wedding-bg-end: #3f334d;
    --wedding-text: #fff8f0;
    --wedding-title: #ffc4dd;
    --wedding-accent: #d8a5c0;
    --wedding-premium-border: #d4a5a5;
    --wedding-premium-hover: #ffb8d1;
    --wedding-premium-hover-border: #f4a6b8;
    --wedding-luxury-border: #a080c0;
    --wedding-luxury-hover: #e88fff;
    --wedding-luxury-hover-border: #da70d6;
    --wedding-silver: #c0c0c0;
    --wedding-rose-silver: #d8bfd8;
    
    /* Private Events Section - Midnight Diamond */
    --private-bg-start: #1a1f2e;
    --private-bg-end: #0f1419;
    --private-text: #fffff0;
    --private-title: #e5e3d8;
    --private-accent: #f7e7ce;
    --private-premium-border: #b8b8b0;
    --private-premium-hover: #f8f8f8;
    --private-luxury-border: #c9a961;
    --private-luxury-hover: #ffd700;
    
    /* Corporate Section - Business Sophistication */
    --corporate-bg-start: #1e3a5f;
    --corporate-bg-end: #0f1e3d;
    --corporate-text: #ffffff;
    --corporate-title: #d3d3d3;
    --corporate-border: #4682b4;
    --corporate-hover: #4682b4;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #fafafa;
    background: var(--black);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.05);
    backdrop-filter: blur(5px);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(15, 15, 15, 0.15);
    backdrop-filter: blur(8px);
    border-bottom: none;
}

.logo {
    height: 70px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #fffff0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 90px);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 0.5rem 0;
    }
}

/* Shiva Decorative Elements */
.shiva-decor {
    position: absolute;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.trident {
    font-size: 15rem;
    color: var(--gold);
    transform: rotate(-15deg);
}

.om {
    font-size: 20rem;
    color: var(--accent);
    transform: rotate(25deg);
}

.lightning {
    position: absolute;
    width: 4px;
    height: 100%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        #ffffff 10%,
        transparent 15%,
        #ffffff 20%,
        transparent 22%,
        #ffffff 30%,
        transparent 40%,
        #ffffff 50%,
        transparent 55%,
        #ffffff 65%,
        transparent 70%,
        #ffffff 80%,
        transparent 90%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(192, 192, 192, 0.6),
                0 0 60px rgba(192, 192, 192, 0.4);
    animation: flicker 60s ease-in-out infinite;
    transform: skewX(-5deg);
    transition: opacity 0.3s;
}

.benefit-card:hover ~ .lightning,
.package-card:hover ~ .lightning,
.benefits-grid:hover .lightning,
.packages-container:hover .lightning {
    opacity: 0.4;
}

.lightning::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 100%;
    left: 15px;
    background: linear-gradient(to bottom,
        transparent 5%,
        #ffffff 12%,
        transparent 18%,
        #ffffff 25%,
        transparent 35%,
        #ffffff 45%,
        transparent 52%,
        #ffffff 60%,
        transparent 68%,
        #ffffff 75%,
        transparent 85%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: skewX(8deg);
}

.lightning::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    left: -10px;
    background: linear-gradient(to bottom,
        transparent 8%,
        #ffffff 15%,
        transparent 20%,
        #ffffff 28%,
        transparent 38%,
        #ffffff 48%,
        transparent 58%,
        #ffffff 68%,
        transparent 78%,
        #ffffff 85%,
        transparent 95%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: skewX(3deg);
}

@keyframes flicker {
    0%, 100% {
        opacity: 0.2;
    }
    10% {
        opacity: 0.28;
    }
    20% {
        opacity: 0.18;
    }
    30% {
        opacity: 0.32;
    }
    40% {
        opacity: 0.22;
    }
    50% {
        opacity: 0.3;
    }
    60% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.28;
    }
    80% {
        opacity: 0.18;
    }
    90% {
        opacity: 0.24;
    }
}

.cobra {
    position: absolute;
    font-size: 6rem;
    opacity: 0.05;
    pointer-events: none;
    color: var(--accent);
    z-index: 0;
}

/* Section Styles */
section {
    min-height: 100vh;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(65, 105, 225, 0.03), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #f8f8ff;
    text-shadow: 0 0 25px rgba(211, 211, 211, 1), 0 0 40px rgba(192, 192, 192, 0.8);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Landing Section */
#landing {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    min-height: 100vh;
    z-index: 1;
}

#landing > * {
    position: relative;
    z-index: 100;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1 !important;
}

.hero-bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.60;
    filter: grayscale(20%);
}

.hero-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.375), rgba(15, 15, 15, 0.45));
    z-index: 2 !important;
}

#landing h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative !important;
    z-index: 100 !important;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
}

.event-types {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    position: relative !important;
    z-index: 100 !important;
}

.event-types .event-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-types .separator {
    color: #fffff0;
}

.event-types a {
    color: #fffff0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 1px;
}

.event-types a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.event-types a:hover {
    color: var(--gold);
}

.event-types a:hover::after {
    width: 100%;
}

.tagline {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #fafafa;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-family: 'Bungee Shade', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(65, 105, 225, 0.6),
        0 0 30px rgba(192, 192, 192, 0.4);
    animation: taglineGlow 4s ease-in-out infinite alternate;
}

@keyframes taglineGlow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 20px rgba(65, 105, 225, 0.4),
            0 0 30px rgba(192, 192, 192, 0.3);
    }
    to {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 1),
            0 0 30px rgba(65, 105, 225, 0.8),
            0 0 45px rgba(192, 192, 192, 0.6);
    }
}

.cta-button {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-block;
    margin: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
    position: relative !important;
    z-index: 100 !important;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.6),
        -4px -4px 12px rgba(255, 255, 255, 0.1),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(192, 192, 192, 0.4));
    border-radius: 2px;
    filter: blur(10px);
    opacity: 0.8;
    z-index: -1;
    transition: all 0.4s;
}

.cta-button:hover {
    transform: translate(-6px, -6px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.8),
        -6px -6px 20px rgba(255, 255, 255, 0.15),
        inset 3px 3px 6px rgba(255, 255, 255, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(192, 192, 192, 0.3);
    background: linear-gradient(145deg, #ffffff, #fafafa);
}

.cta-button:hover::before {
    opacity: 1;
    filter: blur(8px);
    inset: -2px;
}

.cta-button:active {
    transform: translate(-2px, -2px) scale(1.02);
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.7),
        -3px -3px 10px rgba(255, 255, 255, 0.1),
        inset 2px 2px 4px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.6);
}

.services-list {
    font-size: 0.85rem;
    color: #f5f5f5;
    margin-top: 1rem;
    letter-spacing: 1px;
    position: relative !important;
    z-index: 100 !important;
    font-weight: 700;
}

/* What You Get Section */
#what-you-get {
    background: linear-gradient(180deg, #1a0f1f, #3a2a4a);
    position: relative;
}

#what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1626621340829-5ce6d68b89f7?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: -1;
    filter: grayscale(20%) brightness(0.9);
}

#what-you-get::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(15, 15, 15, 0.4) 0%, 
        rgba(45, 55, 72, 0.3) 50%, 
        rgba(45, 55, 72, 0.4) 100%);
    z-index: -1;
}

#what-you-get .section-title,
#what-you-get .benefits-grid {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.9), rgba(15, 15, 15, 0.9));
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
    position: relative;
    z-index: 100;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.8),
        -4px -4px 12px rgba(65, 105, 225, 0.1),
        inset 2px 2px 4px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(145deg, rgba(45, 55, 72, 1), rgba(15, 15, 15, 1));
    z-index: -1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.3), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(106, 69, 112, 0.2), 
        rgba(192, 192, 192, 0.2));
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.9),
        -6px -6px 20px rgba(106, 69, 112, 0.2),
        inset 3px 3px 6px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.benefit-card h3 {
    color: #f8f8ff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    line-height: 1.7;
    color: #fffff0;
    font-size: 0.95rem;
}
/* ===================================
   PART 2: Packages, Gallery, 
   Testimonials, Forms, and Footer
   =================================== */

/* Package Sections */
.package-section {
    background: linear-gradient(180deg, var(--charcoal-blue), var(--black));
    position: relative;
    overflow: hidden;
}

/* Wedding Section - Amethyst Royale */
#weddings {
    background: linear-gradient(180deg, #6a4560, #3a2538);
}

#weddings .section-title {
    color: #f8f8ff;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
}

#weddings .package-description {
    color: var(--wedding-text);
}

.package-section::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.2), rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.package-section::before {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.18), rgba(255, 255, 255, 0.12) 50%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite reverse;
    z-index: 0;
}

/* Wedding Section Glow Effects */
#weddings::after {
    background: radial-gradient(circle, rgba(232, 136, 255, 0.22), rgba(160, 128, 192, 0.15) 50%, transparent 70%);
}

#weddings::before {
    background: radial-gradient(circle, rgba(255, 196, 221, 0.20), rgba(212, 165, 165, 0.13) 50%, transparent 70%);
}

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

.package-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #fffff0;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.packages-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 500px;
    background: linear-gradient(180deg, 
        rgba(255, 0, 255, 0.25) 0%, 
        rgba(139, 92, 246, 0.2) 25%,
        rgba(255, 255, 0, 0.15) 50%,
        rgba(0, 255, 255, 0.2) 75%,
        rgba(255, 0, 255, 0.25) 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: colorShift 6s ease-in-out infinite;
}

.packages-container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 400px;
    height: 500px;
    background: linear-gradient(180deg, 
        rgba(0, 255, 255, 0.25) 0%, 
        rgba(201, 169, 97, 0.2) 25%,
        rgba(255, 0, 255, 0.15) 50%,
        rgba(139, 92, 246, 0.2) 75%,
        rgba(0, 255, 255, 0.25) 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: colorShift 6s ease-in-out infinite 3s;
}

@keyframes colorShift {
    0%, 100% {
        filter: blur(80px) hue-rotate(0deg);
        opacity: 0.8;
    }
    50% {
        filter: blur(100px) hue-rotate(90deg);
        opacity: 1;
    }
}

.package-card {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.95), rgba(15, 15, 15, 0.95));
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    transition: all 0.4s;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.8),
        -5px -5px 15px rgba(65, 105, 225, 0.12),
        inset 3px 3px 6px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Wedding Section Package Cards */
#weddings .package-card {
    background: linear-gradient(145deg, rgba(82, 64, 96, 0.95), rgba(63, 51, 77, 0.95));
}

#weddings .package-card li {
    color: #fffff0;
}

#weddings .package-card h3 {
    color: #f8f8ff;
}

/* Premium Package Styles */
.package-card:nth-child(1) {
    border: 2px solid rgba(65, 105, 225, 0.4);
}

.package-card:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(65, 105, 225, 0.5), rgba(70, 130, 180, 0.5));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.package-card:nth-child(1):hover::before {
    opacity: 1;
}

.package-card:nth-child(1):hover {
    transform: translate(-12px, -12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px rgba(65, 105, 225, 0.3),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(65, 105, 225, 0.4);
    border-color: rgba(65, 105, 225, 0.8);
}

/* Wedding Section Premium Package */
#weddings .package-card:nth-child(1) {
    border: 2px solid var(--wedding-premium-border);
}

#weddings .package-card:nth-child(1)::before {
    background: linear-gradient(145deg, rgba(255, 184, 209, 0.5), rgba(244, 166, 184, 0.5));
}

#weddings .package-card:nth-child(1):hover {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px var(--wedding-premium-hover),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px var(--wedding-premium-hover),
        0 0 60px rgba(255, 255, 255, 0.2);
    border-color: var(--wedding-premium-hover-border);
}

/* Luxury Package Styles */
.package-card:nth-child(2) {
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.package-card:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(240, 240, 240, 0.5));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.package-card:nth-child(2):hover::before {
    opacity: 1;
}

.package-card:nth-child(2):hover {
    transform: translate(-12px, -12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px rgba(255, 255, 255, 0.3),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Wedding Section Luxury Package */
#weddings .package-card:nth-child(2) {
    border: 2px solid var(--wedding-luxury-border);
}

#weddings .package-card:nth-child(2)::before {
    background: linear-gradient(145deg, rgba(232, 136, 255, 0.5), rgba(218, 112, 214, 0.5));
}

#weddings .package-card:nth-child(2):hover {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px var(--wedding-luxury-hover),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px var(--wedding-luxury-hover),
        0 0 60px rgba(192, 192, 192, 0.2);
    border-color: var(--wedding-luxury-hover-border);
}

/* Private Events Section - Midnight Diamond */
#private-events {
    background: linear-gradient(180deg, #1e2434, #1a1f2e);
}

#private-events .section-title {
    color: var(--private-title);
}

#private-events .package-description {
    color: var(--private-text);
}

#private-events .package-card {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.95), rgba(15, 20, 25, 0.95));
}

#private-events .package-card li {
    color: var(--private-text);
}

#private-events .package-card h3 {
    color: var(--private-title);
}

#private-events::after {
    background: radial-gradient(circle, rgba(232, 227, 216, 0.15), rgba(184, 184, 176, 0.12) 50%, transparent 70%);
}

#private-events::before {
    background: radial-gradient(circle, rgba(247, 231, 206, 0.12), rgba(201, 169, 97, 0.08) 50%, transparent 70%);
}

/* Private Events Premium Package */
#private-events .package-card:nth-child(1) {
    border: 2px solid var(--private-premium-border);
}

#private-events .package-card:nth-child(1)::before {
    background: linear-gradient(145deg, rgba(248, 248, 248, 0.4), rgba(232, 232, 232, 0.4));
}

#private-events .package-card:nth-child(1):hover {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px var(--private-premium-hover),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px var(--private-premium-hover),
        0 0 60px rgba(248, 248, 248, 0.3);
    border-color: rgba(248, 248, 248, 0.8);
}

/* Private Events Luxury Package */
#private-events .package-card:nth-child(2) {
    border: 2px solid var(--private-luxury-border);
}

#private-events .package-card:nth-child(2)::before {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.5), rgba(218, 165, 32, 0.5));
}

#private-events .package-card:nth-child(2):hover {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px var(--private-luxury-hover),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px var(--private-luxury-hover),
        0 0 60px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.package-card::after {
    content: '';
    position: absolute;
    font-size: 25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
    color: var(--gold);
    filter: blur(3px);
    z-index: 0;
}

.package-card h3,
.package-card ul {
    position: relative;
    z-index: 1;
}

.package-card h3 {
    color: #f8f8ff;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-card li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #f0f0f0;
    font-size: 0.95rem;
}

.package-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

/* Corporate Section */
.corporate-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Corporate Section - Business Sophistication */
#corporate {
    background: linear-gradient(180deg, #2d4a6f, #1f2e4d);
}

#corporate .section-title {
    color: #f8f8ff;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
}

#corporate .package-description {
    color: var(--corporate-text);
}

#corporate .package-card {
    background: linear-gradient(145deg, rgba(20, 38, 62, 0.95), rgba(10, 22, 40, 0.95));
}

#corporate .package-card li {
    color: #fffff0;
}

#corporate .package-card h3 {
    color: #f8f8ff;
}

#corporate::after {
    background: radial-gradient(circle, rgba(70, 130, 180, 0.18), rgba(65, 105, 225, 0.12) 50%, transparent 70%);
}

#corporate::before {
    background: radial-gradient(circle, rgba(211, 211, 211, 0.12), rgba(176, 196, 222, 0.08) 50%, transparent 70%);
}

.corporate-container .package-card {
    border: 2px solid var(--corporate-border);
}

.corporate-container .package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(70, 130, 180, 0.5), rgba(65, 105, 225, 0.5));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.corporate-container .package-card:hover::before {
    opacity: 1;
}

.corporate-container .package-card:hover {
    transform: translate(-12px, -12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.9),
        -8px -8px 30px var(--corporate-hover),
        inset 4px 4px 10px rgba(255, 255, 255, 0.1),
        0 0 40px var(--corporate-hover);
    border-color: var(--corporate-hover);
}

.corporate-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6);
}

/* Gallery Section */
#gallery {
    background: linear-gradient(180deg, #2d3d5d, #2d3748);
    position: relative;
    overflow: hidden;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.15), transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
}

#gallery::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.gallery-container {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.8),
        -8px -8px 20px rgba(65, 105, 225, 0.15),
        inset 3px 3px 6px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.4s ease;
}

.gallery-slide img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(20px);
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.9),
        -10px -10px 30px rgba(65, 105, 225, 0.2),
        inset 4px 4px 8px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--black);
    border: none;
    padding: 0.9rem 1.2rem;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
    font-weight: 700;
}

.gallery-container:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.gallery-prev {
    left: -60px;
}

.gallery-next {
    right: -60px;
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(180deg, #1a3a28, #2a6a78);
    position: relative;
    overflow: hidden;
}

#testimonials .package-description {
    color: #ffffff;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.18), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
}

#testimonials::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite 2s;
}

.testimonial-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 450px;
}

.testimonial-slide {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-content {
    background: linear-gradient(145deg, rgba(42, 106, 120, 0.9), rgba(26, 58, 40, 0.9));
    padding: 3rem 5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, 
        rgba(26, 90, 60, 0.4), 
        rgba(15, 45, 35, 0.6),
        rgba(8, 25, 18, 0.75));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.testimonial-content:hover::before {
    opacity: 1;
}

.testimonial-content > * {
    position: relative;
    z-index: 2;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(26, 90, 60, 0.2), 
        rgba(192, 192, 192, 0.2));
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.testimonial-content:hover::after {
    opacity: 1;
}

.testimonial-content:hover {
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.9),
        -6px -6px 20px rgba(26, 90, 60, 0.2),
        inset 3px 3px 6px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: -1;
}

.event-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f8f8ff;
    color: var(--black);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.8;
    color: #fffff0;
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.quote-mark {
    font-size: 2.25rem;
    color: #f8f8ff;
    font-family: 'Bungee Shade', cursive;
    font-weight: 400;
    margin: 0 0.2rem;
    line-height: 1;
}

.testimonial-text.short .quote-mark {
    font-size: 1.8rem;
}

.testimonial-text.long .quote-mark {
    font-size: 1.7rem;
}

.testimonial-text.very-long .quote-mark {
    font-size: 1.5rem;
}

.testimonial-text.long {
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial-text.very-long {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--black);
    border: none;
    padding: 0.88rem 1.1rem;
    font-size: 1.65rem; 
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
    font-weight: 700;
    line-height: 1;
}

.testimonial-content:hover .testimonial-nav {
    opacity: 1;
}

.testimonial-nav:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Form Section */
#intake-form {
    background: linear-gradient(180deg, #3a2a4a, #1a0f1f);
    position: relative;
    overflow: hidden;
}

#intake-form::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.12), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

#intake-form::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: float 12s ease-in-out infinite reverse;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.9), rgba(15, 15, 15, 0.9));
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, 
        rgba(106, 69, 112, 0.4), 
        rgba(58, 42, 74, 0.6),
        rgba(26, 15, 31, 0.75));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.form-container:hover::before {
    opacity: 1;
}

.form-container > * {
    position: relative;
    z-index: 2;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #f8f8ff;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fffff0;
    font-size: 0.95rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
}

/* Make calendar icon platinum */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(2) invert(1);
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: brightness(2.5) invert(1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select option {
    background: rgba(15, 15, 15, 0.95);
    color: #fffff0;
    padding: 0.5rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(15, 15, 15, 0.9);
}

/* Prevent autofill from changing colors */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(15, 15, 15, 0.8) inset !important;
    -webkit-text-fill-color: #f5f5f5 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select:hover {
    border-color: #ffffff;
    background-color: rgba(15, 15, 15, 0.9);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #d0d0d0;
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

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

.required-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: #f8f8ff;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    text-transform: none;
}

.form-error-banner {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.15), rgba(255, 50, 50, 0.15));
    border: 2px solid #ff6b6b;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
    display: none;
}

.form-error-banner.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.form-error-banner h3 {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

.form-error-banner ul {
    list-style: none;
    margin-left: 0;
}

.form-error-banner li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.form-error-banner li::before {
    content: '✕ ';
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Styles */
.form-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
    font-style: italic;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* Footer */
footer {
    background: var(--black);
    padding: 2rem;
    text-align: center;
    color: #f8f8ff;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Floating Social Bar */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.6),
        -2px -2px 6px rgba(255, 255, 255, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        5px 5px 14px rgba(0, 0, 0, 0.8),
        -3px -3px 10px rgba(255, 255, 255, 0.15),
        inset 2px 2px 4px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.scroll-top-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, var(--accent), #5a7fd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.6),
        -2px -2px 6px rgba(65, 105, 225, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: none;
}

.scroll-top-icon:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        5px 5px 14px rgba(0, 0, 0, 0.8),
        -3px -3px 10px rgba(65, 105, 225, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(65, 105, 225, 0.6);
    background: linear-gradient(145deg, #5a7fd4, #7a9ee6);
}

.scroll-top-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Responsive scaling - dynamic sizing based on screen width */
@media (min-width: 1920px) {
    .social-icon,
    .scroll-top-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .scroll-top-icon svg {
        width: 22px;
        height: 22px;
    }

    .floating-social {
        right: 25px;
        gap: 12px;
    }
}

@media (max-width: 1440px) {
    .social-icon,
    .scroll-top-icon {
        width: 30px;
        height: 30px;
    }

    .social-icon svg {
        width: 17px;
        height: 17px;
    }

    .scroll-top-icon svg {
        width: 19px;
        height: 19px;
    }

    .floating-social {
        gap: 9px;
    }
}

@media (max-width: 1024px) {
    .social-icon,
    .scroll-top-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .scroll-top-icon svg {
        width: 18px;
        height: 18px;
    }

    .floating-social {
        right: 15px;
        gap: 8px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-container {
        grid-template-columns: 1fr;
    }

    .gallery-nav {
        padding: 0.7rem 1rem;
        font-size: 1.4rem;
    }

    .gallery-prev {
        left: -50px;
    }

    .gallery-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .social-icon,
    .scroll-top-icon {
        width: 26px;
        height: 26px;
    }

    .social-icon svg {
        width: 15px;
        height: 15px;
    }

    .scroll-top-icon svg {
        width: 17px;
        height: 17px;
    }

    .floating-social {
        right: 12px;
        gap: 7px;
    }

    #landing h1 {
        font-size: 2.2rem;
    }

    .event-types {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.1rem;
    }

    .event-types .event-section {
        width: 100%;
    }

    .event-types .separator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .gallery-container,
    .testimonial-container {
        min-height: auto;
    }

    .gallery-nav {
        padding: 0.6rem 0.8rem;
        font-size: 1.2rem;
    }

    .gallery-prev {
        left: 0;
    }

    .gallery-next {
        right: 0;
    }

    .gallery-nav {
        opacity: 0.7;
    }

    .testimonial-content {
        padding: 2rem 3.5rem;
        min-height: auto;
    }

    .testimonial-nav {
        padding: 0.5rem 0.7rem;
        font-size: 1.2rem;
        opacity: 0.6;
    }

    .testimonial-content:hover .testimonial-nav {
        opacity: 1;
    }

    .testimonial-prev {
        left: 0.5rem;
    }
    
    .testimonial-next {
        right: 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial-text.long {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .testimonial-text.very-long {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-text::before {
        font-size: 3rem;
        left: 1rem;
        top: 2.5rem;
    }

    .event-type-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .benefits-grid,
    .packages-container {
        grid-template-columns: 1fr;
    }

    .testimonial-prev {
        left: 0;
    }
    
    .testimonial-next {
        right: 0;
    }
    
    .testimonial-nav {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .social-icon,
    .scroll-top-icon {
        width: 24px;
        height: 24px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .scroll-top-icon svg {
        width: 16px;
        height: 16px;
    }

    .floating-social {
        right: 10px;
        gap: 6px;
    }
}

@media (max-width: 1200px) {
    .testimonial-nav {
        padding: 0.6rem 0.8rem;
        font-size: 1.3rem;
    }
    
    .testimonial-prev {
        left: 1rem;
    }
    
    .testimonial-next {
        right: 1rem;
    }
}
