/* ==========================================
   1. VARIABLES & RESET
   ========================================== */
:root {
    --orange: #FB8122;
    --charcoal: #1D2228;
    --platinum: #E1E2E2;
    --dark-card: #252b33;
    --footer-bg: #13171c;
}

body { 
    background-color: var(--charcoal); 
    color: var(--platinum); 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* ==========================================
   2. NAVIGATION BAR
   ========================================== */
.navbar { 
    background: rgba(29, 34, 40, 0.98); 
    padding: 10px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

/* Logo & Branding */
.nav-logo-img { height: 50px; width: auto; object-fit: contain; }
.logo-accent { color: var(--orange); font-weight: 800; font-size: 1.4rem; }
.logo-main { color: #FFFFFF; font-weight: 400; font-size: 1.4rem; }

/* Nav Links */
.nav-link { color: #FFFFFF !important; font-size: 1rem; margin-left: 15px; font-weight: 500; }
.navbar-brand { margin-right: 0 !important; padding-left: 0 !important; }
.navbar-collapse { flex-grow: 0; }
.navbar-nav { margin-left: auto; }

/* Mobile Toggler */
.custom-toggler { border: 1px solid var(--platinum); padding: 4px 8px; }
.toggler-line { display: block; width: 20px; height: 2px; background: #FFF; margin: 4px 0; }

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(29, 34, 40, 0.75), rgba(29, 34, 40, 0.75)), url('pics/pic1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px; 
}

.btn-hero {
    background: var(--orange);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* ==========================================
   4. UI COMPONENTS (Cards & Animations)
   ========================================== */
/* Service Cards */
.service-card-wrapper {
    background: var(--dark-card);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: 0.4s ease;
}

.service-card-wrapper:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 0 25px rgba(251, 129, 34, 0.25);
}

/* Hover Effects */
.glow-bounce {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.glow-bounce:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--orange) !important;
    text-shadow: 0 0 15px rgba(251, 129, 34, 0.7);
}

/* Scroll Reveals */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================
   5. TESTIMONIALS SLIDER
   ========================================== */
.testimonial-wrapper { overflow: hidden; padding: 40px 0; }
.testimonial-track { display: flex; animation: scrollSlower 70s linear infinite; }

.testimonial-card {
    background: var(--dark-card);
    min-width: 350px;
    margin: 0 20px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(251, 129, 34, 0.1);
    white-space: normal;
}

@keyframes scrollSlower {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   6. FOOTER
   ========================================== */
.footer-main { background: var(--footer-bg); border-top: 0px solid var(--orange); }
.footer-logo { font-weight: 800; color: var(--orange); font-size: 1.5rem; }
.footer-nav a { color: #FFF; text-decoration: none; margin-left: 15px; transition: 0.3s; }
.footer-nav a:hover { color: var(--orange); }
.text-orange { color: var(--orange); }

/* ==========================================
   7. RESPONSIVE / WIDE SCREENS
   ========================================== */
.container { max-width: 1400px !important; margin: 0 auto; }

/* Large Monitor Optimization (e.g., 32-inch) */
@media (min-width: 1400px) {
    .navbar {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}


/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000; /* Stays above the footer and nav */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Optional: Pulse Animation to attract attention */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* Styling for the Country Flag Input */
.iti { width: 100%; }
.iti__country-list { background-color: #252b33; color: white; border: 1px solid rgba(255,255,255,0.1); }
.iti__country:hover { background-color: #1d2228; }

/* Placeholder and Label Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.95rem;
}

label.small {
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

