:root {
  --primary-color: #0b1f3c; /* Deep Blue for Authority */
  --secondary-color: #1a73e8; /* Vibrant Blue */
  --accent-color: #25d366; /* WhatsApp Green */
  --accent-hover: #128c7e;
  --text-dark: #333333;
  --text-light: #666666;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --danger: #dc3545; /* For the disclaimer */
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: var(--secondary-color); transition: 0.3s; }
img { max-width: 100%; height: auto; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; color: var(--primary-color); margin-bottom: 1rem; }
h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
ul { list-style: none; }
ul li { position: relative; margin-bottom: 10px; color: var(--text-light); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--background-light); }
.text-center { text-align: center; }

/* Header */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.logo img { max-height: 45px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--primary-color); font-size: 1.05rem; }
.nav-links a:hover { color: var(--secondary-color); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; transition: 0.3s; border: none; font-size: 1.05rem; }
.btn svg { margin-right: 8px; width: 20px; height: 20px; fill: currentColor; }
.btn-accent { background: var(--accent-color); color: var(--white); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--secondary-color); color: var(--white); }
.btn-block { display: flex; width: 100%; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); padding: 70px 0; }
.hero-content { display: flex; gap: 40px; align-items: center; justify-content: space-between; }
.hero-text { flex: 1; text-align: left; }
.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-text p { color: rgba(255,255,255,0.9); font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; }

/* Hero Features */
.hero-features { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-features span { background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 30px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; }
.hero-features span svg { margin-right: 6px; fill: var(--accent-color); width: 18px; height: 18px; }

/* Hero Disclaimer */
.hero-disclaimer { margin-top: 30px; background: rgba(220, 53, 69, 0.95); padding: 15px; border-radius: 8px; font-weight: bold; border: 2px solid #fff; display: inline-block; font-size: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.hero-disclaimer p { color: #fff; margin: 0; font-size: 0.95rem; }

/* Hero Form */
.hero-form-wrapper { flex: 0 0 380px; }
.hero-form { 
    background: var(--white); 
    padding: 35px 30px; 
    border-radius: 16px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.25); 
    color: var(--text-dark); 
}
.hero-form h3 { 
    color: var(--primary-color); 
    margin-bottom: 25px; 
    font-size: 1.5rem; 
    text-align: center; 
    font-weight: 800;
}
.input-group {
    margin-bottom: 15px;
}
.hero-form input, .hero-form select { 
    width: 100%; 
    padding: 14px 15px; 
    border: 2px solid #e2e8f0; 
    border-radius: 8px; 
    font-size: 1rem; 
    font-family: inherit;
    transition: all 0.3s;
    background: #f8fafc;
}
.hero-form input:focus, .hero-form select:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}
.hero-form button { 
    margin-top: 15px; 
    justify-content: center; 
    width: 100%; 
    padding: 16px; 
    font-size: 1.15rem; 
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* Services Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 30px 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); text-align: center; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; align-items: center;}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card img { max-height: 180px; margin-bottom: 25px; transition: transform 0.3s; }
.card:hover img { transform: scale(1.05); }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.card p { flex-grow: 1; margin-bottom: 20px;}
.service-btn { margin-top: auto; width: 100%; }

/* Why Choose Us */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-item { background: var(--white); padding: 25px; border-radius: 12px; display: flex; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-icon { background: rgba(26, 115, 232, 0.1); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; flex-shrink: 0; }
.feature-icon svg { width: 24px; height: 24px; fill: var(--primary-color); }
.feature-item h4 { margin: 0; font-size: 1.1rem; }

/* Testimonials */
.testimonial-card { background: var(--background-light); padding: 30px; border-radius: 12px; font-style: italic; position: relative; }
.testimonial-card::before { content: '"'; font-size: 4rem; color: rgba(0,0,0,0.05); position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimonial-author { margin-top: 20px; display: flex; align-items: center; font-style: normal; }
.testimonial-author strong { color: var(--primary-color); }
.stars { color: #f5b301; font-size: 1.2rem; }

/* FAQs Accordion */
details.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); overflow: hidden; transition: 0.3s; }
details.faq-item summary { padding: 20px; font-weight: 600; font-size: 1.1rem; color: var(--primary-color); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--secondary-color); line-height: 0; }
details[open].faq-item summary::after { content: '-'; }
.faq-answer { padding: 0 20px 20px; color: var(--text-light); border-top: 1px solid rgba(0,0,0,0.05); margin-top: 5px; padding-top: 15px; }

/* Pages Styling */
.page-header { background: var(--primary-color); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { color: var(--white); margin: 0; }
.content-box { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-top: -30px; position: relative; z-index: 10; }

/* Disclaimer Alert Box */
.alert { padding: 20px; margin-bottom: 25px; border: 1px solid transparent; border-radius: 8px; font-weight: 500; }
.alert-warning { background: #fff3cd; color: #856404; border-color: #ffeeba; }
.alert-danger { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* Verification Box */
.verification-card { border: 2px solid #e9ecef; border-radius: 12px; padding: 30px; margin-bottom: 30px; }
.verification-card h3 { border-bottom: 2px solid var(--background-light); padding-bottom: 15px; margin-bottom: 20px; }
.detail-row { display: flex; padding: 12px 0; border-bottom: 1px dashed #e9ecef; }
.detail-row:last-child { border-bottom: none; }
.detail-label { font-weight: 600; width: 150px; color: var(--primary-color); }

/* Floating Call Button */
.floating-call-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}
.floating-call-btn {
    pointer-events: auto;
    background: #1c3b8a; /* Deep bold blue per screenshot */
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 45px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 85%;
    max-width: 360px;
    transition: 0.3s;
}
.floating-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    color: var(--white);
    background: var(--primary-color);
}
.floating-call-btn svg {
    fill: currentColor;
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

/* Footer */
footer { background: var(--primary-color); color: var(--white); padding: 60px 0 30px; margin-top: 60px;}
footer h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 20px; }
footer a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
footer a:hover { color: var(--white); padding-left: 5px; }
footer p { color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-disclaimer { background: rgba(0,0,0,0.2); padding: 20px; border-radius: 8px; margin-bottom: 30px; border-left: 4px solid var(--danger); text-align: center; }
.footer-disclaimer p { margin: 0; color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 0.95rem; color: rgba(255,255,255,0.6); display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-bottom a { display: inline; color: rgba(255,255,255,0.6); margin: 0; }
.footer-bottom a:hover { padding-left: 0; color: var(--white); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { text-align: center; }
  .hero-features { justify-content: center; }
  .hero-form-wrapper { width: 100%; max-width: 400px; margin: 0 auto; }
  .hero { padding: 60px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .content-box { padding: 25px; }
  footer { padding-bottom: 100px; } /* Prevent footer from overlapping with floating button */
}
