:root {
    --primary: #6a11cb;
    --primary-rgb: 106, 17, 203;
    --secondary: #2575fc;
    --secondary-rgb: 37, 117, 252;
    --accent: #ff4d94;
    --accent-rgb: 255, 77, 148;

    --success: #4BB543;
    --dark: #121212;
    --dark-rgb: 18, 18, 18;
    --darker: #0a0a0a;
    --dark-card: rgba(30, 30, 30, 0.7);
    --light: #f8f9fa;
    --gray: #adb5bd;
    --light-gray: #343a40;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-primary-secondary: linear-gradient(45deg, var(--primary), var(--secondary));
    --gradient-text: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    --gradient-background: linear-gradient(to bottom, var(--darker), var(--dark));
    --transition: all 0.3s ease-in-out;
    --transition-long: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--dark); color: var(--light); line-height: 1.7; overflow-x: hidden; }

/* General Styles */
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--light); }
img { max-width: 100%; height: auto; display: block; }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.highlight { color: var(--accent); font-weight: 600; }

/* Scroll Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Header Styles */
header { background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(8px); padding: 0.8rem 5%; /* Adjusted padding */ position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.25); border-bottom: 1px solid var(--border-color); transition: background-color 0.3s ease, box-shadow 0.3s ease; }
header.scrolled { background: rgba(10, 10, 10, 0.95); box-shadow: 0 6px 25px rgba(0,0,0,0.35); }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo-link { display: inline-flex; /* For alignment */ align-items: center; margin-right: auto; } /* Pushes other items to the right */
.logo { display: flex; align-items: center; gap: 10px; /* Reduced gap */ }
.logo img { height: 65px; /* Slightly smaller logo on all screens for balance */ border-radius: 7px; }
.logo h1 { font-size: 1.5rem; /* Slightly smaller h1 */ font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Desktop Navigation Links */
.nav-links.desktop-nav { display: flex; gap: 2rem; /* Reduced gap */ } 
.nav-links.desktop-nav a { color: var(--light); font-weight: 500; font-size: 0.95rem; /* Slightly smaller links */ position: relative; padding: 0.5rem 0; }
.nav-links.desktop-nav a:hover { color: var(--accent); }
.nav-links.desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-links.desktop-nav a:hover::after, .nav-links.desktop-nav a.active::after { width: 100%; }

.cta-button { /* General CTA styles */
    background: var(--gradient-primary-secondary); 
    color: white !important; border: none; 
    padding: 0.6rem 1.2rem; 
    border-radius: 50px; font-weight: 600; cursor: pointer; 
    transition: var(--transition-long); 
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3); 
    font-size: 0.9rem; text-decoration: none; 
    display: inline-flex; align-items: center; gap: 0.5rem; 
}
.cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(var(--secondary-rgb), 0.5); }
.cta-button.desktop-cta { margin-left: 1.5rem; } 

/* Mobile Call Button - SPECIFIC STYLES FOR SLEEK LOOK */
.mobile-call-button { 
    display: none; /* Hidden on desktop by default */
    padding: 0.5rem 0.8rem; /* Smaller padding */
    font-size: 0.8rem; /* Smaller font size for "Call Us" if present */
    background: transparent; /* Make it more subtle */
    border: 1px solid var(--accent); /* Accent border */
    color: var(--accent) !important; /* Accent color for icon/text */
    box-shadow: none; /* No shadow for sleek look */
    margin-left: 1rem; /* Space from logo */
}
.mobile-call-button i { 
    margin-right: 0.3rem; /* Space between icon and text if text exists */
    font-size: 0.9em; /* Icon size relative to button font size */
}
.mobile-call-button:hover {
    background: rgba(var(--accent-rgb), 0.1); /* Subtle hover background */
    color: var(--light) !important;
    border-color: var(--light);
    transform: translateY(-2px); /* Less pronounced hover effect */
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}


/* Hamburger Menu Toggle - Hidden but kept in HTML */
.menu-toggle { display: none !important; }


