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

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

/* Skip link */
.skip-to-content {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-to-content:focus { left: 10px; top: 10px; width: auto; height: auto; background: #0f172a; color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 2001; }

/* Shared auth-required overlay (used by invoice page and tools) */
.auth-required-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.auth-required-content {
    background: #ffffff;
    color: #111827;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    text-align: center;
    max-width: 520px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Logo Styles */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -2px;
}



/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text h3 {
    color: #3498db;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo-subtitle {
    font-size: 0.8rem;
    color: #bdc3c7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem; /* tightened to remove extra spacing */
    align-items: center;
    flex-wrap: wrap;
}

/* Dropdown for Services */
.nav-menu li.dropdown { position: relative; }
.nav-menu li.dropdown > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.8em;
}
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 0;
    display: none;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 1003;
}
.nav-menu .dropdown-menu li a { white-space: nowrap; }
.nav-menu .dropdown-menu li { padding: 0; }
.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #1f2937;
}
.nav-menu .dropdown-menu a:hover { background: #f3f4f6; }
.nav-menu li.dropdown:hover > .dropdown-menu { display: block; }

@media (max-width: 768px) {
    .nav-menu .dropdown-menu { position: static; display: none; box-shadow: none; border: none; padding-left: 14px; }
    .nav-menu.active li.dropdown .dropdown-menu { display: block; }
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b6b;
}

/* Hide mobile-specific elements on desktop */
.mobile-close {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 12px 8px;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(44, 62, 80, 0.1);
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    margin: 4px 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 2px;
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Full-bleed event background with animated overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.55) saturate(1.15);
    transform: scale(1.02);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 15% 20%, rgba(14,165,233,0.22), transparent 60%),
                radial-gradient(900px 450px at 85% 80%, rgba(124,58,237,0.22), transparent 60%),
                linear-gradient(180deg, rgba(2,6,23,0.2), rgba(2,6,23,0.6));
    animation: auroraFloat 16s ease-in-out infinite;
}

    #home .hero-content {
        flex: 1;
        max-width: 600px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Remove old icon bubble hero image */
#home .hero-image, #home .image-placeholder { display: none; }

/* Event chips */
.event-chips { display:flex; flex-wrap:wrap; gap:8px; margin: 12px 0 18px; }
.chip {
    display:inline-block; padding:8px 12px; border-radius:999px;
    background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.25);
    color:#fff; text-decoration:none; font-weight:600; font-size:0.9rem;
    backdrop-filter: blur(6px); transition: transform .2s ease, background .2s ease;
}
.chip:hover { transform: translateY(-2px); background: rgba(255,255,255,0.22); }

/* Trust strip */
.trust-strip { margin-top: 18px; display:flex; align-items:center; gap:10px; opacity:.9; font-weight:600; }
.trust-label { opacity:.85; font-size:.9rem; }
.trust-brand { background: rgba(0,0,0,0.35); border:1px solid rgba(255,255,255,0.2); padding:6px 10px; border-radius:8px; font-size:.85rem; }
.trust-dot { opacity:.6; }

/* StudioLoopD promo chip */
.app-chip { display:inline-flex; align-items:center; gap:8px; margin-top:12px; padding:8px 12px; border-radius:999px; background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.25); color:#fff; text-decoration:none; font-weight:700; font-size:0.9rem; backdrop-filter: blur(6px); }
.app-chip i { opacity:.95; }
.app-chip:hover { transform: translateY(-1px); background: rgba(255,255,255,0.2); }

