/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --gold-primary: #d4af37;
    --gold-secondary: #f4e4a6;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --accent-blue: #0066cc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
    background-color: #030311;
}

body {
    background-color: transparent;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--gold-primary);
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), #ffd700);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(to right, #fff, var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
}

h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1rem 5%;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 5% 3rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -2;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: slideUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 5rem 5%;
}

.section-bg {
    background: var(--secondary-black);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

/* ===== COUNTERS ===== */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin: 4rem 0;
}

.counter-item {
    padding: 2rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

/* ===== PROJECTS ===== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-primary);
    padding: 5px;
    object-fit: cover;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.map-placeholder {
    height: 300px;
    background: var(--glass-bg);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-content {
    background: var(--glass-bg);
    border-left: 4px solid var(--gold-primary);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body 
       
    

    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .counters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding-top: 8rem;
    }
}

@media (max-width: 480px) {
    body 

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .counters {
        grid-template-columns: 1fr;
    }
    
    .project-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== PAGE CONTENT (Hidden initially) ===== */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
    animation: slideUp 0.5s ease;
}

/* ===== BEFORE/AFTER GALLERY ===== */
.before-after-slider {
    position: relative;
    overflow: hidden;
}

.before-after-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.before-after-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== LOGO IMAGE STYLING ===== */
.logo-image {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

/* ===== VIDEO STYLING ===== */
video {
    width: 100%;
    border-radius: 15px;
    background: #000;
}

/* ===== GOOGLE MAPS ===== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== SOCIAL ICONS HOVER ===== */
.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ===== ENHANCED 3D BACKGROUND ===== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #0a0a0a 100%);
    z-index: -2;
    overflow: hidden;
}

/* 3D Animated Background */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
    animation: bgTilt 20s ease-in-out infinite reverse;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes bgTilt {
    0%, 100% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg); }
    50% { transform: perspective(1000px) rotateX(5deg) rotateY(5deg); }
}

/* ===== ENHANCED SELECT DROPDOWN ===== */
.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 8px;
    color: white !important;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control option {
    background: var(--secondary-black) !important;
    color: white !important;
    padding: 10px;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.1) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== HIDDEN "OTHER" TEXT BOX ===== */
.other-input-container {
    display: none;
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease;
}

.other-input-container.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BEFORE/AFTER SLIDER WITH ARROWS ===== */
.before-after-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.before-after-slide.active {
    display: block;
}

.ba-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-primary);
    border: none;
    color: var(--primary-black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.ba-arrow-btn:hover {
    background: var(--gold-secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.ba-arrow-btn.prev {
    left: 20px;
}

.ba-arrow-btn.next {
    right: 20px;
}

@media (max-width: 768px) {
    .ba-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .ba-arrow-btn.prev {
        left: 10px;
    }
    
    .ba-arrow-btn.next {
        right: 10px;
    }
}

/* ===== ENHANCED SECTION BACKGROUNDS ===== */
.section-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: -20%;
    right: -20%;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* ===== ENHANCED GLASS CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== ENHANCED BUTTONS ===== */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #1a9851);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    animation: slideInRight 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.success-message.show {
    animation: slideInRight 0.5s ease;
}

.success-message.hide {
    animation: slideOutRight 0.5s ease forwards;
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* ===== ERROR MESSAGE ===== */
.error-message {
    display: none;
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    z-index: 10000;
    animation: slideInRight 0.5s ease;
}

.error-message.show {
    display: block;
}

/* ========================================
   GOD-LEVEL PARALLAX SYSTEM
   ======================================== */

#bgParallax {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    top: -25%;
    left: -8%;
    width: 116%;
    height: 155%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

#bgCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

#bgBase {
    background-color: #030311;
    background-image:
        radial-gradient(ellipse 100% 55% at 50% 0%, rgba(5, 10, 40, 0.95) 0%, transparent 60%),
        linear-gradient(180deg, #020212 0%, #030311 35%, #02020e 70%, #030210 100%);
}

#bgGrid {
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 65, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.022) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
}

#bgOrbs {
    background:
        radial-gradient(ellipse 700px 500px at 15% 65%, rgba(212, 175, 55, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 600px 400px at 85% 25%, rgba(212, 175, 55, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 500px 600px at 45% 92%, rgba(0, 120, 60, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 400px 300px at 72% 8%,  rgba(0, 80, 180, 0.07) 0%, transparent 65%);
    animation: parallaxOrbFloat 22s ease-in-out infinite alternate;
}

#bgBeam {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'><rect fill='none' width='1920' height='1080'/><defs><filter id='w1'><feGaussianBlur stdDeviation='55'/></filter><filter id='w2'><feGaussianBlur stdDeviation='25'/></filter></defs><path d='M-100,750 C350,100 700,150 960,540 C1220,930 1570,980 2020,330' fill='none' stroke='%2300ff41' stroke-width='220' opacity='0.03' filter='url(%23w1)'/><path d='M-100,750 C350,100 700,150 960,540 C1220,930 1570,980 2020,330' fill='none' stroke='%2300ff41' stroke-width='110' opacity='0.06' filter='url(%23w2)'/></svg>");
    background-size: cover;
    background-position: center;
}

#bgSurface {
    background: radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255, 240, 200, 0.08) 0%, transparent 50%);
}

@keyframes parallaxOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 3%) scale(1.05); }
}

.hero {
    background: transparent !important;
}

.hero-bg {
    background: linear-gradient(180deg, rgba(3, 3, 17, 0.7) 0%, rgba(3, 3, 17, 0.4) 50%, rgba(3, 3, 17, 0.85) 100%) !important;
}

.section-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(15, 15, 15, 0.88) 50%, rgba(26, 26, 26, 0.92) 100%) !important;
}

@media (max-width: 768px) {
    .bg-layer {
        top: -15%;
        left: -5%;
        width: 110%;
        height: 130%;
    }
}