:root {
    --primary: #004b93;
    --primary-dark: #002d5a;
    --secondary: #ff9900;
    --success: #25d366;
    --arattai-yellow: #FFC107;
    --arattai-text: #1e293b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f1f5f9; color: var(--dark); line-height: 1.6; }

/* Top Header Bar */
.top-bar { background: var(--dark); color: white; padding: 8px 5%; font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.location-search-box { display: flex; align-items: center; gap: 6px; }
.location-search-box input { padding: 5px 12px; border-radius: 20px; border: none; font-size: 0.8rem; outline: none; }
.location-search-box button { background: var(--secondary); color: white; border: none; padding: 5px 12px; border-radius: 20px; cursor: pointer; font-size: 0.8rem; font-weight: 600; }

.social-header-links { display: flex; gap: 14px; font-size: 1.1rem; }
.social-header-links a { color: white; transition: 0.3s; }
.social-header-links a:hover { color: var(--secondary); }

/* Sticky Main Navigation Header */
header { background: white; padding: 12px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-container img { height: 46px; width: auto; object-fit: contain; }
.brand-title h1 { font-size: 1.3rem; color: var(--primary); font-weight: 700; line-height: 1.1; }
.brand-title p { font-size: 0.75rem; color: var(--gray); font-weight: 600; }

nav { display: flex; gap: 18px; }
nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; transition: 0.3s; padding-bottom: 3px; }
nav a:hover, nav a.active-link { color: var(--primary); border-bottom: 2px solid var(--primary); }

/* Buttons Style */
.btn { padding: 9px 18px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: 0.3s; }
.btn-home { background: var(--primary); color: white; }
.btn-home:hover { background: var(--primary-dark); }
.btn-wa { background: var(--success); color: white; }
.btn-arattai { background: var(--arattai-yellow); color: var(--arattai-text); font-weight: 700; }
.btn-primary { background: var(--primary); color: white; }
.full-btn { width: 100%; justify-content: center; padding: 12px; font-size: 1rem; }

/* Dynamic Pages Toggle */
.page-section { display: none; padding: 30px 5%; }
.page-section.active { display: block; animation: fadeIn 0.4s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Banner */
.hero { background: linear-gradient(135deg, #004b93 0%, #002d5a 100%); color: white; padding: 50px 5%; text-align: center; border-radius: 0 0 24px 24px; box-shadow: 0 10px 25px rgba(0,75,147,0.2); }
.hero h2 { font-size: 2rem; margin-bottom: 12px; font-weight: 700; }
.hero p { font-size: 1rem; opacity: 0.9; max-width: 650px; margin: 0 auto 25px auto; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Step Tracker Card */
.quick-booking-card { background: white; margin: -25px auto 30px auto; max-width: 800px; padding: 20px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 15px; position: relative; z-index: 10; }
.step-item { text-align: center; flex: 1; min-width: 150px; }
.step-icon { width: 40px; height: 40px; background: #e0f2fe; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px auto; font-weight: 700; }
.step-arrow { color: var(--gray); }

/* Section Title */
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h3 { font-size: 1.6rem; color: var(--primary); font-weight: 700; }
.section-title p { color: var(--gray); font-size: 0.9rem; }

/* Grid & Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card { background: white; padding: 22px; border-radius: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); text-align: center; transition: 0.3s; border: 1px solid #e2e8f0; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 20px rgba(0,0,0,0.08); border-color: var(--primary); }
.service-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; }
.service-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); font-weight: 600; }
.service-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 12px; height: 40px; }
.service-rate { font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 15px; background: #f0f9ff; padding: 6px; border-radius: 6px; }

/* Promo Banner Box */
.banner-box { background: white; border-radius: 14px; padding: 25px; margin: 35px 0; border-left: 6px solid var(--secondary); box-shadow: 0 4px 15px rgba(0,0,0,0.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.banner-box p { font-size: 0.85rem; color: var(--gray); }

/* Safety Page Grid */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.trust-item { background: white; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--primary); }
.trust-icon { font-size: 2.5rem; color: var(--primary); }
.trust-item p { font-size: 0.8rem; color: var(--gray); margin-top: 5px; }

/* Forms Container */
.form-container { background: white; max-width: 650px; margin: 0 auto; padding: 35px; border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.form-container h4 { margin-bottom: 20px; text-align: center; color: var(--primary); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px; border: 1px solid #cbd5e1; border-radius: 8px; outline: none; font-size: 0.9rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }

.worker-fields { display: none; background: #f8fafc; padding: 18px; border-radius: 10px; border: 1px solid #e2e8f0; margin-top: 12px; }
.worker-fields h5 { color: var(--primary); margin-bottom: 12px; }

.contact-info-footer { margin-top: 25px; text-align: center; font-size: 0.85rem; border-top: 1px solid #e2e8f0; padding-top: 15px; color: var(--gray); }
.contact-info-footer a { color: var(--primary); font-weight: bold; text-decoration: none; }

/* FAQ Styles */
.faq-section { max-width: 750px; margin: 40px auto 0 auto; }
.faq-item { background: white; padding: 16px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #e2e8f0; }
.faq-item h5 { color: var(--primary); font-size: 0.95rem; margin-bottom: 5px; }
.faq-item p { font-size: 0.85rem; color: var(--gray); }

/* Footer */
footer { background: var(--dark); color: white; text-align: center; padding: 30px 20px; margin-top: 50px; font-size: 0.85rem; }
.footer-socials { margin-bottom: 15px; display: flex; justify-content: center; gap: 18px; font-size: 1.4rem; }
.footer-socials a { color: white; transition: 0.3s; }
.footer-socials a:hover { color: var(--secondary); }
.footer-links { margin-top: 12px; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: white; text-decoration: underline; }

/* Floating Buttons Group */
.floating-btn-group { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.floating-btn { padding: 10px 18px; border-radius: 50px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.floating-btn-wa { background: var(--success); color: white; }
.floating-btn-arattai { background: var(--arattai-yellow); color: var(--arattai-text); font-weight: 700; }