/* Hero Section (styles from previous correct version) */
.hero {
    min-height: 90vh; /* Further Reduced height */
    max-height: 650px; 
    display: flex;
    align-items: center; 
    padding: 6rem 0 3rem 5%; /* Adjusted padding */
    position: relative; 
    background-color: var(--dark); 
    overflow: hidden;
}
.hero::after { /* Full hero background gradient */
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; 
    background: linear-gradient(125deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--dark-rgb), 0.5) 25%, rgba(var(--dark-rgb), 0.7) 50%, rgba(var(--dark-rgb), 0.5) 70%, rgba(var(--accent-rgb), 0.1) 100%);
    background-size: 250% 250%; animation: heroCornerGradient 20s ease infinite alternate; opacity: 0.9; 
}
@keyframes heroCornerGradient {
    0% { background-position: 0% 50%; transform: scale(1.05) rotate(-1deg); }
    50% { background-position: 100% 50%; transform: scale(1) rotate(1deg); }
    100% { background-position: 0% 50%; transform: scale(1.05) rotate(-1deg); }
}
.hero-content { flex: 0 0 45%; max-width: 800px; padding-right: 2rem; z-index: 2; position: relative; }
.hero h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.3; color: var(--light); }
.hero p { font-size: clamp(0.9rem, 1.8vw, 1rem); margin-bottom: 2rem; max-width: 600px; color: var(--gray); }
.hero .cta-button { padding: 0.8rem 1.8rem; font-size: 0.95rem; align-self: flex-start; }

.hero-image-area { flex: 1 1 55%; align-self: stretch; position: relative; z-index: 1; padding: 0; margin: 0; display: flex; justify-content: flex-end; }
.hero-image-area .slider-container { width: 100%; height: 100%; position: relative; overflow: hidden; background-color: transparent; }
.slider-container .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.0s ease-in-out; visibility: hidden; background-color: transparent; border-radius: inherit; }
.slider-container .slide.active { opacity: 1; visibility: visible; z-index: 1; }
.slider-container .slide img { width: 100%; height: 100%; object-fit: contain; display: block; }


