/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc143c;
    --secondary-color: #8b0000;
    --accent-color: #ff1744;
    --vintage-gold: #ff6b6b;
    --vintage-cream: #1a1a1a;
    --vintage-brown: #2d0000;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --white: #0d0d0d;
    --light-gray: #1a1a1a;
    --dark-gray: #333333;
    --gradient-primary: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    --gradient-secondary: linear-gradient(135deg, #ff1744 0%, #c41e3a 100%);
    --vintage-gradient: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #5a0000 100%);
    --shadow: 0 15px 35px rgba(220, 20, 60, 0.3);
    --shadow-hover: 0 25px 50px rgba(220, 20, 60, 0.4);
    --vintage-shadow: 0 8px 32px rgba(220, 20, 60, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 15px;
    --max-width: 1200px;
    --bg-dark: #0d0d0d;
    --bg-darker: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #0d0d0d;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0d0d0d !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(220, 20, 60, 0.3);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.book-btn {
    background: var(--gradient-primary);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.book-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 20, 60, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes rotate3d {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.05); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-info {
    margin-bottom: 2rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.phone-number i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.phone-number a:hover {
    color: var(--secondary-color);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 26, 0.8);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-weight: 500;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--vintage-gradient);
    color: #ffffff;
    box-shadow: var(--vintage-shadow);
    border: 2px solid rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vintage-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.photobooth-mockup {
    width: 320px;
    height: 420px;
    background: var(--vintage-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        var(--shadow-hover),
        inset 0 0 30px rgba(218, 165, 32, 0.2),
        0 0 0 3px rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
    animation: vintage3d 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.photobooth-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    opacity: 0.95;
    box-shadow: inset 0 5px 15px rgba(220, 20, 60, 0.2);
}

.photobooth-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(220, 20, 60, 0.08) 50%, transparent 52%);
    border-radius: 25px;
    animation: shimmer 4s ease-in-out infinite alternate;
}

.photobooth-mockup i {
    font-size: 4.5rem;
    color: var(--primary-color);
    z-index: 1;
    position: relative;
    animation: pulse3d 3s ease-in-out infinite;
    text-shadow: 2px 2px 8px rgba(220, 20, 60, 0.5);
}

@keyframes vintage3d {
    0%, 100% { 
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateZ(0px);
    }
    50% { 
        transform: perspective(1000px) rotateY(5deg) rotateX(-2deg) translateZ(10px);
    }
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes pulse3d {
    0%, 100% { 
        transform: scale(1) rotateZ(0deg);
        text-shadow: 2px 2px 8px rgba(220, 20, 60, 0.5);
    }
    50% { 
        transform: scale(1.1) rotateZ(2deg);
        text-shadow: 4px 4px 12px rgba(220, 20, 60, 0.6);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 auto 1.2rem;
    position: relative;
    letter-spacing: 0.04em;
}

.section-title::after {
    content: '';
    display: block;
    .hero-description {
        font-size: 1rem;
    }

    .phone-number {
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    width: 70px;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--vintage-gradient);
    border-radius: 999px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 720px;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-top: 25px;
}

.step {
    text-align: center;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--vintage-shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(220, 20, 60, 0.2);
    overflow: visible;
    margin-top: 25px;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vintage-gradient);
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(220, 20, 60, 0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--vintage-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: var(--vintage-shadow);
    border: 4px solid #0d0d0d;
    z-index: 10;
}

.step-icon {
    margin: 1rem 0;
}

.step-icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(220, 20, 60, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--vintage-shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vintage-gradient);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(220, 20, 60, 0.5);
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: var(--vintage-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--vintage-shadow);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.feature-icon i {
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(220, 20, 60, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Perfect For Any Occasion Section */
.occasions {
    padding: 80px 0;
    background: #0d0d0d;
    position: relative;
}

.occasions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.occasion-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--vintage-shadow);
    transition: var(--transition);
    border: 2px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.occasion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vintage-gradient);
}

.occasion-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(220, 20, 60, 0.5);
}

.occasion-icon {
    width: 70px;
    height: 70px;
    background: var(--vintage-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--vintage-shadow);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.occasion-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(220, 20, 60, 0.5);
}

.occasion-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Enquiry Section */
.enquiry {
    background: #1a1a1a;
    position: relative;
}

.enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Panel */
.contact-panel {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--vintage-shadow);
    border: 2px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--vintage-gradient);
}

.contact-info-card > h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.contact-info-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(220, 20, 60, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-info-card .contact-icon {
    width: 40px;
    height: 40px;
    background: var(--vintage-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .contact-icon i {
    font-size: 1rem;
    color: #ffffff;
}

.contact-info-card .contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-info-card .contact-details p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info-card .contact-details span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-info-card .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card .contact-details a:hover {
    color: var(--accent-color);
}

.pricing-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
}

.pricing-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-display span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.features-mini {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-mini li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-mini i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}



.enquiry-form {
    background: #0d0d0d;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--vintage-shadow);
    border: 2px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.enquiry-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--vintage-gradient);
}

.enquiry-form > h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.enquiry-form > h3::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--vintage-gradient);
}

.enquiry-form > h3::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--vintage-gradient);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1.5rem;
}



.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: rgba(26, 26, 26, 0.5);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
}



.full-width {
    width: 100%;
    justify-content: center;
}


/* Contact Page */
.page-contact {
    background: #0d0d0d;
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
}

.contact-hero {
    text-align: center;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.3rem;
    border-radius: 999px;
    background: rgba(220, 20, 60, 0.15);
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 1.4rem;
}

.contact-hero-badge i {
    color: var(--primary-color);
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
}

.contact-hero p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 60px;
}

