/* =========================================
   1. VARIABLES & BASE STYLES
   ========================================= */
:root {
    --primary: #1e1e1e;
    --accent: #76bc21;
    --accent-hover: #5fa31a;
    --text: #eeeeee;
    --white: #ffffff;
    --glass: rgba(0, 0, 0, 0.8);
    --dark-bg: #0f0f0f;
    --card-bg: #161616;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--dark-bg);
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

section { padding: 100px 0; }

.container {
    max-width: 1300px; 
    margin: 0 auto;    
    padding: 0 30px;   
    width: 100%;       
}

.highlight { 
    color: var(--accent);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    vertical-align: middle;
}

/* =========================================
   2. NAVIGATION (STABLE CAPSULE)
   ========================================= */
.top-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    height: 90px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease-in-out;
    background: transparent;
}

.top-nav.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 50px !important; width: auto !important; display: block; }

.nav-capsule-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.top-nav.scrolled .nav-capsule-wrapper {
    background: transparent;
    backdrop-filter: none;
}

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover { color: var(--accent); }

.header-phone {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.top-nav.scrolled .header-phone { border-left-color: transparent; }

.detail-icon {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--accent);
    flex-shrink: 0;
}

.btn-cta {
    background-color: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
}

/* =========================================
   3. VIDEO HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: #000;
}

.hero-logo-link img {
    height: 50px;
    width: auto;
    display: inline-block;
    transform: translateY(2px); 
}

.video-container { position: absolute; inset: 0; z-index: 0; }
.video-container::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.5); z-index: 3;
}

.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 2;
    transform: scale(1.15);
}

.hero-content { z-index: 10; text-align: center; max-width: 1100px; padding: 0 20px; }
.hero-tagline { color: var(--accent); font-size: 0.9rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.1; margin-bottom: 25px; }
.hero-content p { font-size: 1.2rem; font-weight: 300; max-width: 650px; margin: 0 auto 40px; color: rgba(255,255,255,0.9); }

.hero-actions { display: flex; gap: 20px; justify-content: center; }
.btn-hero-primary, .btn-hero-secondary { padding: 18px 40px; text-decoration: none; text-transform: uppercase; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; transition: 0.3s; }
.btn-hero-primary { background: var(--accent); color: var(--white); border: 2px solid var(--accent); }
.btn-hero-secondary { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); color: var(--white); border: 2px solid rgba(255,255,255,0.5); }

/* =========================================
   4. TRUST BAR
   ========================================= */
.trust-bar { background: #111; padding: 70px 0; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.trust-grid { display: flex; justify-content: space-around; align-items: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.trust-icon { 
    width: 32px !important; height: 32px !important; 
    stroke: var(--accent); stroke-width: 1px; margin-bottom: 20px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.5)); transition: 0.4s ease; 
}
.trust-title { font-size: 0.8rem; font-weight: 700; color: rgba(255, 255, 255, 0.9); letter-spacing: 4px; text-align: center; text-transform: uppercase; }

/* =========================================
   5. SPECIALIST RANGE (CARDS)
   ========================================= */
.services-section { position: relative; padding: 100px 0; background-color: #000; }
.section-bg-image { position: absolute; inset: 0; background-attachment: fixed; background-size: cover; opacity: 0.15; z-index: 1; }
.services-section .container { position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header span { color: var(--accent); letter-spacing: 3px; font-weight: 600; display: block; margin-bottom: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: var(--card-bg); border: 1px solid #222; transition: 0.4s ease; overflow: hidden; }
.service-card:hover { border-color: var(--accent); transform: translateY(-10px); background: #1a1a1a; box-shadow: 0 0 30px rgba(118, 188, 33, 0.1); }
.card-img { height: 250px; background-size: cover; background-position: center; transition: 0.6s ease; }
.service-card:hover .card-img { transform: scale(1.05); }
.card-content { padding: 30px; }
.card-content h3 { color: var(--white); margin-bottom: 15px; font-size: 1.3rem; }
.card-content p { color: #888; line-height: 1.6; font-size: 0.95rem; }

/* =========================================
   6. VISION SECTION & FORM
   ========================================= */
.vision-section { background-color: var(--dark-bg); color: var(--white); padding: 120px 0; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 30px; }

.vision-form-container { background: #1a1a1a; padding: 40px 50px 50px; border: 1px solid #222; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.form-header { margin-bottom: 30px; border-bottom: 1px solid var(--accent); padding-bottom: 15px; }
.form-header h3 { font-size: 1.4rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }

.vision-form input, .vision-form select, .vision-form textarea { 
    width: 100%; background: #111; border: none; border-bottom: 1px solid var(--accent); 
    color: var(--white); padding: 15px; margin-bottom: 20px; font-family: inherit; transition: 0.3s; outline: none; 
}
.vision-form input:focus { background: #161616; box-shadow: 0 0 15px var(--accent); }

.input-row { display: flex; gap: 20px; width: 100%; }
.input-row .input-group { flex: 1; }

.btn-vision { align-self: flex-end; display: inline-flex; align-items: center; background: var(--accent); color: var(--white); padding: 18px 40px; border: none; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.4s; }
.btn-vision:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

/* =========================================
   7. FOOTER & LINKS (RESTORED)
   ========================================= */
.main-footer { background-color: #0a0a0a; color: #eeeeee; padding-top: 80px; width: 100%; }
.footer-grid { display: flex; justify-content: space-between; padding-bottom: 60px; }
.footer-brand { flex: 0 0 40%; }

.footer-links { flex: 0 0 auto; min-width: 160px; }
.footer-links ul { list-style: none; }
.footer-links a { color: #888888; text-decoration: none; font-size: 0.9rem; line-height: 2.2; transition: 0.3s; }
.footer-links a:hover { color: #ffffff; }

.footer-contact { flex: 0 0 auto; min-width: 200px; margin-left: 60px; }
.footer-contact p { color: #888888; font-size: 0.9rem; line-height: 1.6; }

.main-footer h4 { color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 25px; font-weight: 700; }

.footer-socials { display: flex; gap: 12px; margin-top: 25px; }
.social-icon { 
    display: flex; align-items: center; justify-content: center; 
    width: 38px; height: 38px; border: 1px solid var(--accent); 
    color: var(--accent) !important; transition: 0.3s; 
}
.social-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.social-icon:hover { background: var(--white); transform: translateY(-3px); }

.footer-bottom { background-color: #000000; padding: 30px 0; border-top: 1px solid #1a1a1a; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: #555; }

.footer-legal a { color: #555555; text-decoration: none; font-size: 0.75rem; margin-left: 25px; transition: 0.3s; }
.footer-legal a:hover { color: var(--accent); }

/* =========================================
   8. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1100px) {
    .header-phone { display: none; }
    .nav-capsule-wrapper { margin-right: 0; padding: 8px 20px; }
    .main-menu ul { gap: 15px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { flex-direction: column; align-items: center; text-align: center; gap: 50px; }
    .footer-contact { margin-left: 0; }
}

@media (max-width: 768px) {
    .nav-capsule-wrapper { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 15px; }
}

@media (max-width: 600px) {
    .input-row { flex-direction: column; gap: 0; }
}