/* Responsive adjustments */
@media (max-width: 992px) { /* Tablet */
    header { padding: 0.8rem 3%; } /* Reduce header padding slightly */
    .logo img { height: 50px; }
    .logo h1 { font-size: 1.4rem; }
    .nav-links.desktop-nav { gap: 1.5rem; }
    .nav-links.desktop-nav a { font-size: 0.9rem; }

    .hero { min-height: auto; padding: 6rem 5% 3rem 5%; flex-direction: column; text-align: center; }
    .hero-content { flex-basis: auto; padding-right: 0; margin-bottom: 2rem; max-width: 100%; }
    .hero .cta-button { align-self: center; }
    .hero-image-area { flex-basis: auto; width: 100%; max-width: 500px; height: auto; aspect-ratio: 16/9; margin: 0 auto 2rem auto; }
    .hero-image-area .slider-container { border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
}

@media (max-width: 768px) { /* Mobile */
    header { padding: 0.7rem 4%; } /* Balance header padding */
    .logo { gap: 8px; }
    .logo img { height: 40px; }
    .logo h1 { font-size: 1.3rem; }

    .nav-links.desktop-nav { display: none; } 
    .cta-button.desktop-cta { display: none; } 
    .menu-toggle { display: none !important; } 

    .mobile-call-button { 
        display: inline-flex; 
        margin-left: auto; /* Push to far right */
    }
    
    .hero-content { padding: 5rem 5% 1.5rem 5%; }
    .hero h2 { font-size: clamp(1.7rem, 5.5vw, 2.1rem); }
    .hero-image-area { max-width: 90%; aspect-ratio: 4/3; }
}

/* Fallback for very small screens if needed */
@media (max-width: 400px) {
    .logo h1 { font-size: 1.2rem; }
    .mobile-call-button { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
    .mobile-call-button i { font-size: 0.8em; }
}


/* --- Rest of your CSS (About, Gallery, Testimonials, Contact, Footer) --- */
/* Ensure :root rgb variables are defined correctly as shown at the top */
/* Section Base Styles */
section { padding: 6rem 5%; position: relative; }
.section-title { text-align: center; margin-bottom: 4rem; position: relative; z-index: 2; }
.section-title h2 { font-size: clamp(2.2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 0.5rem; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.section-title p { font-size: clamp(1rem, 2vw, 1.1rem); color: var(--gray); max-width: 650px; margin: 0.5rem auto 0; }

/* About Section (Services) */
.about { background: var(--gradient-background); }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { background: var(--dark-card); border-radius: 15px; padding: 2.5rem 2rem; text-align: center; transition: var(--transition-long); border: 1px solid var(--border-color); backdrop-filter: blur(5px); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); border-color: var(--primary); }
.service-icon { font-size: 3rem; margin-bottom: 1.5rem; background: var(--gradient-primary-secondary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--light); }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* Gallery Section */
.gallery { background: var(--darker); }
.gallery-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.video-embed-item {}
.video-embed-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.35); background-color: var(--light-gray); transition: transform 0.3s ease-in-out; }
.video-embed-wrapper:hover { transform: scale(1.03); }
.video-embed-wrapper.short-format { padding-bottom: 177.77%; }
.video-embed-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-embed-title { text-align: center; color: var(--gray); font-size: 0.95rem; font-weight: 500; margin-top: 1rem; padding: 0 0.5rem; line-height: 1.4; }

/* Testimonials */
.testimonials { background: var(--gradient-background); overflow: hidden; }
.testimonial-container-wrapper { max-width: 100%; overflow-x: auto; padding-bottom: 1.5rem; -webkit-overflow-scrolling: touch; }
.testimonial-container-wrapper::-webkit-scrollbar { height: 8px; }
.testimonial-container-wrapper::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 4px; }
.testimonial-container-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.testimonial-container-wrapper::-webkit-scrollbar-thumb:hover { background: var(--secondary); }
.testimonial-container { display: flex; flex-wrap: nowrap; gap: 2rem; padding: 0 1rem; align-items: stretch; }
.testimonial-card { background: var(--dark-card); border-radius: 15px; padding: 2.5rem; border: 1px solid var(--border-color); position: relative; backdrop-filter: blur(5px); transition: var(--transition-long); flex-shrink: 0; width: clamp(320px, 80vw, 420px); display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
.testimonial-card::before { content: '\f10d'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 15px; left: 20px; font-size: 3rem; color: rgba(106, 17, 203, 0.15); line-height: 1; z-index: 0; }
.testimonial-content { font-style: italic; font-size: 1.05rem; margin-bottom: 1.5rem; position: relative; z-index: 1; color: var(--gray); flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; z-index: 1; position: relative; margin-top: auto; }
.author-avatar { width: 55px; height: 55px; border-radius: 50%; background: var(--gradient-primary-secondary); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.4rem; color: var(--light); flex-shrink: 0; }
.author-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; color: var(--light); }
.author-info p { color: var(--accent); font-size: 0.9rem; }

