/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0b0f19;
    color: #fff;
    line-height: 1.6;
}
h1, h2, h3 {
    font-weight: 700;
}
a {
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    background: url('../images/studio-hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}
.btn-primary {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: 0 0 15px #ff0080;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff8c00;
}
.btn-secondary {
    background: none;
    border: 2px solid #00f7ff;
    color: #00f7ff;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-secondary:hover {
    background: #00f7ff;
    color: #000;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.features h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #ff8c00;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.feature-card {
    background: #111428;
    padding: 25px;
    border-radius: 15px;
    flex: 1 1 300px;
    transition: 0.3s;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,140,0,0.5);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 80px 20px;
    background: #0f1326;
    text-align: center;
}
.gallery h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #00f7ff;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.gallery img {
    width: 300px;
    border-radius: 15px;
    transition: 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f7ff;
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 20px;
    text-align: center;
}
.pricing h2 {
    margin-bottom: 40px;
    color: #ff8c00;
}
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.pricing-card {
    background: #111428;
    padding: 30px;
    border-radius: 15px;
    flex: 1 1 300px;
    transition: 0.3s;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,247,255,0.5);
}
.price {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #00f7ff;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 20px;
    background: #0f1326;
    text-align: center;
}
.contact h2 {
    margin-bottom: 20px;
    color: #ff8c00;
}
.contact p {
    margin-bottom: 30px;
    color: #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .feature-grid, .pricing-grid, .gallery-grid { flex-direction: column; }
}


/* ===== HEADER / NAVBAR ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f7ff;
    text-shadow: 0 0 8px #00f7ff;
}

.nav-links a {
    margin-left: 25px;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #00f7ff;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Special buttons for logout / signup */
