
    /* === 1. THEME ENGINE === */
    :root {
        --primary: #0A1B2F; 
        --accent: #F67343; 
        --accent-gradient: linear-gradient(135deg, #F67343 0%, #d95424 100%);
        --bg-body: #F8FAFC;
        --bg-white: #FFFFFF;
        --glass: rgba(255, 255, 255, 0.8);
        --glass-border: 1px solid rgba(255, 255, 255, 0.6);
        --blur: blur(20px);
        --text-main: #1e293b;
        --text-muted: #64748b;
        --radius: 20px;
        --shadow: 0 20px 40px -10px rgba(10, 27, 47, 0.08);
        --shadow-hover: 0 25px 50px -12px rgba(10, 27, 47, 0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--bg-body);
        color: var(--text-main);
        line-height: 1.6;
      
    }

    h1, h2, h3 { color: var(--primary); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
    p { color: var(--text-muted); margin-bottom: 15px; }
    a { text-decoration: none; transition: 0.3s; }
    
    .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
    .section-padding { padding: 100px 0; }
    
    .section-title { font-size: 2.8rem; text-align: center; margin-bottom: 10px; }
    .section-desc { text-align: center; max-width: 600px; margin: 0 auto 50px; color: var(--text-muted); }

    /* UI COMPONENTS */
    .btn-primary {
        display: inline-flex; align-items: center; justify-content: center; gap: 10px;
        background: var(--accent-gradient); color: #fff;
        padding: 16px 32px; border-radius: 50px; font-weight: 700; border: none; cursor: pointer;
        box-shadow: 0 10px 20px -5px rgba(246, 115, 67, 0.4); transition: all 0.3s ease;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -5px rgba(246, 115, 67, 0.4); }
    
    .btn-whatsapp {
        background: #25D366; color: white; padding: 16px 32px; border-radius: 50px; 
        font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
        box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
        justify-content: center;
    }
    .btn-whatsapp:hover { transform: translateY(-3px); }

    .call-btn {
        color: var(--primary); font-weight: 700; font-size: 0.9rem;
        display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
    }
    .call-btn:hover { color: var(--accent); gap: 12px; }

    .navbar {
        position: fixed; top: 0; width: 100%; height: 80px; z-index: 1000;
        /*background: #0A1C30;*/
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: var(--blur);
        border-bottom: var(--glass-border);
        display: flex; align-items: center;
    }
    .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .nav-logo { height: 80px; margin-bottom: 10px; }
    .nav-cta { font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
    
    .hero {
        padding-top: 140px; padding-bottom: 80px; position: relative;
        /*background: linear-gradient(135deg, #0A1B2F 0%, #112640 100%);*/
        background: linear-gradient(135deg, #004962 0%, #002f3f 100%);
        color: white; overflow: hidden; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;
    }
    .hero::before {
        content: ''; position: absolute; inset: 0; opacity: 0.1;
        background-image: radial-gradient(#F8B629 1px, transparent 1px); background-size: 30px 30px;
    }
    .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

    .hero h2 { color: var(--accent); font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; }
    .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 30px; }
    
    .hero-ul { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
    .hero-ul li { list-style: none; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
    .hero-ul li i { color: var(--accent); }

    .hero-form {
        background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px);
        padding: 10%; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }
    .form-title { color: white; text-align: center; margin-bottom: 20px; font-size: 1.8rem; }
    .form-input {
        width: 100%; padding: 16px; background: rgba(255, 255, 255, 0.9); border: none;
        border-radius: 12px; margin-bottom: 15px; font-size: 1rem; color: var(--primary);
    }

    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .service-card {
        background: white; border-radius: 24px; overflow: hidden;
        border: 1px solid #f1f5f9; box-shadow: var(--shadow);
        transition: 0.4s; display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
    .service-card img { width: 100%; height: 240px; object-fit: cover; transition: 0.5s; }
    .service-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }

    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
    .feature-card {
        background: white; padding: 30px; border-radius: 20px; text-align: center;
        box-shadow: var(--shadow); border: 1px solid #f1f5f9;
    }
    .feature-icon { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.stats-section {
    background: linear-gradient(135deg, #004962 0%, #002f3f 100%);
    padding: 60px 0;
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item h2 {
    color: var(--accent);
    font-size: 3rem;
    margin-bottom: 5px;
}
.stat-item p {
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
    .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
    .step { text-align: center; position: relative; }
    .step-num {
        font-size: 4rem; font-weight: 900; color: #f1f5f9; line-height: 1;
        margin-bottom: -30px; position: relative; z-index: -1;
    }
    .step-card { background: white; padding: 20px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 700; }

    .locations-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .loc-tag {
        background: white; padding: 10px 24px; border-radius: 50px; font-weight: 600;
        border: 1px solid #e2e8f0; color: var(--text-muted); transition: 0.3s;
    }
    .loc-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }

    .swiper { padding: 30px; padding-bottom: 70px; }
    .swiper-button-next, .swiper-button-prev{
        color: #F67343;
    }
    .testimonial-card {
        background: white; padding: 40px; border-radius: 24px;
        box-shadow: var(--shadow); border: 1px solid #f1f5f9; height: 100%;
    }
    .stars { color: var(--accent); margin-bottom: 20px; }
    .author { font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.final-cta {
    /* background: var(--accent-gradient); */
    background: linear-gradient(135deg, #ff8a61 0%, #F67343 100%);
    padding: 80px 0;
    text-align: center;
    border-radius: 40px;
    margin: 40px 24px;
}
.final-cta h2 { font-size: 2.5rem; margin-bottom: 20px; color:#fff;}
.final-cta p { color: var(--primary); font-size: 1.2rem; font-weight: 500; max-width: 700px; margin: 0 auto 30px; }

@media(max-width: 768px) {
    .final-cta { margin: 20px 15px; padding: 50px 20px; }
    .final-cta h2 { font-size: 2rem; }
}
    footer { background: linear-gradient(135deg, #004962 0%, #002f3f 100%); color: #cbd5e1; padding: 80px 0 30px; margin-top: 50px; border-top-left-radius: 40px; border-top-right-radius: 40px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
    .footer-links a { display: block; color: #cbd5e1; margin-bottom: 10px; }
    
    .mobile-sticky {
        position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
        width: 92%; max-width: 400px; background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px); padding: 10px; border-radius: 100px;
        display: flex; gap: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 1000;
        border: 1px solid rgba(255,255,255,0.5);
    }
    .ms-btn {
        flex: 1; padding: 14px; border-radius: 50px; font-weight: 700; text-align: center;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    @media(max-width: 900px) {
        .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
        .hero h1 { font-size: 2.8rem; }
        .nav-cta { display: none; }
        .nav-inner {justify-content: center;}
        .hero-cta{justify-content: center !important;}
    }
    @media(max-width: 525px) {
        .hero-cta{justify-content: center !important;flex-direction: column;}
        .hero-ul li {
    font-size: .75rem;
    gap: 5px;
}
    }
    @media(min-width: 769px) { .mobile-sticky { display: none; } }
 .float{
    font-weight:600;
    vertical-align:middle;
    padding:16px;
    position:fixed;
    bottom: 20px;
    left: 20px;
    background-color:#F67343;
    color:#FFF;
    border-radius:50%;
    text-align:center;
    font-size:10px;
    z-index:99;
    border:1px solid #fff;
    transition:transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
    }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 115, 67, 0.8);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(246, 115, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 115, 67, 0);
  }
}

    
.my-float{width:30px;height:25px;animation:shake 1s infinite;rotate:90deg}
@keyframes shake{0%{transform:rotate(0deg)}
25%{transform:rotate(10deg)}
50%{transform:rotate(-10deg)}
75%{transform:rotate(10deg)}
100%{transform:rotate(0deg)}
}
    