* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

header {
    background: #0F2D52;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff7a00;
}

.hero {
    background: linear-gradient(rgba(15, 45, 82, 0.85), rgba(15, 45, 82, 0.85)),
                url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ff7a00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 15px 10px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

section {
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0F2D52;
}

.about, .contact {
    background: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #0F2D52;
    margin-bottom: 15px;
}

.form-container {
    max-width: 700px;
    margin: auto;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background: #0F2D52;
    color: white;
    text-align: center;
    padding: 25px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

@media(max-width: 768px) {
    .hero h1 { font-size: 32px; }
    nav { display: none; } /* Consider adding a mobile menu button here */
}

/* ── Step Progress Indicator ── */
.step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 35px;
    counter-reset: step;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 100px;
}

.step-dot:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.step-dot.active:not(:last-child)::after,
.step-dot.completed:not(:last-child)::after {
    background: #ff7a00;
}

.step-dot span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}

.step-dot.active span,
.step-dot.completed span {
    background: #ff7a00;
}

.step-dot p {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    font-weight: 500;
}

.step-dot.active p {
    color: #ff7a00;
    font-weight: 600;
}

/* ── Form Steps ── */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInStep 0.3s ease; }

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

.form-step h3 {
    color: #0F2D52;
    font-size: 20px;
    margin-bottom: 6px;
}

.step-hint {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ── Radio Card Grid ── */
.radio-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
    background: #fff;
}

.radio-card label i {
    font-size: 26px;
    color: #0F2D52;
    transition: color 0.2s;
}

.radio-card input[type="radio"]:checked + label {
    border-color: #ff7a00;
    background: #fff7f0;
    color: #ff7a00;
}

.radio-card input[type="radio"]:checked + label i {
    color: #ff7a00;
}

