/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors: Premium White/Blue Theme */
    --bg-body: #ffffff;
    --bg-alt: #f8f9fa;
    --text-main: #0f172a;   /* Dark Slate */
    --text-muted: #64748b;  /* Cool Grey */
    --primary: #2563eb;     /* Royal Blue */
    --primary-dark: #1d4ed8;
    --accent: #0ea5e9;      /* Sky Blue */
    --border: #e2e8f0;      /* Very Light Grey */
    
    /* Shadows (Retina Ready Softness) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Offset for fixed header */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -0.02em; color: var(--text-main); }
a { text-decoration: none; color: inherit; transition: 0.2s; }
section { padding: 6rem 0; position: relative; }

/* =========================================
   2. HEADER & NAV
   ========================================= */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: 0.3s;
    z-index: 1000;
}
.header__wrapper { display: flex; justify-content: space-between; align-items: center; }

.header__logo img { height: 40px; width: auto; }
.header__logo .logo-text { font-size: 1.5rem; font-weight: 800; color: var(--text-main); letter-spacing: -0.05em; }
.header__logo .dot { color: var(--primary); }

.header__nav { gap: 2.5rem; }
.nav-link { font-weight: 600; color: var(--text-muted) !important; font-size: 0.95rem; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}
.btn-primary:hover { 
    background-color: var(--primary-dark); 
    border-color: var(--primary-dark); 
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-pill { border-radius: 50px; }
.btn-outline-secondary { border-color: var(--border); color: var(--text-main); font-weight: 600; }
.btn-outline-secondary:hover { background: var(--bg-alt); color: var(--text-main); border-color: var(--text-muted); }

/* Mobile Menu Toggle */
.header__toggler { background: none; border: none; display: flex; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; }
.header__toggler span { display: block; width: 26px; height: 2.5px; background: var(--text-main); border-radius: 2px; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 350px; height: 100vh;
    background: #fff; z-index: 2000; padding: 2rem;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}
.mobile-menu.active { right: 0; }
.mobile-menu__head { display: flex; justify-content: space-between; margin-bottom: 3rem; align-items: center; }
.mobile-menu__close { background: none; border: none; font-size: 2rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.2rem; font-weight: 700; }
.mobile-menu__links a:hover { color: var(--primary); padding-left: 10px; }

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at top right, #eff6ff 0%, #ffffff 45%);
    overflow: hidden;
}
.hero__badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #e0f2fe;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero__title { font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero__text { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero__img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__img-wrapper:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.hero__img-wrapper img { width: 100%; height: auto; display: block; }

/* =========================================
   4. SERVICES CARDS
   ========================================= */
.bg-light-alt { background-color: var(--bg-alt); }

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 100%;
    transition: 0.4s;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
    border-color: var(--primary); 
}

.card-img { height: 220px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .card-img img { transform: scale(1.08); }

.card-body { padding: 2rem; flex-grow: 1; }
.card-icon { 
    width: 48px; height: 48px; background: #eff6ff; color: var(--primary); 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.2rem; margin-bottom: 1.2rem; 
}
.card-title { font-size: 1.35rem; margin-bottom: 0.8rem; }
.card-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* =========================================
   5. PROCESS STEPS
   ========================================= */
.step-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.step-item { 
    flex: 1; min-width: 280px; 
    background: #fff; padding: 2.5rem 2rem; border-radius: var(--radius); 
    border: 1px solid var(--border); text-align: center;
    transition: 0.3s;
}
.step-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.step-num { 
    font-size: 3.5rem; font-weight: 800; color: #f1f5f9; line-height: 1; margin-bottom: 0.5rem; 
}
.step-title { font-size: 1.25rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }

/* =========================================
   6. REVIEWS
   ========================================= */
.review-card {
    background: #fff; padding: 3rem; border-radius: var(--radius); 
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
    text-align: center; max-width: 850px; margin: 0 auto;
}
.stars { color: #fbbf24; margin-bottom: 1.5rem; font-size: 1.2rem; }
.review-text { font-size: 1.4rem; font-weight: 500; margin-bottom: 2rem; font-style: italic; color: var(--text-main); line-height: 1.4; }
.review-author { font-weight: 700; font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   7. FOOTER
   ========================================= */
.footer { background: #0f172a; color: #f8fafc; padding-top: 5rem; font-size: 0.95rem; }
.footer h5, .footer h6 { color: #fff; margin-bottom: 1.5rem; }
.footer p { color: #94a3b8; max-width: 300px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.8rem; }
.footer a { color: #94a3b8; transition: 0.2s; }
.footer a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; margin-top: 4rem; font-size: 0.85rem; color: #64748b; }


/* ... other styles ... */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    margin-top: 4rem;
    font-size: 0.85rem;
    color: #64748b;
    
    /* NEW: Flexbox to absolutely center content */
    display: flex;             /* Make it a flex container */
    justify-content: center;   /* Center items horizontally */
    align-items: center;       /* Center items vertically (if needed for height) */
    width: 100%;               /* Ensure it takes full width */
}

/* ... other styles ... */

/* Floating CTA */
.float-cta { position: fixed; bottom: 25px; right: 25px; z-index: 1100; display: flex; flex-direction: column; gap: 15px; }
.float-btn { 
    width: 60px; height: 60px; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; color: #fff; 
    font-size: 1.6rem; box-shadow: var(--shadow-float); transition: 0.3s; border: none; cursor: pointer;
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--primary); }
.float-btn:hover { transform: scale(1.1); }

/* =========================================
   8. STATIC PAGES (Legal)
   ========================================= */
.page-header {
    background: #f8fafc;
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-title { font-size: 2.5rem; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.page-breadcrumb { color: var(--text-muted); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }

.legal-content { padding: 4rem 0; }
.legal-container { max-width: 720px; margin: 0 auto; }

.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-main); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content p { margin-bottom: 1.5rem; color: #475569; font-size: 1.05rem; }
.legal-content ul { margin-bottom: 1.5rem; padding-left: 1.2rem; color: #475569; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--primary); text-decoration: underline; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Modal Input Group Styling */
.input-group-text {
    border: 1px solid var(--border);
    border-right: none;
    color: var(--primary);
    background-color: #f8fafc !important;
    min-width: 45px;
    justify-content: center;
}

.input-group .form-control, 
.input-group .form-select {
    border: 1px solid var(--border);
    border-left: none;
    padding: 0.6rem 1rem;
    box-shadow: none !important; /* Remove default bootstrap blue glow */
}

.input-group .form-control:focus, 
.input-group .form-select:focus {
    border-color: var(--border); /* Keep border neutral on focus */
    background-color: #fff !important;
}

/* Ensure Icons are centered */
.input-group-text i { font-size: 1rem; }

/* Modal Header */
.modal-header { border-bottom: none; }
.modal-footer { border-top: none; }