/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(243, 232, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(147, 51, 234, 0.1);
}

.nav-home {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #9333EA;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-home i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.nav-home:hover {
    color: #8B5CF6;
    transform: translateY(-2px);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-arrow {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #9333EA;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    border: 2px solid #9333EA;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

.nav-arrow:hover {
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.nav-arrow.prev {
    flex-direction: row;
}

.nav-arrow.next {
    flex-direction: row-reverse;
}

.nav-arrow i {
    font-size: 1rem;
    margin: 0 0.5rem;
}

.nav-arrow span {
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%239333EA" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Floating Camera Icons Animation */
.hero-section::after {
    content: '📷';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239333EA"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
    animation: float 8s ease-in-out infinite reverse;
    opacity: 0.2;
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #9333EA;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 2rem;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-size: 4rem;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8B5CF6;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
    border: 4px solid #F3E8FF;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #9333EA, #8B5CF6, #A855F7, #9333EA);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #8B5CF6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Traditional Photobooth Section */
.traditional-photobooth {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

.feature-list i {
    color: #9333EA;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

/* Button Styling */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2D1B69, #4A148C);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 27, 105, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4A148C, #2D1B69);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 27, 105, 0.5);
}

.btn-secondary {
    background: #00CED1;
    color: white;
    border: 2px solid #00CED1;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

.btn-secondary:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

/* Image Content Styling */
.image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.2);
    transition: all 0.4s ease;
    border: 3px solid #F3E8FF;
}

.image-content img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.3);
}

/* Modern Photobooth Section */
.modern-photobooth {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #F8F5FF 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: #9333EA;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #9333EA;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Props & Accessories Section */
.props-accessories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.props-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
    position: relative;
}

.props-card::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.props-card:hover::after {
    opacity: 1;
    transform: rotate(360deg);
}

.props-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.props-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #9333EA;
    position: relative;
}

.props-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #9333EA, #8B5CF6, #A855F7, #9333EA);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.props-icon i {
    font-size: 2rem;
    color: #9333EA;
}

.props-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.props-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.props-card ul {
    list-style: none;
    text-align: left;
}

.props-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.props-card li::before {
    content: '📸';
    position: absolute;
    left: 0;
    color: #9333EA;
}

/* Backdrop Themes Section */
.backdrop-themes {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #F8F5FF 100%);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.theme-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.theme-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.theme-card:hover .theme-image img {
    transform: scale(1.1);
}

.theme-content {
    padding: 2rem;
}

.theme-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.theme-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.theme-content ul {
    list-style: none;
}

.theme-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.theme-content li::before {
    content: '🎨';
    position: absolute;
    left: 0;
    color: #9333EA;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-arrows {
        display: none;
    }
    
    .image-content {
        padding: 1rem;
    }
    
    .image-content img {
        height: 300px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .theme-image {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .image-content img {
        height: 250px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .theme-image {
        height: 180px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Technology Equipment Section */
.technology-equipment {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tech-option {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
}

.tech-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.tech-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tech-option:hover .tech-image img {
    transform: scale(1.1);
}

.tech-content {
    padding: 2rem;
}

.tech-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.tech-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-highlights span {
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    color: #9333EA;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #9333EA;
}

/* Packages & Services Section */
.packages-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #F8F5FF 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
    position: relative;
}

.package-card.featured {
    border: 3px solid #9333EA;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.duration {
    font-size: 1rem;
    opacity: 0.8;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.package-content li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #9333EA;
}

/* Entertainment Features Section */
.entertainment-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.entertainment-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
}

.entertainment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.entertainment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #9333EA;
}

.entertainment-icon i {
    font-size: 2rem;
    color: #9333EA;
}

.entertainment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.entertainment-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.entertainment-card ul {
    list-style: none;
    text-align: left;
}

.entertainment-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.entertainment-card li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #9333EA;
}

/* Setup & Logistics Section */
.setup-logistics {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #F8F5FF 100%);
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.setup-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F3E8FF;
}

.setup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.setup-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.setup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.setup-card:hover .setup-image img {
    transform: scale(1.1);
}

.setup-content {
    padding: 2rem;
}

.setup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.setup-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.setup-content ul {
    list-style: none;
}

.setup-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.setup-content li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #9333EA;
}

/* Planning Process Section */
.planning-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, #9333EA, #8B5CF6);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    border: 2px solid #F3E8FF;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9333EA;
    font-weight: bold;
}

/* Responsive improvements for all image sections */
@media (max-width: 768px) {
    .tech-grid,
    .packages-grid,
    .entertainment-grid,
    .setup-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-image,
    .theme-image,
    .setup-image {
        height: 200px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin: 0 auto 1rem;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .tech-image,
    .theme-image,
    .setup-image {
        height: 180px;
    }
    
    .setup-content {
        padding: 1.5rem;
    }
    
    .setup-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .package-header {
        padding: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .entertainment-card {
        padding: 2rem 1.5rem;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1147 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23F3E8FF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #F3E8FF;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    border-radius: 1px;
}

.footer-section p {
    color: #E0E7FF;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #E0E7FF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9333EA;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F3E8FF;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.footer-section i {
    color: #9333EA;
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(243, 232, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #E0E7FF;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #F3E8FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #9333EA;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.1);
    border: 1px solid #F3E8FF;
}

.contact-item i {
    font-size: 1.5rem;
    color: #9333EA;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #9333EA;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.1);
    border: 2px solid #F3E8FF;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #F3E8FF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9333EA;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #8B5CF6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #F3E8FF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Footer and Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}