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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'The Jamsil', 'Public Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3061AB;
    border: 2px solid #3061AB;
}

.btn-secondary:hover {
    background: #3061AB;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3061AB;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3061AB;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Hero Booth Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Video Styles */
.hero-video-container {
    position: relative;
    width: 600px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(48, 97, 171, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(48, 97, 171, 0.1) 0%, rgba(74, 123, 200, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-container:hover .video-overlay {
    opacity: 1;
}

.video-content {
    text-align: center;
    color: white;
    background: rgba(48, 97, 171, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.video-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.video-content p {
    font-size: 1.1rem;
    font-weight: 600;
}\n\n.video-content small {\n    font-size: 0.9rem;\n    opacity: 0.8;\n    font-weight: 400;\n}\n\n.video-overlay:hover {\n    background: linear-gradient(45deg, rgba(48, 97, 171, 0.2) 0%, rgba(74, 123, 200, 0.2) 100%) !important;\n}\n\n.video-overlay:active {\n    transform: scale(0.98);\n}

.hero-booth {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.booth-frame {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.booth-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photo-preview {
    text-align: center;
    color: white;
}

.photo-preview i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9ff;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Booth Types */
.booth-types {
    padding: 100px 0;
}

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

.booth-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.booth-card:hover {
    transform: translateY(-10px);
}

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

.booth-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 3rem;
}

.booth-placeholder.traditional {
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
}

.booth-placeholder.mirror {
    background: linear-gradient(135deg, #4a7bc8 0%, #6b9bd9 100%);
}

.booth-placeholder.three-sixty {
    background: linear-gradient(135deg, #2d5aa0 0%, #4a7bc8 100%);
}

.booth-placeholder.glambot {
    background: linear-gradient(135deg, #6b9bd9 0%, #8bb5ea 100%);
}

.booth-placeholder.headshots {
    background: linear-gradient(135deg, #8bb5ea 0%, #adc7f0 100%);
}

.booth-placeholder.video {
    background: linear-gradient(135deg, #1e3a8a 0%, #3061AB 100%);
}

.booth-placeholder.greenscreen {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.booth-placeholder.mobile {
    background: linear-gradient(135deg, #5a8bc9 0%, #7ba7d6 100%);
}

.booth-placeholder.socialwall {
    background: linear-gradient(135deg, #7ba7d6 0%, #9cc3e3 100%);
}

.booth-content {
    padding: 2rem;
}

.booth-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.booth-features {
    list-style: none;
    margin: 1.5rem 0;
}

.booth-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.booth-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3061AB;
    font-weight: bold;
}

.booth-price {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #666;
}

.booth-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3061AB;
}

.booth-perfect {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Technology Section */
.technology {
    background: #f8f9ff;
    padding: 100px 0;
}

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

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-card ul {
    list-style: none;
    margin-top: 1rem;
}

.tech-card li {
    padding: 0.3rem 0;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #3061AB;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #3061AB;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3061AB;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Events Section */
.events {
    background: #f8f9ff;
    padding: 100px 0;
}

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

.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.event-icon i {
    font-size: 2rem;
    color: white;
}

.event-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.event-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.event-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3061AB;
    font-weight: bold;
}

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

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

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 2rem;
}

.gallery-placeholder.corporate {
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
}

.gallery-placeholder.wedding {
    background: linear-gradient(135deg, #4a7bc8 0%, #6b9bd9 100%);
}

.gallery-placeholder.party {
    background: linear-gradient(135deg, #2d5aa0 0%, #4a7bc8 100%);
}

.gallery-placeholder.tech {
    background: linear-gradient(135deg, #6b9bd9 0%, #8bb5ea 100%);
}

.gallery-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
}

/* Testimonials */
.testimonials {
    background: #f8f9ff;
    padding: 100px 0;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #3061AB;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3061AB 0%, #4a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.business-hours h4 {
    margin-bottom: 1rem;
    color: #3061AB;
}

/* Contact Form */
.contact-form {
    background: #f8f9ff;
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Public Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3061AB;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3061AB;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3061AB;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .booth-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .features-grid,
    .tech-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .booth-card,
    .feature-card,
    .tech-card,
    .event-card,
    .testimonial-card {
        margin: 0 10px;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.video-content p {
    margin-bottom: 0.5rem;
}

.video-content small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.video-overlay:hover {
    background: linear-gradient(45deg, rgba(48, 97, 171, 0.2) 0%, rgba(74, 123, 200, 0.2) 100%) !important;
}

.video-overlay:active {
    transform: scale(0.98);
}