.radio-card label:hover {
    border-color: #ff7a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

/* ── Field Groups ── */
.field-group {
    margin-bottom: 18px;
}

.field-group label {
    display: block;
    font-weight: 600;
    color: #0F2D52;
    margin-bottom: 6px;
    font-size: 14px;
}

.field-group input,
.field-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    margin-bottom: 0;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.required { color: #e53935; margin-left: 2px; }
.optional { color: #aaa; font-weight: 400; font-size: 13px; }

/* ── Form Actions ── */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-prev {
    background: #e0e0e0;
    color: #333;
}

.btn-prev:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* ── WhatsApp option ── */
.whatsapp-option {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #666;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-left: 6px;
    transition: background 0.2s;
}

.btn-whatsapp-small:hover { background: #1ebe5d; }

/* ── Mobile Nav ── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0F2D52;
        padding: 16px 5%;
        z-index: 998;
    }
    nav.open { display: flex; }
    nav a { margin: 8px 0; }
}

/* ── Popup ── */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.show { display: flex; }

.popup-content {
    background: #fff;
    border-radius: 12px;
    padding: 36px 30px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popup-content h3 { color: #0F2D52; margin-bottom: 10px; font-size: 22px; }
.popup-content p  { color: #666; margin-bottom: 20px; }

.close-popup {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

.close-popup:hover { color: #333; }

/* ── Header flex fix ── */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-svg {
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-subtext {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.logo-img { height: 40px; }


/* ═══════════════════════════════════════════════════════════════════
   ENHANCED STYLES - MODERN UI COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── PAGE LOADER ── */
.page-loader {
    position: fixed;
    inset: 0;
    background: #0F2D52;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ── LOADING ANIMATION ── */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ── STICKY QUOTE BUTTON ── */
.sticky-quote-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-quote-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }
}

/* ── FLOATING BUTTONS ENHANCED ── */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-now {
    background: #4CAF50;
}

.whatsapp-fab {
    background: #25D366;
}

.book-service {
    background: #ff7a00;
}

/* ── WHATSAPP WIDGET ── */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
}

.wa-chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.wa-notification {
    position: absolute;
    top: 0;
    right: 0;
    background: #e53935;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.wa-chat-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.wa-chat-box.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.wa-chat-header {
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wa-header-info h4 {
    margin: 0;
    font-size: 16px;
}

.online-status {
    margin: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.wa-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.wa-close-btn:hover {
    transform: scale(1.2);
}

.wa-chat-body {
    padding: 20px 15px;
    background: #f0f0f0;
    min-height: 200px;
}

.wa-message {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.wa-message p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.wa-time {
    font-size: 11px;
    color: #999;
}

.wa-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-quick-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    color: #333;
}

.wa-quick-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.wa-chat-footer {
    padding: 12px;
    border-top: 1px solid #e0e0e0;
}

.wa-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.wa-start-chat:hover {
    background: #1ebe5d;
}

/* ── HERO ENHANCEMENTS ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 5% 60px;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 45, 82, 0.92), rgba(255, 122, 0, 0.25)),
                url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease infinite alternate;
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-main-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
}

.hero-text-section {
    animation: slideInLeft 0.8s ease;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge-row {
    display: none;
    gap: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff7a00;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hero-actions-enhanced {
    display: none;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

.btn-hero-primary:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.45);
    background: linear-gradient(135deg, #e65100, #ff7a00);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(8px);
}

.btn-hero i {
    font-size: 22px;
    min-width: 22px;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-label {
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.btn-subtext {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

/* Hero Cards - Right Side */
.hero-visual-section {
    display: none;
    position: relative;
    height: 400px;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 180px;
    animation: floatCard1 3s ease-in-out infinite;
}

.hero-card-2 {
    top: 120px;
    right: 0;
    width: 180px;
    animation: floatCard2 3.5s ease-in-out infinite;
}

.hero-card-3 {
    bottom: 0;
    left: 80px;
    width: 180px;
    animation: floatCard3 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.card-icon {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 12px;
}

.hero-card h4 {
    font-size: 16px;
    color: #0F2D52;
    margin-bottom: 6px;
    font-weight: 700;
}

.hero-card p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ── CIRCULAR PROGRESS RINGS ── */
.stats-rings {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.ring-stat {
    position: relative;
    text-align: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.ring-background {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: #ff7a00;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-number {
    font-size: 24px;
    font-weight: 700;
    color: #0F2D52;
}

.ring-text {
    font-size: 12px;
    color: #666;
}

/* ── ENHANCED TIMELINE ── */
.milestone-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0F2D52, #ff7a00);
}

.milestone {
    position: relative;
    text-align: center;
    z-index: 1;
    background: #fff;
    padding: 10px;
}

.milestone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F2D52, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.milestone-year {
    font-size: 20px;
    font-weight: 700;
    color: #0F2D52;
    margin-bottom: 5px;
}

.milestone-desc {
    font-size: 12px;
    color: #666;
    max-width: 120px;
}

/* ── BEFORE/AFTER SLIDER ── */
.before-after-gallery {
    background: #f8f8f8;
    padding: 70px 5%;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #0F2D52;
    background: white;
    color: #0F2D52;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0F2D52;
    color: white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ba-container {
    transition: opacity 0.3s ease;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
}

.ba-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.ba-handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F2D52;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ba-label {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #0F2D52;
}

/* ── REVIEWS CAROUSEL ── */
.customer-reviews {
    background: white;
    padding: 70px 5%;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 16px;
}

.overall-rating {
    text-align: center;
}

.big-rating {
    font-size: 72px;
    font-weight: 800;
    color: #ff7a00;
    line-height: 1;
}

.stars {
    color: #ff7a00;
    font-size: 24px;
    margin: 10px 0;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.star-label {
    width: 30px;
    font-weight: 600;
    color: #0F2D52;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(to right, #ff7a00, #ffb347);
    transition: width 1s ease;
}

.bar-count {
    width: 40px;
    text-align: right;
    color: #666;
    font-size: 13px;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 14px);
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    font-size: 50px;
    color: #0F2D52;
}

.reviewer-info h4 {
    margin: 0;
    color: #0F2D52;
    font-size: 16px;
}

.star-rating {
    color: #ff7a00;
    font-size: 14px;
    margin-top: 5px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer-location {
    color: #999;
    font-size: 13px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #0F2D52;
    background: white;
    color: #0F2D52;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.carousel-btn:hover {
    background: #0F2D52;
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff7a00;
    width: 30px;
    border-radius: 5px;
}

/* ── COMPARISON TABLE ── */
.why-choose-us {
    background: #f8f8f8;
    padding: 70px 5%;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto 50px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table thead th {
    background: #0F2D52;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.us-column {
    background: #fff7f0;
    font-weight: 600;
    color: #0F2D52;
}

.comparison-table .fa-check-circle {
    color: #4CAF50;
    margin-right: 8px;
}

.comparison-table .fa-minus-circle {
    color: #e53935;
    margin-right: 8px;
}

.comparison-table .fa-crown {
    color: #ff7a00;
    margin-right: 5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
}

.badge-item i {
    font-size: 48px;
    color: #ff7a00;
    display: block;
    margin-bottom: 10px;
}

.badge-item p {
    font-weight: 600;
    color: #0F2D52;
}

/* ── FAQ ACCORDION ── */
.faq-section {
    background: white;
    padding: 70px 5%;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff7a00;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #0F2D52;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff7a00;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f8f8;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
    .hero-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-section {
        height: 300px;
    }

    .hero-card {
        width: 150px !important;
        padding: 20px;
    }

    .card-icon {
        font-size: 32px;
    }

    .hero-card h4 {
        font-size: 14px;
    }

    .hero-card p {
        font-size: 12px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 5% 40px;
        min-height: auto;
    }

    .hero-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-box {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-actions-enhanced {
        max-width: 100%;
    }

    .btn-hero {
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-visual-section {
        height: 250px;
    }

    .hero-card-1 {
        top: 0;
        left: 0;
        width: 140px;
    }

    .hero-card-2 {
        top: 90px;
        right: 0;
        width: 140px;
    }

    .hero-card-3 {
        bottom: 0;
        left: 50px;
        width: 140px;
    }

    .card-icon {
        font-size: 28px;
    }

    .hero-card h4 {
        font-size: 13px;
    }

    .hero-card p {
        font-size: 11px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 5% 30px;
        min-height: auto;
    }

    .hero-main-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-badge-row {
        margin-bottom: 16px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }

    .stat-box {
        padding: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-actions-enhanced {
        max-width: 100%;
    }

    .btn-hero {
        padding: 12px 16px;
        font-size: 14px;
        gap: 12px;
    }

    .btn-hero i {
        font-size: 18px;
    }

    .btn-label {
        font-size: 14px;
    }

    .btn-subtext {
        font-size: 11px;
    }

    .hero-visual-section {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }

    .big-rating {
        font-size: 56px;
    }
}

/* ── SMOOTH ANIMATIONS ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Additional responsive fixes for other sections */
@media (max-width: 768px) {
    .stats-rings {
        gap: 20px;
    }

    .milestone-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

    .review-card {
        min-width: 100%;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .trust-badges {
        gap: 20px;
    }

    .sticky-quote-button {
        bottom: 140px;
        right: 10px;
    }

    .floating-buttons {
        right: 10px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   NEW SERVICE BOX DATA VISUALIZATION STYLES
   ═══════════════════════════════════════════════════════════════════ */

#services {
    background: #fff;
    padding: 70px 5%;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-category {
    animation: fadeInUp 0.8s ease;
}

.category-title {
    font-size: 28px;
    color: #0F2D52;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.category-title i {
    color: #ff7a00;
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── SERVICE BOX ── */
.service-box {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0F2D52, #ff7a00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: #ff7a00;
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.15);
}

.service-box:hover::before {
    transform: scaleX(1);
}

/* Popular Box Highlight */
.service-box.popular-box {
    background: linear-gradient(135deg, #fff7f0 0%, #fffbf8 100%);
    border: 2px solid #ff7a00;
    position: relative;
}

.service-box.popular-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent #ff7a00 transparent transparent;
    opacity: 0.1;
}

.popular-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff7a00;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.box-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0F2D52, #1a4a7d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 12px rgba(15, 45, 82, 0.2);
}

.box-header h4 {
    font-size: 18px;
    color: #0F2D52;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.box-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.box-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #c8e6c9;
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.service-box.popular-box .feature-tag {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffe0b2;
}

.service-box.popular-box .feature-tag:hover {
    background: #e65100;
    color: white;
    border-color: #e65100;
}

.box-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0F2D52, #1a4a7d);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
}

.box-cta:hover {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.3);
}

.service-box.popular-box .box-cta {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
}

.service-box.popular-box .box-cta:hover {
    background: linear-gradient(135deg, #e65100, #ff7a00);
}

/* ── RESPONSIVE SERVICE BOXES ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .box-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .box-header h4 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
    }

    .category-title {
        font-size: 24px;
    }

    .service-box {
        padding: 24px 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .box-header h4 {
        font-size: 16px;
    }

    .box-description {
        font-size: 13px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 20px;
    }

    .service-box {
        padding: 20px 16px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .box-header h4 {
        font-size: 15px;
    }

    .box-features {
        gap: 6px;
    }

    .feature-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .box-cta {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* ── ANIMATION ON SCROLL ── */
.service-box {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.services-grid > :nth-child(1) {
    animation-delay: 0.1s;
}

.services-grid > :nth-child(2) {
    animation-delay: 0.15s;
}

.services-grid > :nth-child(3) {
    animation-delay: 0.2s;
}

.services-grid > :nth-child(4) {
    animation-delay: 0.25s;
}

.services-grid > :nth-child(5) {
    animation-delay: 0.3s;
}

.services-grid > :nth-child(6) {
    animation-delay: 0.35s;
}

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


/* ── SATISFACTION BADGES ── */
.satisfaction-badge {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.satisfaction-badge:hover {
    transform: translateY(-8px);
    border-color: #ff7a00;
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.2);
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.badge-icon i {
    color: #ff7a00;
    margin: 0 4px;
}

.badge-icon i.fa-crown {
    font-size: 56px;
    margin: 0;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.satisfaction-badge h3 {
    font-size: 18px;
    color: #0F2D52;
    margin-bottom: 8px;
    font-weight: 700;
}

.satisfaction-badge p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}
