:root {
    --primary-dark: #0A192F;
    --primary-light: #172A45;
    --accent-green: #8DC63F;
    --accent-hover: #7AB030;
    --text-main: #334155;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

/* ========================================= */
/* ===== GOD MODE: SCROLL UNLOCK FIX =====   */
/* ========================================= */
html, body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: var(--bg-light); 
    color: var(--text-main); 
    line-height: 1.6; 
    /* This permanently unlocks your scrollbar */
    overflow-x: hidden !important; 
    overflow-y: auto !important; 
    height: auto !important; 
}

/* ========================================= */
/* ===== CREATIVE PRELOADER STYLES =====     */
/* ========================================= */
body.loading-lock { overflow: hidden !important; height: 100vh !important; }

#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-content {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.logo-float-wrapper { animation: floatLogo 3s ease-in-out infinite; }

.preloader-logo {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex; justify-content: center; align-items: center;
    animation: none !important;
    width: auto !important;
    height: auto !important;
}

.preloader-img {
    max-width: 280px; 
    height: auto;
    display: block;
    animation: wideLogoPulse 2s ease-in-out infinite alternate;
}

.preloader-text {
    color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; font-family: monospace;
}

.preloader-progress-wrapper { width: 280px; margin-top: -10px; }
.preloader-progress-track {
    width: 100%; height: 4px; background: rgba(255, 255, 255, 0.1);
    border-radius: 4px; overflow: hidden;
}
.preloader-progress-fill {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #00AEEF, #EC008C, #FFF200, var(--accent-green)); 
    border-radius: 4px; transform-origin: left; transform: scaleX(0); 
    animation: preloaderBarFill 5s ease-out forwards;
}

@keyframes floatLogo { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-12px); } 
}

@keyframes wideLogoPulse { 
    0% { opacity: 0.85; transform: scale(0.98); filter: drop-shadow(0 0 10px rgba(141, 198, 63, 0.1)); } 
    100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 25px rgba(141, 198, 63, 0.4)); } 
}

@keyframes preloaderBarFill { 
    0% { transform: scaleX(0); } 
    100% { transform: scaleX(1); } 
}

/* ========================================= */
/* ===== UTILITY & ANIMATION CLASSES =====   */
/* ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
h1, h2, h3, h4 { color: var(--primary-dark); font-weight: 700; line-height: 1.2; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.section-header { margin-bottom: 60px; text-align: center; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; width: 60px; height: 4px; background: var(--accent-green); bottom: -10px; left: 50%; transform: translateX(-50%); }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 20px auto 0; }

/* ========================================= */
/* ===== GOD MODE: CONTENT REVEAL FIX ====== */
/* ========================================= */
/* This completely bypasses the broken javascript and forces everything to show instantly */
.reveal, .reveal.active, .reveal-left, .reveal-right { 
    opacity: 1 !important; 
    transform: none !important; 
    visibility: visible !important; 
    transition: none !important; 
}

@keyframes pulseBtn { 0% { box-shadow: 0 0 0 0 rgba(141, 198, 63, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(141, 198, 63, 0); } 100% { box-shadow: 0 0 0 0 rgba(141, 198, 63, 0); } }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-weight: 700; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); font-size: 1rem; }
.btn-primary { background: var(--accent-green); color: var(--primary-dark); animation: pulseBtn 2s infinite; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-5px); animation: none; box-shadow: 0 10px 20px rgba(141, 198, 63, 0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); transform: translateY(-5px); }

/* ========================================= */
/* ===== DYNAMIC NAVIGATION =====            */
/* ========================================= */
header { padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition); background: transparent; }
header.scrolled { background: rgba(10, 25, 47, 0.98) !important; backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.logo { display: flex; align-items: center; text-decoration: none; transition: var(--transition); }
.nav-logo { height: 45px; width: auto; max-width: 250px; object-fit: contain; transition: transform 0.3s ease; display: block; }
.nav-logo:hover { transform: scale(1.05); }
header.scrolled .nav-logo { height: 38px; } 

nav { display: flex; align-items: center; gap: 30px; }
nav a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-green); transition: var(--transition); }
nav a:hover::after { width: 100%; }
.nav-btn { background: var(--accent-green); color: var(--primary-dark); padding: 10px 24px; border-radius: 50px; }
.nav-btn::after { display: none; }
.nav-btn:hover { background: var(--white); color: var(--primary-dark); transform: scale(1.05); }
.menu-toggle { display: none; color: var(--white); font-size: 1.5rem; cursor: pointer; z-index: 1001; }

/* ========================================= */
/* ===== HERO & VIDEO STYLES =====           */
/* ========================================= */
.hero {
    height: 100vh; min-height: 600px; position: relative; display: flex; align-items: center;
    justify-content: center; text-align: center; color: white; overflow: hidden; 
    background: var(--primary-dark);
}

.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; opacity: 0.5;
}

.hero-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(23, 42, 69, 0.6), rgba(10, 25, 47, 0.9));
    background-size: 200% 200%; animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 5%; }