.btn-logout {
    color: #ff6666 !important;
    font-weight: 600;
}
.btn-signup {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 0 10px #ff0080;
}
.btn-signup:hover {
    box-shadow: 0 0 15px #ff8c00;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0b0f19;
    padding: 60px 20px 20px;
    color: #ccc;
    font-size: 0.95rem;
    border-top: 2px solid rgba(0,247,255,0.2);
    box-shadow: inset 0 0 30px rgba(0, 247, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1 1 300px;
}
.footer-section h3 {
    color: #00f7ff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #00f7ff;
}
.footer-section p {
    line-height: 1.5;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #ccc;
    transition: 0.3s;
}
.footer-section ul li a:hover {
    color: #00f7ff;
}

/* Social icons */
.footer-social a img {
    width: 30px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}
.footer-social a img:hover {
    filter: drop-shadow(0 0 6px #00f7ff);
}

/* Bottom strip */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #777;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-social a img {
        margin: 0 5px;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 90vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #00f7ff;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}
.hero-buttons a {
    margin: 0 10px;
}



/* ===== GALLERY ===== */
.gallery {
    padding: 80px 20px;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,247,255,0.3);
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 20px;
    text-align: center;
}
.pricing-grid {
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.pricing-card {
    background: #e9ebf0;
    padding: 30px;
    flex: 1 1 280px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,247,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card.featured {
    border: 2px solid #00f7ff;
}
.pricing-card h3 {
    margin-bottom: 10px;
}
.pricing-card .price {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #00f7ff;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.pricing-card ul li {
    margin-bottom: 10px;
    color: #aaa;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0,247,255,0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #0b0f19;
    padding: 80px 20px;
    text-align: center;
}
.testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.testimonial-card {
    flex: 1 1 300px;
    background: #111622;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,247,255,0.1);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-card h4 {
    color: #00f7ff;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 20px;
    text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
/* FAQ Section */
.faq {
    padding: 80px 10%;
    background: #0a0a0a; /* Dark background to match a studio vibe */
    color: #fff;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffcc00; /* Highlight color */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: #ffcc00;
}

.faq-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    display: none; /* hidden by default if we add JS toggle */
}

.faq-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
/* =====================
   Headings Section (H1 + paragraph)
   ===================== */
.packages-page h1 {
    font-size: 3rem;
    text-align: center;
    margin-top: 60px;
    color: #ffcc00; /* studio gold highlight */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages-page > p {
    font-size: 1.2rem;
    text-align: center;
    margin: 20px auto 60px;
    max-width: 800px;
    color: #ddd;
    line-height: 1.6;
}

/* =====================
   Call To Action (CTA)
   ===================== */
.cta {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    padding: 80px 10%;
    text-align: center;
    margin-top: 80px;
    border-top: 3px solid #ffcc00;
    border-bottom: 3px solid #ffcc00;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.btn-primary.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    background-color: #ffcc00;
    color: #111;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary.btn-large:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

/* =====================
   Extras Section
   ===================== */
.extras {
    padding: 80px 10%;
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
}

.extras h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffcc00;
    text-transform: uppercase;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.extra-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.extra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.extra-card p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

.extra-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.cta {
    background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
    position: relative;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.cta h2, .cta p, .cta a {
    position: relative;
    z-index: 2;
}
/* Booking Page */
.booking-page {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.booking-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.booking-page p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255,204,0,0.4);
}

.btn-primary.btn-large {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    background: #ffcc00;
    color: #000;
    transition: background 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary.btn-large:hover {
    background: #e6b800;
}

.price-box {
    margin: 30px 0;
    padding: 20px;
    background: #fff8dc;
    border: 2px solid #ffcc00;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* Gallery Filters */
.gallery-filters {
    text-align:center;
    margin:20px auto;
}
.gallery-filters .filter-btn {
    background:#111;
    color:white;
    border:none;
    padding:10px 20px;
    margin:0 5px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}
.gallery-filters .filter-btn.active,
.gallery-filters .filter-btn:hover {
    background:#ff6b6b;
}

/* Hide scrollbars but still scrollable */
.horizontal-carousel {
    display:flex;
    overflow-x:auto;
    scrollbar-width:none; /* Firefox */
}
.horizontal-carousel::-webkit-scrollbar { display:none; }

/* Photos square card */
.square-card img {
    width:250px; height:250px;
    object-fit:cover;
    margin:10px;
    border-radius:15px;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    transition:transform 0.3s;
}
.square-card img:hover { transform:scale(1.05); }

/* Reels vertical card */
.reel-card img {
    width:200px; height:360px;
    object-fit:cover;
    margin:10px;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    transition:transform 0.3s;
}
.reel-card img:hover { transform:scale(1.05); }

/* Videos thumbnail card */
.video-card img {
    width:320px; height:180px;
    object-fit:cover;
    margin:10px;
    border-radius:15px;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    transition:transform 0.3s;
}
.video-card img:hover { transform:scale(1.05); }

/* Section visibility */
.gallery-section { display:none; margin:30px auto; }
.gallery-section.active { display:block; }

/* Fullscreen popup */
.popup-overlay {
    display:none;
    position:fixed;
    top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.popup-content { text-align:center; }
.popup-close {
    position:absolute;top:20px;right:30px;
    color:white;font-size:40px;cursor:pointer;
    transition:0.3s;
}
.popup-close:hover { color:#ff6b6b; }


.testimonial-cards {
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px auto;
    flex-wrap:wrap;
}
.testimonial-cards .card {
    background:linear-gradient(145deg,#111,#222);
    color:white;
    padding:20px;
    max-width:300px;
    border-radius:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
    transition:transform 0.3s;
}
.testimonial-cards .card:hover { transform:scale(1.05); }

/* Buttons gradient */
.gallery-filters .filter-btn {
    background:linear-gradient(90deg,#ff6b6b,#ff9f43);
    color:white;
    font-weight:bold;
}

/* Carousels shadow background */
.gallery-section {
    padding:20px 0;
    background:#111;
    border-radius:20px;
    margin:30px auto;
    box-shadow:0 8px 30px rgba(0,0,0,0.5);
}
/* Full-page centered layout */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #141E30, #243B55);
    padding: 20px;
}

/* Login card */
.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease-in-out;
}

/* Headings */
.login-card h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}

.login-card .subtitle {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Error text */
.login-card .error {
    color: #ff6b6b;
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Inputs */
.login-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    color: #333;
}

/* Button styling */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #ff6b6b, #ff9f43);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

/* Sign up text */
.signup-text {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
}

.signup-text a {
    color: #ff9f43;
    font-weight: bold;
    text-decoration: none;
}
.signup-text a:hover { text-decoration: underline; }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Reuse the login-section and login-card styles */
.login-section { display:flex; justify-content:center; align-items:center; min-height:80vh; background: linear-gradient(135deg, #141E30, #243B55); padding:20px; }
.login-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border-radius:20px; padding:40px 30px; width:100%; max-width:400px; text-align:center; box-shadow:0 8px 30px rgba(0,0,0,0.5); animation:fadeInUp 0.6s ease-in-out; }
.login-card h2 { color:#fff; margin-bottom:10px; font-size:28px; font-weight:bold; }
.login-card .subtitle { color:#ccc; margin-bottom:25px; font-size:14px; }
.login-card .error { color:#ff6b6b; background: rgba(255,0,0,0.1); padding:10px; border-radius:8px; margin-bottom:20px; }
.login-form input { width:100%; padding:14px; margin-bottom:15px; border:none; border-radius:10px; font-size:15px; outline:none; color:#333; }
.btn-primary { width:100%; padding:14px; background: linear-gradient(90deg,#ff6b6b,#ff9f43); border:none; color:#fff; font-size:16px; font-weight:bold; border-radius:10px; cursor:pointer; transition:transform 0.2s ease, box-shadow 0.3s ease; }
.btn-primary:hover { transform:scale(1.05); box-shadow:0 4px 15px rgba(255,107,107,0.5); }
.signup-text { margin-top:15px; font-size:14px; color:#ddd; }
.signup-text a { color:#ff9f43; font-weight:bold; text-decoration:none; }
.signup-text a:hover { text-decoration:underline; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }



/* Password toggle */
.password-wrapper {
    position: relative;
}
.toggle-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

/* Social login */
.social-login {
    margin: 20px 0;
    text-align: center;
    color: #ccc;
}
.social-login p { margin-bottom: 10px; }
.social-btn {
    border: none;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}
.social-btn.google { background: #DB4437; }
.social-btn.meta { background: #4267B2; }
.social-btn.apple { background: #000; }
.social-btn:hover { opacity: 0.8; }


.testimonials-hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #00000099, #00000066),
                url('assets/images/clients-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.testimonials-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.testimonials-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    flex: 0 1 auto; /* allow logo to shrink */
    min-width: 0;   /* important for text truncation */
}

.logo-img {
    max-height: 40px;   /* fits header height */
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;     /* image never squashes */
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Background image or video */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  z-index: -1;
}

video.background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide content */
.content {
  position: relative;
  text-align: left; /* Default: Left-aligned */
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin-left: 80px; /* Push content to left */
  z-index: 2;
}


.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content button {
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  background-color: #ff6b00;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.content button:hover {
  background-color: #e65c00;
}




/* ===== FEATURES ===== */
.features {
    padding: 80px 20px;
    text-align: center;
}
.section-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #aaa;
}
.feature-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    
}
.feature-card {
    background: #0b0f19;
    padding: 30px;
    flex: 1 1 250px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,247,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
#feature-card img {
    width:120px;
   
    margin-bottom: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0,247,255,0.3);
}



.alert {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
}
.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Base layout for desktop */
.profile-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    width: 95%;
}

.profile-card {
    background:#000;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.avatar-wrapper {
    min-width:160px;
    text-align:center;
    flex: 0 0 auto;
}

.profile-form {
    flex: 1 1 0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .profile-card {
        flex-direction: row; /* still side by side if space allows */
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .profile-card, .verify-card {
        flex-direction: column; /* stack on mobile */
        align-items: center;
        padding: 16px;
    }
    .avatar-wrapper { min-width: 120px; }
    .profile-avatar { width: 120px; height: 120px; }
    .verify-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .verify-actions { width: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 6px; }
    .otp-inline input { width: 100%; max-width: 180px; }
    .media-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* Images & Videos responsive */
.profile-avatar, .thumb-wrap img, .thumb-wrap video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Buttons & forms scaling */
.btn-primary, .btn-secondary, .btn-danger {
    padding: 10px 14px;
    font-size: 14px;
}


.mosaic-gallery { padding:60px 20px; text-align:center; }
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 100px; /* base height, individual spans will increase */
    gap: 10px;
}
.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.mosaic-card img:hover {
    transform: scale(1.05);
}


.booking-page {
    background: #FFD700; /* bright yellow */
    padding: 50px 20px;
    border-radius: 10px;
    color: #000; /* make text readable */
}
.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; justify-content: center; align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

/* ✅ Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.slider-dots .dot {
  width: 14px; height: 14px;
  margin: 0 6px;
  border-radius: 50%;
  display: inline-block;
  background: yellow;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-dots .dot.active {
  background: blue;
}