/* Contact Form */
.contact { background: var(--dark); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; top: 0; left: 0; width: 300%; height: 300%; z-index: 0; background: radial-gradient(circle at 20% 30%, rgba(var(--primary-rgb), 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(var(--secondary-rgb), 0.15) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.1) 0%, transparent 30%); background-size: 100% 100%; animation: animatedBackground 40s linear infinite alternate; transform-origin: center center; opacity: 0.7; }
@keyframes animatedBackground { 0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); } 100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.2); } }
.form-container { max-width: 800px; margin: 0 auto; background: var(--dark-card); border-radius: 15px; padding: 2.5rem 3rem; backdrop-filter: blur(8px); border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.3); position: relative; z-index: 1; }
/* ... (rest of form styles as they were) ... */
.form-progress { margin-bottom: 2.5rem; position: relative; }
.progress-bar { width: 0%; height: 6px; background: var(--gradient-primary-secondary); border-radius: 3px; transition: width 0.4s ease; position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; }
.progress-steps { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.progress-step { width: 30px; height: 30px; border-radius: 50%; background-color: var(--light-gray); color: var(--gray); display: flex; align-items: center; justify-content: center; font-weight: 500; border: 2px solid var(--light-gray); transition: var(--transition); }
.progress-step.active { background-color: var(--primary); border-color: var(--primary); color: var(--light); transform: scale(1.1); }
.progress-step.completed { background-color: var(--secondary); border-color: var(--secondary); color: var(--light); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.step-header { text-align: center; margin-bottom: 2rem; }
.step-header h3 { font-size: 1.8rem; margin-bottom: 0.3rem; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step-header p { color: var(--gray); font-size: 0.95rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 500; color: var(--light); font-size: 0.95rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid var(--light-gray); background: rgba(20, 20, 20, 0.7); color: var(--light); font-family: inherit; font-size: 1rem; transition: var(--transition); }
.form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group input[type="tel"]:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.3); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23adb5bd'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.2em; padding-right: 2.5rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.8rem; background: rgba(20, 20, 20, 0.7); border-radius: 8px; border: 1px solid var(--light-gray); cursor: pointer; transition: var(--transition); font-size: 0.9rem; color: var(--gray); }
.checkbox-item:hover { border-color: var(--primary); }
.checkbox-item input[type="checkbox"] { appearance: none; width: 18px; height: 18px; border: 2px solid var(--gray); border-radius: 4px; cursor: pointer; position: relative; top: -1px; transition: var(--transition); }
.checkbox-item input[type="checkbox"]:checked { background-color: var(--primary); border-color: var(--primary); }
.checkbox-item input[type="checkbox"]:checked::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: white; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.checkbox-item:has(input[type="checkbox"]:checked) { border-color: var(--primary); color: var(--light); }
.form-navigation { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; }
.btn { padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition-long); border: none; font-family: inherit; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-prev { background: var(--light-gray); color: var(--light); }
.btn-prev:hover { background: #495057; }
.btn-next { background: var(--gradient-primary-secondary); color: white; box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3); }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn-next:hover { box-shadow: 0 8px 25px rgba(37, 117, 252, 0.5); }
.btn-submit i.fab.fa-whatsapp { font-size: 1.2em; }
#step3 .fa-check-circle { color: var(--success) !important; }
#step3 h3 { color: var(--light); margin-bottom: 1rem; }
#step3 p { color: var(--gray); font-size: 1rem; max-width: 500px; margin: 0 auto 1rem; }


/* Footer */
footer { background: var(--darker); padding: 5rem 5% 2rem; border-top: 1px solid var(--border-color); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer-logo img { height: 60px; border-radius: 10px; box-shadow: 0 0 20px rgba(106, 17, 203, 0.4); }
.footer-logo h2 { font-size: 1.6rem; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-logo p { color: var(--gray); font-size: 0.9rem; }
.footer-links h3, .footer-contact h3 { font-size: 1.2rem; color: var(--light); margin-bottom: 1.5rem; position: relative; }
.footer-links h3::after, .footer-contact h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--gradient-primary-secondary); border-radius: 3px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--gray); transition: var(--transition); display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }
.footer-links a i { font-size: 0.8em; }
.footer-contact p { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--gray); font-size: 0.95rem; }
.footer-contact p i { color: var(--accent); width: 20px; text-align: center; }
.footer-contact p a { color: var(--gray); }
.footer-contact p a:hover { color: var(--accent); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--light-gray); color: var(--light); transition: var(--transition); text-decoration: none; font-size: 1.1rem; }
.social-links a:hover { background: var(--gradient-primary-secondary); transform: translateY(-5px) scale(1.1); color: white; }
.copyright { text-align: center; padding-top: 2.5rem; border-top: 1px solid var(--border-color); color: var(--gray); font-size: 0.9rem; }
.copyright .fa-heart { transition: color 0.3s ease; }
.copyright .fa-heart:hover { color: var(--accent) !important; }

/* Additional Mobile Fallbacks not covered by Hero specific media queries */
@media (max-width: 480px) {
    .testimonial-card { width: clamp(260px, 90vw, 300px); } /* Even smaller testimonial cards */
    .testimonial-container { padding: 0 0.25rem; }
}