.contact-info-card--page {
    padding: 2.8rem;
}

.contact-info-intro {
    color: var(--text-light);
    text-align: center;
    margin: 0 auto 1.8rem;
    max-width: 360px;
}

.contact-info-card--page .contact-item {
    background: rgba(220, 20, 60, 0.1);
}

.contact-info-card--page .contact-details h4 {
    font-size: 1.05rem;
}

.contact-info-card--page .contact-details span {
    color: var(--text-light);
}

.contact-info-card--page .contact-details a {
    color: var(--primary-color);
}

.contact-info-note {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(139, 0, 0, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--text-dark);
}

.contact-info-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.contact-form-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.contact-form-card h3 {
    justify-content: center;
}

.contact-form-card h3 i {
    color: var(--primary-color);
}

.contact-form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form-note {
    margin-top: 1.2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-note i {
    color: var(--primary-color);
}

.contact-quick-actions {
    background: linear-gradient(120deg, rgba(220, 20, 60, 0.12) 0%, rgba(139, 0, 0, 0.18) 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    box-shadow: var(--vintage-shadow);
    margin-bottom: 70px;
}

.contact-quick-actions-content {
    text-align: center;
}

.contact-quick-actions-content h3 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-quick-actions-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-quick-actions-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-quick-actions-buttons a {
    min-width: 180px;
}

.contact-faq {
    margin-bottom: 80px;
}

.contact-section-title {
    text-align: center;
    font-size: 2.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.contact-faq-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--vintage-shadow);
    border: 1px solid rgba(220, 20, 60, 0.2);
    transition: var(--transition);
}

.contact-faq-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.contact-faq-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-faq-item a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-faq-item a:hover {
    color: var(--accent-color);
}

.contact-brand-panel {
    background: linear-gradient(140deg, #1a0000 0%, #2d0000 45%, #0d0d0d 100%);
    color: var(--text-dark);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.contact-brand-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.contact-brand-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.contact-brand-subtext {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-brand-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-brand-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    background: rgba(220, 20, 60, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    color: var(--text-dark);
}

.contact-brand-stat i {
    color: var(--primary-color);
}


.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
    z-index: 1100;
    transition: var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 45px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-float:focus {
    outline: none;
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

.whatsapp-float i {
    font-size: 1.9rem;
}



/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 50px 0 20px;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.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: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .contact-info-card--page,
    .contact-form-card {
        padding: 2.4rem;
    }

    .contact-hero h1 {
        font-size: 2.4rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0d0d0d;
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero::before {
        opacity: 0.45;
    }

    .hero::after {
        content: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-number {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        order: 2;
        margin-top: 10px;
    }

    .occasions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .occasion-item {
        padding: 1.5rem 0.8rem;
    }
    
    .occasion-icon {
        width: 60px;
        height: 60px;
    }
    
    .occasion-icon i {
        font-size: 1.5rem;
    }
    
    .occasion-item h3 {
        font-size: 1.1rem;
    }
    
    .enquiry-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-card .contact-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .enquiry-form {
        padding: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .photobooth-mockup {
        width: 250px;
        height: 320px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section-title::after {
        width: 60px;
    }

    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.8rem;
    }

    .page-contact {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .contact-hero {
        margin-bottom: 50px;
    }

    .contact-hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1.1rem;
    }

    .contact-quick-actions {
        padding: 3rem 2.2rem;
        border-radius: 18px;
    }

    .contact-brand-panel {
        padding: 3.2rem 2.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero::before {
        opacity: 0.4;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.03em;
    }

    .section-title::after {
        width: 45px;
        height: 2px;
        margin-top: 0.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.4rem;
    }

    .contact-hero h1 {
        font-size: 2.1rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info-card--page,
    .contact-form-card {
        padding: 2rem 1.6rem;
    }

    .contact-quick-actions {
        padding: 2.5rem 1.6rem;
    }

    .contact-quick-actions-buttons a {
        width: 100%;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-brand-panel {
        padding: 2.8rem 1.8rem;
    }

    .contact-brand-stats {
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .occasion-item {
        padding: 1.2rem 0.5rem;
    }
    
    .occasion-icon {
        width: 50px;
        height: 50px;
    }
    
    .occasion-icon i {
        font-size: 1.3rem;
    }
    
    .occasion-item h3 {
        font-size: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-card .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .contact-info-card .contact-icon {
        margin: 0 auto;
    }
    
    .enquiry-form {
        padding: 1.5rem;
    }
    
    .enquiry-form > h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .enquiry-form > h3::before,
    .enquiry-form > h3::after {
        width: 50px;
    }
    
    .pricing-info {
        padding: 1.2rem;
    }
    
    .price-display {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float i {
        font-size: 1.7rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* Additional Dark Theme Styles */
main {
    background: #0d0d0d;
    color: var(--text-dark);
}

/* Policy Pages */
main > div > div[style*="background: white"],
main > div > div[style*="background:white"] {
    background: #1a1a1a !important;
    border: 2px solid rgba(220, 20, 60, 0.2) !important;
}

main h1[style*="color"],
main h2[style*="color"],
main h3[style*="color"] {
    color: var(--text-dark) !important;
}

main p[style*="color"],
main li {
    color: var(--text-light) !important;
}

main strong {
    color: var(--primary-color);
}

main ul, main ol {
    color: var(--text-light);
}

/* Select elements */
select {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
                      linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
                         calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

/* Placeholder text */
::placeholder {
    color: rgba(204, 204, 204, 0.5);
}

/* Feature section backgrounds */
.features {
    background: #0d0d0d;
}


@keyframes spin {
    to { transform: rotate(360deg); }
}