.hero-badge { display: inline-block; background: rgba(141, 198, 63, 0.2); color: var(--accent-green); padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 25px; border: 1px solid rgba(141, 198, 63, 0.4); }
.hero h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 25px; letter-spacing: -1px; }
.hero p { color: rgba(255,255,255,0.8); font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 40px; max-width: 700px; margin-inline: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ========================================= */
/* ===== SERVICES SECTION =====              */
/* ========================================= */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-light); padding: 40px 30px; border-radius: var(--border-radius); border: 1px solid #E2E8F0; transition: var(--transition); }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent-green); background: var(--white); }
.service-icon { width: 60px; height: 60px; background: rgba(141, 198, 63, 0.1); color: var(--accent-green); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border-radius: 12px; margin-bottom: 25px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--accent-green); color: var(--white); transform: rotateY(180deg); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========================================= */
/* ===== ABOUT SECTION =====                 */
/* ========================================= */
.about { background: var(--bg-light); overflow: hidden; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--border-radius); box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: var(--transition); }
.about-img:hover img { transform: scale(1.02); }
.about-img::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--accent-green); border-radius: var(--border-radius); z-index: -1; transition: var(--transition); }
.about-img:hover::before { top: 0; left: 0; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 25px; }
.about-content p { margin-bottom: 20px; color: var(--text-light); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; border-top: 1px solid #E2E8F0; padding-top: 30px; }
.stat-item h4 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 5px; }
.stat-item h4 span { color: var(--accent-green); }
.stat-item p { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-light); margin: 0; }

/* ========================================= */
/* ===== PORTFOLIO SECTION =====             */
/* ========================================= */
.portfolio { background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.portfolio-item { position: relative; border-radius: var(--border-radius); overflow: hidden; height: 350px; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-item:hover img { transform: scale(1.15); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.1) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: var(--transition); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 5px; transform: translateY(20px); transition: var(--transition); }
.portfolio-overlay p { color: var(--accent-green); font-weight: 600; font-size: 0.9rem; transform: translateY(20px); transition: var(--transition); transition-delay: 0.1s; }
.portfolio-item:hover .portfolio-overlay h4, .portfolio-item:hover .portfolio-overlay p { transform: translateY(0); }
.hidden-work { display: none; }

/* ========================================= */
/* ===== CTA BANNER =====                    */
/* ========================================= */
.cta-section { background: var(--primary-dark); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -10%; top: -50%; width: 400px; height: 400px; background: rgba(141, 198, 63, 0.1); border-radius: 50%; filter: blur(50px); animation: float 6s ease-in-out infinite alternate; }
@keyframes float { 0% { transform: translateY(0); } 100% { transform: translateY(50px); } }
.cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.2rem; margin-bottom: 40px; }

/* ========================================= */
/* ===== REVIEWS SECTION =====               */
/* ========================================= */
.reviews { background: var(--bg-light); }
.reviews-track { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 30px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 350px; background: var(--white); padding: 40px; border-radius: var(--border-radius); scroll-snap-align: center; border: 1px solid #E2E8F0; transition: var(--transition); }
.review-card:hover { transform: scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--accent-green); }
.stars { color: #F59E0B; font-size: 1.2rem; margin-bottom: 20px; }
.review-text { font-style: italic; color: var(--text-main); margin-bottom: 25px; font-size: 1.05rem; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-avatar { width: 50px; height: 50px; background: var(--primary-light); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.reviewer-info h5 { font-size: 1rem; color: var(--primary-dark); }
.reviewer-info p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ========================================= */
/* ===== FOOTER =====                        */
/* ========================================= */
footer { background: var(--primary-dark); color: var(--white); padding: 80px 0 30px; border-top: 5px solid var(--accent-green); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-about p { color: rgba(255,255,255,0.7); margin: 20px 0; max-width: 400px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-icons a:hover { background: var(--accent-green); color: var(--primary-dark); transform: translateY(-5px); }
.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; position: relative; padding-bottom: 10px; }
.footer-links h4::after, .footer-contact h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent-green); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-green); padding-left: 5px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.contact-item:hover { transform: translateX(5px); color: var(--white); }
.contact-item i { color: var(--accent-green); font-size: 1.2rem; margin-top: 5px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper, .footer-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; margin-bottom: 40px; }
    .contact-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--primary-dark); flex-direction: column; justify-content: center; transition: 0.4s ease-in-out; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
    nav.active { right: 0; }
    nav a { font-size: 1.2rem; margin: 15px 0; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 2rem; }
}

/* ========================================= */
/* ===== CONTACT PAGE STYLES =====           */
/* ========================================= */
.contact-hero {
    height: 40vh; min-height: 350px; position: relative; display: flex; align-items: center;
    justify-content: center; text-align: center; color: white; background: var(--primary-dark);
}
.contact-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-top: 50px; }
.contact-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 10px; }
.contact-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-wrapper { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--primary-dark); font-size: 0.95rem; }
.form-control { width: 100%; padding: 15px; border: 2px solid #E2E8F0; border-radius: var(--border-radius); font-family: inherit; font-size: 1rem; transition: var(--transition); background: var(--bg-light); color: var(--text-main); }
.form-control:focus { outline: none; border-color: var(--accent-green); background: var(--white); box-shadow: 0 5px 15px rgba(141, 198, 63, 0.1); }
textarea.form-control { resize: vertical; min-height: 160px; }
.alert { padding: 15px; border-radius: var(--border-radius); margin-bottom: 25px; font-weight: 600; text-align: center; border: 1px solid; }
.alert-success { background: rgba(141, 198, 63, 0.15); color: #2d5a1e; border-color: var(--accent-green); }
.alert-error { background: rgba(236, 0, 140, 0.1); color: #a8005b; border-color: #EC008C; }
.contact-info { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid var(--accent-green); }
.contact-info h3 { margin-bottom: 20px; font-size: 1.8rem; }
.contact-info p { color: var(--text-light); margin-bottom: 30px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; color: var(--text-main); }
.info-item i { color: var(--accent-green); font-size: 1.3rem; margin-top: 3px; }
.map-container { width: 100%; height: 250px; border-radius: var(--border-radius); overflow: hidden; margin-top: 30px; border: 2px solid #E2E8F0; }
.map-container iframe { width: 100%; height: 100%; border: none; }