/* Footer powered by */
.powered-by { margin-top: 8px; color: #bdc3c7; font-size: 0.9rem; }
.powered-by a { color: #c7d2fe; text-decoration: none; font-weight: 700; }
.powered-by a:hover { text-decoration: underline; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
}

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

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

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

/* FAQ */
.faq { padding: 80px 0; background: #ffffff; }
.faq h2 { text-align: center; font-size: 2.2rem; color: #2c3e50; margin-bottom: .5rem; }
.faq .section-subtitle { text-align:center; margin-bottom: 2rem; color:#64748b; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-list details { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 1rem 1.25rem; font-weight: 600; color: #0f172a; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after { content: '+'; float: right; transition: transform .2s ease; color:#64748b; }
.faq-list details[open] summary:after { content: '–'; }
.faq-content { padding: 0 1.25rem 1rem; color:#475569; line-height: 1.6; }

@media (max-width: 768px) {
  .faq { padding: 60px 0; }
  .faq h2 { font-size: 1.8rem; }
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

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

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

/* Reimagined pricing hero */
.pricing-customize .customize-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(14,165,233,0.35), transparent 60%),
                radial-gradient(1000px 500px at 110% 10%, rgba(124,58,237,0.35), transparent 60%),
                linear-gradient(135deg, #0b1220 0%, #0f172a 45%, #111827 100%);
}
.pricing-customize .customize-hero::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.5) saturate(1.15);
    opacity: 0.35;
}
.pricing-customize .customize-hero .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 25% 10%, rgba(14,165,233,0.25), transparent 60%),
                radial-gradient(600px 300px at 75% 90%, rgba(124,58,237,0.25), transparent 60%);
    mix-blend-mode: screen;
    animation: auroraFloat 14s ease-in-out infinite;
}
.pricing-customize .customize-hero .content {
    position: relative;
    text-align: center;
    padding: 48px 24px;
    color: #e5e7eb;
}
.pricing-customize .customize-hero h2 {
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: .4px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #fff, #c7d2fe 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pricing-customize .customize-hero .section-subtitle {
    color: #cbd5e1;
    max-width: 820px;
    margin: 0 auto 24px;
}
.pricing-customize .customize-hero .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.pricing-customize .btn.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #7c3aed);
    border: none;
    color: #fff;
}
.pricing-customize .btn.btn-outline {
    border-color: rgba(255,255,255,.6);
    color: #e5e7eb;
}

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

/* subtle motion for the futuristic glow */
@keyframes auroraFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

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

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

.pricing-card.featured {
    border-color: #ff6b6b;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Price teaser (initially visible) */
.price-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    text-align: center;
}

.starting-at {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Full price (hidden initially) */
.price-full {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.period {
    font-size: 1rem;
    color: #666;
}

/* Pricing content (hidden initially) */
.pricing-content {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pricing-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing actions */
.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

/* Hide all explicit numeric prices across site */
.price,
.price-full,
.currency,
.amount,
.period,
.price-range,
.price-note {
    display: none !important;
}

/* Asking price UI removed */
.asking-price-inline { display: none !important; }
.asking-price-inline input[type="number"] { display: none !important; }
.asking-price-inline .btn { display: none !important; }

.reveal-pricing {
    transition: all 0.3s ease;
}

.reveal-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.get-quote {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.get-quote:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Lesson Pricing Styles */
.lesson-pricing {
    text-align: center;
    margin-top: 1.5rem;
}

.price-teaser {
    margin-bottom: 1rem;
}

.starting-at {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-range {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

/* Installation Pricing Styles */
.installation-pricing {
    text-align: center;
    margin-top: 1.5rem;
}

/* Pricing Details Sections */
.pricing-details, .installation-pricing-details {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-details h2, .installation-pricing-details h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-details .section-subtitle, .installation-pricing-details .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    font-size: 1.1rem;
}

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

.pricing-detail-card, .installation-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.pricing-detail-card h3, .installation-pricing-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-options, .pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-option, .pricing-tier {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.pricing-option h4, .pricing-tier h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-option .price, .pricing-tier .price {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-option .details, .pricing-tier .details {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.package-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.package-note p {
    color: #0c4a6e;
    font-size: 0.875rem;
    margin: 0;
}

.pricing-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.pricing-cta h3 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-details-grid, .installation-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-detail-card, .installation-pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff6b6b;
    font-weight: 700;
}

.stat p {
    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;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Checklist Styles */
.checklist-section {
    margin-bottom: 2rem;
}

.checklist-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e9ecef;
    border-color: #007bff;
}

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
    cursor: pointer;
}

.checklist-item label {
    margin: 0;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    flex: 1;
}

.checklist-item input[type="checkbox"]:checked + label {
    color: #007bff;
    font-weight: 600;
}

/* Responsive checklist */
@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist-item {
        padding: 0.5rem;
    }
}

/* Authentication Styles */
.auth-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.auth-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
    min-width: auto;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.user-email {
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Compact navigation for smaller screens */
@media (max-width: 1200px) {
    .auth-item {
        gap: 0.5rem;
    }
    
    .auth-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .user-email {
        padding: 5px 10px;
        font-size: 0.8rem;
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .auth-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        width: 100%;
    }
    .auth-btn {
        padding: 0.55rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .user-email {
        text-align: center;
        max-width: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5vh auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.4s ease-out;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #ff6b6b;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ee5a24;
    transform: rotate(90deg);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form p {
    text-align: center;
    margin-top: 1.5rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.auth-form a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-form a:hover {
    color: #ee5a24;
    text-decoration: underline;
}

/* Admin Modal Specific Styles */
#add-admin-modal .modal-content {
    max-width: 500px;
    max-height: 90vh;
    margin: 3vh auto;
}

#add-admin-modal .permissions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

#add-admin-modal .permission-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

#add-admin-modal .form-actions,
#edit-admin-modal .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#edit-admin-modal .modal-content {
    max-width: 500px;
    max-height: 90vh;
    margin: 3vh auto;
}

#edit-admin-modal .permissions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

#edit-admin-modal .permission-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Enhanced Form Styling for Auth Modal */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2c3e50;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: translateY(-1px);
}

.auth-form .form-group input::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

.auth-form .btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.auth-form .btn:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.auth-form .btn:active {
    transform: translateY(0);
}

/* Responsive auth */
@media (max-width: 768px) {
    .auth-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 2rem;
    }
    
    .auth-form h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .auth-form .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .auth-form .btn {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

/* Account Page Styles */
.account-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.account-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.account-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.account-hero-image {
    flex-shrink: 0;
}

.account-content {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.account-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.account-card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-card-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.account-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.account-card-content {
    padding: 2rem;
}

/* Profile Information */
.profile-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: #5f6368;
    font-size: 0.9rem;
}

.info-item p {
    margin: 0;
    color: #202124;
    font-weight: 500;
}

/* Submissions */
.submission-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.submission-type {
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.submission-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.submission-details p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #495057;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    text-align: center;
}

.action-btn:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 1.5rem;
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Settings */
.settings-list {
    margin-bottom: 2rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h4 {
    margin: 0 0 0.25rem 0;
    color: #202124;
    font-size: 1rem;
}

.setting-info p {
    margin: 0;
    color: #5f6368;
    font-size: 0.9rem;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff6b6b;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Stats */
.submissions-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.stat-item { text-align: center; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.25rem; display:flex; flex-direction:column; justify-content:center; }

.stat-number { display:block; font-size:2.1rem; font-weight:800; color:#0f172a; }

.stat-label { font-size:0.95rem; color:#64748b; font-weight:600; }

/* Loading and Empty States */
.loading-state, .empty-state, .error-state, .offline-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.loading-state i, .empty-state i, .error-state i, .offline-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state i {
    color: #dee2e6;
}

.error-state i {
    color: #e74c3c;
}

.offline-state i {
    color: #f39c12;
}

/* Offline Banner */
.offline-banner-content, .firebase-error-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offline-banner-content i {
    font-size: 1.2rem;
}

.offline-banner-content span {
    font-weight: 500;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

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

/* Offline Note */
.offline-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.offline-note-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #856404;
    font-size: 0.9rem;
}

.offline-note-content i {
    color: #f39c12;
    font-size: 1rem;
}

/* Offline Indicator - Subtle and Clean */
.offline-indicator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 10px 16px;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.offline-indicator:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offline-indicator-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.offline-indicator-content i {
    color: #6c757d;
    font-size: 0.9rem;
    opacity: 0.7;
}

.offline-indicator-content span {
    font-weight: 500;
    opacity: 0.8;
}

/* Authentication Required */
.auth-required {
    text-align: center;
    padding: 4rem 2rem;
}

.auth-required-content i {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.auth-required-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.auth-required-content p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive Account Page */
@media (max-width: 768px) {
    .account-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .account-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .account-card-content {
        padding: 1.5rem;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submissions-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Admin Dashboard Styles */
.admin-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.admin-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.admin-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
}

.admin-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card i {
    font-size: 2rem;
    opacity: 0.8;
}

.stat-info {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.admin-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.admin-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.admin-card-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.admin-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-card-content {
    padding: 2rem;
}

/* Client Items */
.client-item, .submission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.client-item:hover, .submission-item:hover {
    background-color: #f8f9fa;
}

.client-item:last-child, .submission-item:last-child {
    border-bottom: none;
}

.client-info, .submission-info {
    flex: 1;
}

.client-name, .submission-type {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.client-email, .submission-email {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.client-date, .submission-date {
    color: #95a5a6;
    font-size: 0.8rem;
}

.client-actions, .submission-actions {
    display: flex;
    gap: 0.5rem;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.analytics-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.analytics-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.analytics-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Status List */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.status-label {
    font-weight: 500;
    color: #2c3e50;
}

.status-value {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-value.online {
    background: #d4edda;
    color: #155724;
}

.status-value.offline {
    background: #f8d7da;
    color: #721c24;
}

.status-value.error {
    background: #fff3cd;
    color: #856404;
}

/* Admin Modals */
.admin-modal {
    max-width: 90%;
    width: 1200px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #2c3e50;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

/* Admin Tables */
.admin-table {
    overflow-x: auto;
}

.admin-table-content {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table-content th,
.admin-table-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.admin-table-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    position: sticky;
    top: 0;
}

.admin-table-content tr:hover {
    background: #f8f9fa;
}

/* Access Denied */
.access-denied {
    text-align: center;
    padding: 4rem 2rem;
}

.access-denied-content i {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.access-denied-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.access-denied-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #722f9e 0%, #e61a1a 50%, #e6a03d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
}

/* Admin Button */
.admin-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border-color: #e74c3c !important;
}

.admin-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .admin-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .admin-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-modal {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Admin Management Styles */
.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.admin-item:hover {
    background-color: #f8f9fa;
}

.admin-item:last-child {
    border-bottom: none;
}

.admin-info {
    flex: 1;
}

.admin-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.admin-email {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.admin-level {
    margin-bottom: 0.25rem;
}

.level-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.level-master {
    background: #e74c3c;
    color: white;
}

.level-admin {
    background: #3498db;
    color: white;
}

.level-moderator {
    background: #f39c12;
    color: white;
}

.admin-permissions {
    color: #95a5a6;
    font-size: 0.8rem;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.current-user-badge {
    background: #27ae60;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Permissions Grid */
.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.permission-item input[type="checkbox"] {
    margin: 0;
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Confirmation Page Styles */
.confirmation-hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.checkmark-circle.animate {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.checkmark-circle i {
    font-size: 3rem;
    color: white;
    transition: all 0.5s ease;
}

.checkmark-circle.animate i {
    transform: scale(1.2);
}

.confirmation-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.confirmation-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.confirmation-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Next Steps Section */
.next-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 80px 0;
    background: white;
}

.quick-actions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.action-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    background: white;
    border-color: #ff6b6b;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.action-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.action-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.action-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.action-card:hover .action-arrow {
    transform: translateX(5px);
}

/* Account Benefits Section */
.account-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.account-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: white;
}

.benefit-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Welcome Message */
.welcome-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    transition: opacity 0.5s ease;
}

.welcome-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.welcome-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Redirect Notice */
.redirect-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 350px;
    animation: slideInUp 0.3s ease-out;
}

.redirect-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.redirect-content i {
    color: #f39c12;
    font-size: 1.2rem;
}

.redirect-content span {
    flex: 1;
    font-size: 0.9rem;
}

/* Confetti Animation */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 9999;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Confirmation */
@media (max-width: 768px) {
    .confirmation-content h1 {
        font-size: 2.5rem;
    }
    
    .confirmation-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid,
    .actions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .redirect-notice {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Instagram Generator Styles */
.instagram-header {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.instagram-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-hero-content {
    flex: 1;
    text-align: left;
}

.instagram-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.instagram-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-item small {
    opacity: 0.8;
    font-size: 0.9rem;
}

.instagram-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-hero-image i {
    font-size: 8rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

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

/* Generator Content */
.generator-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.generator-controls {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #833ab4;
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
}

/* Generated Content */
.generated-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.content-preview h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.preview-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    background: white;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.preview-avatar {
    width: 40px;
    height: 40px;
    background: #833ab4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.preview-info strong {
    color: #2c3e50;
    font-size: 0.9rem;
}

.preview-info small {
    color: #6c757d;
    font-size: 0.8rem;
    display: block;
}

.preview-image {
    padding: 1rem;
    background: #f8f9fa;
}

.image-placeholder {
    height: 200px;
    background: #e9ecef;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    gap: 0.5rem;
}

.image-placeholder i {
    font-size: 2rem;
}

.preview-text {
    padding: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
}

.preview-hashtags {
    padding: 1rem;
    background: #f8f9fa;
}

.hashtag {
    display: inline-block;
    background: #833ab4;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.25rem;
}

/* Content Actions */
.content-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Content Details */
.content-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.content-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.detail-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.detail-item strong {
    display: block;
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.detail-item span {
    color: #2c3e50;
    font-weight: 600;
}

/* Content Templates */
.content-templates {
    margin-bottom: 3rem;
}

.content-templates h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.template-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #833ab4;
}

.template-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.template-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.template-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Usage Tips */
.usage-tips {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.usage-tips h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.tip-item {
    text-align: center;
    padding: 1.5rem;
}

.tip-item i {
    font-size: 2.5rem;
    color: #833ab4;
    margin-bottom: 1rem;
}

.tip-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Instagram Generator */
@media (max-width: 768px) {
    .instagram-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .instagram-hero h1 {
        font-size: 2.5rem;
    }
    
    .generator-stats {
        justify-content: center;
    }
    
    .generator-controls {
        grid-template-columns: 1fr;
    }
    
    .content-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation Responsive Improvements */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 1rem;
    }
    
    .auth-item {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 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: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.7rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
    
    .hero { padding: 220px 0 60px; }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        position: relative;
        padding: 0.5rem 20px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    #home .hero-image { display: none; /* only hide on home */ }
    
    #home .hero-content { text-align: center; padding: 0 1rem; margin-top: 4rem; }
    
    .hero h1 { margin-top: 2rem; margin-bottom: 1rem; }
    
    .hero p { margin-top: 1rem; margin-bottom: 1.5rem; }
    .event-chips { justify-content:center; }
    .trust-strip { justify-content:center; flex-wrap:wrap; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 3.25rem 0 0.75rem; /* extra top padding so first link isn't under the X */
        z-index: 999;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        border-radius: 0 0 15px 15px;
        margin-top: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        color: #2c3e50;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
        color: white;
        transform: translateX(5px);
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
        color: white;
        font-weight: 600;
    }
    
    /* Modal responsive adjustments */
    .modal-content {
        margin: 2vh auto;
        max-height: 95vh;
        padding: 2rem;
        width: 95%;
    }
    
    #add-admin-modal .modal-content {
        margin: 1vh auto;
        max-height: 98vh;
        padding: 1.5rem;
    }
    
    #add-admin-modal .permissions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    #add-admin-modal .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    #add-admin-modal .form-actions button,
    #edit-admin-modal .form-actions button {
        width: 100%;
    }
    
    #edit-admin-modal .permissions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .auth-item {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.75rem;
        background: #f8f9fa;
        margin: 0.4rem 1rem;
        border-radius: 8px;
    }
    
    .auth-btn {
        width: 100%;
        text-align: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .user-email {
        text-align: center;
        max-width: none;
        margin: 0.4rem 0;
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Float the X button at the top-right when menu is open */
    .hamburger.active {
        position: fixed;
        top: 14px;
        right: 16px;
        z-index: 1002;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(15,23,42,0.08);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        border-radius: 12px;
        padding: 10px 8px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile logo adjustments */
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    /* Mobile close button */
    .mobile-close {
        display: block;
        border-top: 2px solid #f0f0f0;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .close-menu {
        color: #ff6b6b !important;
        font-weight: 600;
        background: #fff5f5;
        padding: 0.6rem 0.8rem;
        border-radius: 6px;
        margin: 0 1rem;
        display: block;
        font-size: 0.9rem;
    }
    
    .close-menu:hover {
        background: #ffe5e5 !important;
        transform: translateY(-2px);
    }
    
    /* Hide desktop elements on mobile */
    .nav-menu > li:not(.auth-item) {
        display: block;
    }
    
    /* Ensure proper spacing for mobile */
    .nav-menu li a {
        border-radius: 0;
        margin: 0;
    }
    
    /* Mobile menu animations */
    .nav-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Stagger animation for menu items */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-container {
        padding: 0.3rem 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    #home .hero-image { display:none; }
    
    .nav-menu {
        top: 75px;
        padding: 0.3rem 0;
    }
    
    .nav-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .auth-item {
        padding: 0.6rem;
        margin: 0.3rem 0.8rem;
    }
    
    .auth-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .user-email {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .close-menu {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
        margin: 0 0.8rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .event-chips { gap:6px; }
    .chip { padding:7px 10px; font-size:0.85rem; }
    .trust-strip { gap:8px; }
    .trust-brand { font-size:0.8rem; padding:5px 8px; }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .hero::after,
    .education-hero::after,
    .installation-hero::after,
    .pricing-customize .customize-hero .overlay,
    .confetti {
        animation: none !important;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Education Page Styles */
.education-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

.education-hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.education-hero .hero-content {
    flex: 1;
}

.education-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Full-bleed education background + overlay */
.education-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.55) saturate(1.1);
}
.education-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 450px at 20% 25%, rgba(244,114,182,0.22), transparent 60%),
                radial-gradient(1000px 500px at 90% 85%, rgba(56,189,248,0.22), transparent 60%),
                linear-gradient(180deg, rgba(2,6,23,0.15), rgba(2,6,23,0.6));
    animation: auroraFloat 18s ease-in-out infinite;
}
.education-hero .hero-content { position: relative; z-index: 1; }

/* Lessons Section */
.lessons {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

.lesson-card.featured {
    border-color: #3498db;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}

.lesson-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lesson-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.lesson-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.lesson-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.lesson-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.lesson-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

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

.lesson-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.lesson-price {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.lesson-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.lesson-price .period {
    font-size: 1rem;
    color: #666;
}

/* Enrollment Section */
.enrollment {
    padding: 100px 0;
    background: white;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.enrollment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.enrollment-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.enrollment-info li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enrollment-info i {
    color: #27ae60;
    font-size: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.enrollment-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.enrollment-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Camp Section */
.camp {
    padding: 100px 0;
    background: #f8f9fa;
}

.camp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.camp-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.camp-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.camp-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.camp-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.camp-detail i {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.camp-detail h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.camp-detail p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.camp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.camp-features {
    margin-top: 4rem;
}

.camp-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

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

.feature-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

.camp-enrollment {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.camp-enrollment h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.camp-enrollment p {
    color: #666;
    margin-bottom: 2rem;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #ff6b6b;
    font-weight: 600;
}

/* Responsive Design for Education Page */
@media (max-width: 768px) {
    .education-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
    }
    
    .camp-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .camp-details {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .lesson-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: white;
}

.clients h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.client-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-category h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.client-logo {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.client-logo:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: scale(1.05);
}

.clients-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    color: white;
    border-radius: 15px;
}

.clients-note p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design for Clients Section */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .client-logo {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

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

.technology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.tech-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tech-category ul {
    list-style: none;
    text-align: left;
}

.tech-category li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.tech-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.tech-note {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-note h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit i {
    color: #27ae60;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Technology Section */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
    }
}

/* Installation Page Styles */
.installation-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Studios Page Styles */
.studios-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}
.studios-hero .container { display:flex; align-items:center; gap:4rem; }
.studios-hero .hero-content { flex:1; position:relative; z-index:1; }
.studios-hero .hero-image { flex:1; display:flex; justify-content:center; align-items:center; }
.studios-hero::before {
    content: ""; position:absolute; inset:0;
    background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.55) saturate(1.12);
}
.studios-hero::after {
    content:""; position:absolute; inset:0;
    background: radial-gradient(900px 450px at 20% 25%, rgba(14,165,233,.22), transparent 60%),
                radial-gradient(1000px 500px at 90% 85%, rgba(124,58,237,.22), transparent 60%),
                linear-gradient(180deg, rgba(2,6,23,.15), rgba(2,6,23,.6));
    animation: auroraFloat 18s ease-in-out infinite;
}
.studios-hero .feature-bullets { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:.5rem; margin-top:1rem; }
.studios-hero .feature-bullets span { background: rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.25); border-radius:10px; padding:8px 10px; }

@media (max-width: 768px) {
  .studios-hero .container { flex-direction:column; text-align:center; gap:2rem; }
}

.installation-hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.installation-hero .hero-content {
    flex: 1;
}

.installation-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Full-bleed install background + overlay */
.installation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.55) saturate(1.1);
}
.installation-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 450px at 20% 25%, rgba(56,189,248,0.22), transparent 60%),
                radial-gradient(1000px 500px at 90% 85%, rgba(124,58,237,0.22), transparent 60%),
                linear-gradient(180deg, rgba(2,6,23,0.15), rgba(2,6,23,0.6));
    animation: auroraFloat 18s ease-in-out infinite;
}
.installation-hero .hero-content { position: relative; z-index: 1; }

/* Taller, modern device rectangle for Installation hero */
.installation-hero .device-rect {
    width: 280px;
    height: 320px;
    border-radius: 28px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15,23,42,0.12);
    box-shadow: 0 18px 50px rgba(2,6,23,0.15), inset 0 0 0 4px rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.installation-hero .device-rect i {
    font-size: 56px;
    color: #64748b;
}

@media (max-width: 992px) {
    .installation-hero .device-rect { width: 220px; height: 260px; border-radius: 22px; }
    .installation-hero .device-rect i { font-size: 46px; }
}
@media (max-width: 640px) {
    .installation-hero .device-rect { width: 160px; height: 180px; border-radius: 18px; }
    .installation-hero .device-rect i { font-size: 36px; }
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.feature-tag i {
    color: #4ecdc4;
    font-size: 1rem;
}

/* Installation Services */
.installation-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

.installation-card.featured {
    border-color: #ff6b6b;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.installation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.installation-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.installation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.installation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.installation-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.installation-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.installation-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.installation-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.installation-price {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.installation-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.installation-price .price-note {
    display: block;
    font-size: 0.8rem;
    color: #27ae60;
    margin-top: 0.5rem;
}

/* Equipment Section */
.equipment {
    padding: 100px 0;
    background: white;
}

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

.equipment-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.equipment-category h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.category-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.brand-item {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.brand-item:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: scale(1.05);
}

.brand-item:last-child {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border-color: transparent;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-steps {
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Installation Page */
@media (max-width: 768px) {
    .installation-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .installation-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-card.featured {
        transform: none;
    }
    
    .equipment-categories {
        grid-template-columns: 1fr;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        width: 100%;
        justify-content: center;
    }
    
    .featured-badge {
        position: static;
        margin-bottom: 1rem;
    }
    
    /* Mobile Logo Adjustments */
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    

    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-logo-image {
        width: 40px;
        height: 40px;
    }
}

/* Terms Page Styles */
.terms-section {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.terms-date {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.terms-content .terms-section {
    margin-bottom: 2rem;
    padding: 0;
    background: none;
    box-shadow: none;
}

.terms-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.terms-content h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin: 1.5rem 0 1rem 0;
}

.terms-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-content li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.terms-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.terms-actions .btn {
    margin: 0 0.5rem;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-content h2 {
        font-size: 1.3rem;
    }
    
    .terms-actions .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
} 

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
}

/* ... existing code ... */
.account-card .btn-outline { color: #0f172a; border-color: #e2e8f0; background: #fff; }
.account-card .btn-outline:hover { background: #0f172a; color: #fff; border-color: #0f172a; }

/* Make modal action buttons more visible */
.modal .btn-primary { background: linear-gradient(135deg, #0ea5e9, #7c3aed); color: #fff; border: none; }
.modal .btn-outline { border-color: #cbd5e1; color: #334155; }
/* ... existing code ... */