/* Modern Photography Website - InstaSelfiePrints */
/* ================================================ */

/* CSS Variables */
:root {
    --primary: #c44879;
    --primary-dark: #a03a63;
    --primary-light: #d46a94;
    --secondary: #222c36;
    --accent: #667eea;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - Fixed text formatting, kept background switching */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/header.jpg') 0px 0px no-repeat;
    background-size: cover;
    margin-top: 0;
    padding: 120px 20px 60px;
}

/* Responsive heights with background switch */
@media (max-width: 1080px) {
    .hero {
        min-height: 425px;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: 400px;
    }
}

@media (max-width: 810px) {
    .hero {
        min-height: 325px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 310px;
    }
}

@media (max-width: 667px) {
    .hero {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 290px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 250px;
    }
}

/* Switch to retro-photobooth.jpg on mobile */
@media (max-width: 424px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 580px;
    }
}

@media (max-width: 414px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 580px;
    }
}

@media (max-width: 390px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 480px;
    }
}

@media (max-width: 384px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 480px;
    }
}

@media (max-width: 375px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 480px;
    }
}

@media (max-width: 360px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
					url('../images/header.jpg') 0px 0px no-repeat;
        background-size: cover;
        min-height: 480px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(196,72,121,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--white);
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

/* Hero Price Tag */
.hero-price {
    margin: 2rem 0;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-tag strong {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Responsive Typography - Clean and centered */
@media (max-width: 1080px) {
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.5rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 991px) {
    .hero h1 { font-size: 2.25rem; }
    .hero h2 { font-size: 1.35rem; }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 50px;
    }
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.25rem; }
    .hero p { font-size: 1rem; }
    .price-tag {
        font-size: 1.25rem;
        padding: 10px 24px;
    }
    .price-tag strong {
        font-size: 1.75rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 80px 20px 40px;
    }
    .hero h1 { font-size: 1.75rem; }
    .hero h2 { font-size: 1.1rem; }
    .price-tag {
        font-size: 1.1rem;
        padding: 10px 20px;
        line-height: 1.6;
    }
    .price-tag strong {
        font-size: 1.5rem;
    }
    .old-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero h2 { font-size: 1rem; }
    .hero p { font-size: 0.9rem; }
    .hero-price {
        margin: 1.5rem 0;
    }
    .price-tag {
        font-size: 1rem;
        padding: 10px 18px;
        border-radius: 40px;
    }
    .price-tag strong {
        font-size: 1.35rem;
    }
    .old-price {
        font-size: 0.9rem;
    }
}

/* For retro-photobooth background - adjust text for better visibility */
@media (max-width: 424px) {
    .hero-content {
        padding-top: 80px;
    }
    .hero h1 { 
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .hero h2 { 
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .hero p { 
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 390px) {
    .hero-content {
        padding-top: 60px;
    }
    .hero h1 { font-size: 1.35rem; }
    .hero h2 { font-size: 0.95rem; }
}

@media (max-width: 375px) {
    .hero h1 { font-size: 1.25rem; }
    .hero h2 { font-size: 0.9rem; }
    .price-tag {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    .price-tag strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .hero h1 { font-size: 1.1rem; }
    .hero h2 { font-size: 0.85rem; }
    .price-tag {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .price-tag strong {
        font-size: 1.1rem;
    }
    .old-price {
        font-size: 0.8rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 0.95rem;
}

.features-cta {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.features-cta h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.features-cta h4 {
    color: var(--secondary);
    margin: 20px 0;
}

/* Booth Types Section */
.booth-types {
    padding: 60px 0;
    background: var(--primary);
}

.booth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.booth-card {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
}

.booth-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booth-icon i {
    font-size: 36px;
    color: var(--white);
}

.booth-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.booth-card p {
    color: rgba(255,255,255,0.9);
}

/* Options Section */
.options {
    padding: 80px 0;
    background: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-card {
    display: flex;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.option-card:hover {
    box-shadow: var(--shadow-md);
}

.option-image {
    flex: 1;
    max-width: 200px;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.option-content {
    flex: 2;
    padding: 25px;
}

.option-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.option-content .price {
    margin-bottom: 15px;
}

.option-content .price strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.responsive-iframe {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* About Section */
.about {
    padding: 100px 0;
    background: url('../images/about.jpg') center/cover no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.tabs {
    max-width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-content {
    display: none;
}

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

.pricing-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.pricing-highlight h3,
.pricing-highlight h4,
.pricing-highlight p,
.pricing-highlight li {
    color: var(--white);
}

.pricing-image {
    margin-bottom: 20px;
}

.pricing-image img {
    width: 100%;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--primary);
}

.price-large {
    font-size: 1.1rem;
    margin: 15px 0;
}

.price-large strong {
    font-size: 2rem;
    color: var(--primary);
}

.pricing-highlight .price-large strong {
    color: var(--white);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

.pricing-highlight .features-list li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.pricing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.pricing-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 40px;
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--primary);
}

.contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 1.3rem;
}

.contact-phone i {
    font-size: 24px;
}

.quick-links {
    margin-top: 40px;
}

.quick-links h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196,72,121,0.1);
}

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

.hidden {
    display: none;
}

.show {
    display: inline-block;
}

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

.social-links a {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer a {
    color: var(--primary-light);
}

.footer a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* Gallery Embed */
.gallery-embed {
    padding: 60px 0;
    background: var(--light-bg);
}

.gallery-container-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.gallery-container-modern object {
    border-radius: var(--border-radius-sm);
    background: var(--white);
}

/* Thank You Page */
.thankyou-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.thankyou-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.thankyou-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease;
}

.thankyou-icon i {
    font-size: 80px;
    color: var(--white);
    background: rgba(255,255,255,0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.thankyou-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.thankyou-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thankyou-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.info-item i {
    font-size: 18px;
    color: var(--white);
}

.info-item span {
    color: var(--white);
    font-size: 1rem;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thankyou-actions .btn i {
    font-size: 18px;
}

.thankyou-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.thankyou-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.whats-next {
    padding: 80px 0;
    background: var(--light-bg);
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(196,72,121,0.1);
    line-height: 1;
}

.step-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thankyou-cta {
    padding: 60px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d3748 100%);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--white);
}

.social-btn i {
    font-size: 24px;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .next-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active { left: 0; }
    .mobile-toggle { display: flex; }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.5rem; }
    
    .features-grid { grid-template-columns: 1fr; }
    .booth-grid { grid-template-columns: 1fr; }
    
    .option-card { flex-direction: column; }
    .option-image { max-width: 100%; }
    
    .pricing-grid,
    .pricing-footer { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-content { margin-left: 0; padding: 30px; }
    
    .tab-buttons { flex-direction: column; align-items: stretch; }
    .tab-btn { width: 100%; }
    
    .thankyou-info { flex-direction: column; gap: 15px; align-items: center; }
    .info-item { width: 100%; max-width: 280px; justify-content: center; }
    .thankyou-actions { flex-direction: column; align-items: center; }
    .thankyou-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .next-steps { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 25px; }
    .social-links-large { flex-direction: column; align-items: center; }
    .social-btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero { padding: 100px 15px 40px; }
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.25rem; }
    
    .btn-large { padding: 14px 28px; font-size: 1rem; }
    .features-cta { padding: 25px 15px; }
    .contact-form { padding: 25px 20px; }
    .social-links a { width: 50px; height: 50px; font-size: 24px; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    
    .thankyou-content h1 { font-size: 2rem; }
    .thankyou-content p { font-size: 1rem; }
    .thankyou-icon i { font-size: 50px; width: 80px; height: 80px; line-height: 80px; }
    .step-card { padding: 30px 20px; }
    .cta-box h3 { font-size: 1.5rem; }
}

@media (max-width: 375px) {
    .price-tag { font-size: 0.95rem; padding: 10px 14px; }
    .price-tag strong { font-size: 1.25rem; }
}

@media (max-width: 320px) {
    .price-tag { font-size: 0.85rem; padding: 8px 12px; }
    .price-tag strong { font-size: 1.1rem; }
}

/* Print Styles */
@media print {
    .navbar, .back-to-top, .social-links, .btn { display: none !important; }
    .hero { min-height: auto; padding: 40px 20px; }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .social-links,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }
}


/* Page Hero (for galleries and other pages) */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* Gallery Embed Section */
.gallery-embed {
    padding: 60px 0;
    background: var(--light-bg);
}

.gallery-container-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.gallery-container-modern object {
    border-radius: var(--border-radius-sm);
    background: var(--white);
}


/* ================================================ */
/* THANK YOU PAGE STYLES                            */
/* ================================================ */

/* Thank You Hero Section */
.thankyou-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.thankyou-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.thankyou-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease;
}

.thankyou-icon i {
    font-size: 80px;
    color: var(--white);
    background: rgba(255,255,255,0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thankyou-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.thankyou-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thankyou-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.info-item i {
    font-size: 18px;
    color: var(--white);
}

.info-item span {
    color: var(--white);
    font-size: 1rem;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thankyou-actions .btn i {
    font-size: 18px;
}

.thankyou-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.thankyou-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* What's Next Section */
.whats-next {
    padding: 80px 0;
    background: var(--light-bg);
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(196,72,121,0.1);
    line-height: 1;
}

.step-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Thank You CTA Section */
.thankyou-cta {
    padding: 60px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d3748 100%);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--white);
}

.social-btn i {
    font-size: 24px;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments for Thank You Page */
@media (max-width: 1024px) {
    .next-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-icon i {
        font-size: 60px;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    
    .thankyou-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .info-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-box h3 {
        font-size: 1.75rem;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content p {
        font-size: 1rem;
    }
    
    .thankyou-icon i {
        font-size: 50px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}