/* ============================================
   DTC INTERNATIONAL PACKERS - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary: #FF6600;
    --primary-dark: #E55D00;
    --primary-light: #FF8533;
    --primary-rgb: 255, 102, 0;
    --dark: #1F2937;
    --dark-2: #111827;
    --dark-3: #374151;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--body-font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Utils */
.text-orange { color: var(--primary) !important; }
.bg-orange { background: var(--primary) !important; }
.bg-dark-theme { background: var(--dark) !important; }
.bg-dark-2 { background: var(--dark-2) !important; }

/* ======= TOP OFFER BANNER ======= */
.top-offer-banner {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    border-bottom: 2px solid var(--primary);
}

.top-offer-banner .offer-text i {
    color: var(--primary);
}

.top-offer-banner .offer-phone {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.top-offer-banner .offer-phone:hover {
    color: var(--white);
}

/* ======= HEADER / NAVBAR ======= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-brand {
    flex-shrink: 0;
}

.navbar .navbar-toggler {
    flex-shrink: 0;
}

/* Brand */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

/* CTA Button */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-cta-primary:active {
    transform: translateY(0);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Nav CTA */
.nav-cta .btn-cta-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0); }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ======= DESKTOP NAV ======= */
.desktop-nav {
    flex: 1;
    gap: 16px;
}

.desktop-nav .navbar-nav {
    gap: 4px;
    margin: 0 auto;
}

.desktop-nav .nav-cta {
    flex-shrink: 0;
}

.desktop-nav .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.92rem;
}

.desktop-nav .navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.desktop-nav .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.desktop-nav .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Desktop dropdown hover */
@media (min-width: 992px) {
    .desktop-nav .dropdown {
        position: relative;
    }
    
    .desktop-nav .dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.2s ease;
        border: none;
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        padding: 8px;
        margin-top: 4px;
        min-width: 220px;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .desktop-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .desktop-nav .dropdown-item {
        border-radius: var(--radius-sm);
        padding: 10px 16px;
        font-weight: 500;
        font-size: 0.9rem;
        transition: var(--transition);
        color: var(--dark);
    }
    
    .desktop-nav .dropdown-item:hover {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
        padding-left: 20px;
    }
}

/* ======= OFF-CANVAS SIDEBAR (MOBILE NAV) ======= */
#mobileNav.offcanvas {
    background: var(--white);
    width: 300px;
    border-left: none;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}

#mobileNav .offcanvas-header {
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 20px;
}

#mobileNav .offcanvas-header .brand-wrapper {
    gap: 8px;
}

#mobileNav .offcanvas-header .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

#mobileNav .offcanvas-header .brand-name {
    font-size: 0.95rem;
}

#mobileNav .offcanvas-header .brand-sub {
    font-size: 0.6rem;
}

#mobileNav .offcanvas-body {
    padding: 16px 20px;
    overflow-y: auto;
}

#mobileNav .navbar-nav {
    padding: 0;
    flex-direction: column;
}

#mobileNav .nav-link {
    padding: 12px 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--dark);
    font-weight: 500;
}

#mobileNav .nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

#mobileNav .dropdown-menu {
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary);
    padding-left: 16px;
    margin: 0 0 8px;
    border-radius: 0;
    position: static;
    float: none;
    background: var(--gray-100);
}

#mobileNav .dropdown-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

#mobileNav .dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

#mobileNav .nav-cta {
    margin-top: 20px;
}

.offcanvas-backdrop.show {
    opacity: 0.6;
}

/* ======= MOBILE BOTTOM BAR ======= */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 3px;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-bar-btn i {
    font-size: 1.2rem;
}

.mobile-bar-btn.call-btn {
    background: var(--success);
    color: var(--white);
}

.mobile-bar-btn.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.mobile-bar-btn.quote-btn {
    background: var(--primary);
    color: var(--white);
}

.mobile-bar-btn:hover {
    opacity: 0.9;
    color: var(--white);
}

/* ======= FLOATING BUTTONS ======= */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

.floating-call {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    transition: var(--transition);
    animation: call-pulse 2s infinite 0.5s;
}

@keyframes call-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 4px 40px rgba(var(--primary-rgb), 0.7); }
}

.floating-call:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ======= HERO SECTION ======= */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 50%, #0F172A 100%);
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600518464441-9159a4dea21f?w=1920&q=80') center/cover;
    background-position: center 30%;
    opacity: 0.5;
    z-index: 0;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(31,41,55,0.75) 50%, rgba(15,23,42,0.88) 100%);
    z-index: 0;
}

@media (max-width: 767px) {
    .hero-section .hero-bg {
        opacity: 0.6;
        background-position: center center;
    }
    .hero-section .hero-overlay {
        background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(31,41,55,0.8) 100%);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-300);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-cta-group .btn {
    padding: 16px 36px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Form */
.hero-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 420px;
    margin-left: auto;
}

.hero-form-wrapper .quote-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.hero-form-wrapper .quote-form .form-header {
    padding: 0;
    margin-bottom: 20px;
}

.hero-form-wrapper .quote-form .form-header h4 {
    font-size: 1.3rem;
}

.hero-form-wrapper .quote-form .form-floating > .form-control,
.hero-form-wrapper .quote-form .form-floating > .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
}

.hero-form-wrapper .quote-form .form-floating > .form-control::placeholder {
    color: transparent;
}

.hero-form-wrapper .quote-form .form-floating > .form-control:focus,
.hero-form-wrapper .quote-form .form-floating > .form-select:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.hero-form-wrapper .quote-form .form-floating > label {
    color: var(--gray-400);
}

.hero-form-wrapper .quote-form .form-floating > .form-control:focus ~ label,
.hero-form-wrapper .quote-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
    opacity: 0.8;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.hero-form-wrapper .form-trust {
    border-color: rgba(255,255,255,0.1);
}

.hero-form-wrapper .form-trust .trust-item {
    color: var(--gray-300);
}

.hero-form-wrapper .form-call-support {
    color: var(--gray-300);
}

.hero-form-wrapper .form-call-support a {
    color: var(--primary);
}

/* ======= QUOTE FORM ======= */
.quote-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.quote-form .form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.quote-form .form-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.quote-form .form-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.quote-form .form-header p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.quote-form .form-floating > .form-control,
.quote-form .form-floating > .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    height: 56px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quote-form .form-floating > .form-control:focus,
.quote-form .form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.quote-form .form-floating > label {
    padding: 14px 16px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.quote-form .form-floating > .form-control:focus ~ label,
.quote-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.quote-form .form-floating > .form-select ~ label {
    color: var(--primary);
    opacity: 0.8;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
    font-size: 0.85rem;
}

.form-call-support {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.form-call-support i {
    color: var(--primary);
    margin-right: 4px;
}

.form-call-support a {
    font-weight: 700;
    color: var(--dark);
}

.form-call-support a:hover {
    color: var(--primary);
}

/* ======= SECTION BASE ======= */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title h2 .highlight {
    color: var(--primary);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.text-white .section-title h2 { color: var(--white); }
.text-white .section-title p { color: var(--gray-300); }
.text-white .section-title .section-badge { background: rgba(255,255,255,0.1); color: var(--white); }

/* ======= TRUST BADGES ======= */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ======= WHY CHOOSE US ======= */
.choose-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.choose-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.choose-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.choose-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.choose-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ======= PROCESS TIMELINE ======= */
.process-section {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    opacity: 0.05;
}

.process-container {
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.process-step .step-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb), 0.2));
    z-index: 1;
}

@media (max-width: 767px) {
    .process-connector { display: none; }
    .process-step { margin-bottom: 30px; }
}

/* ======= SERVICE CARDS ======= */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.service-card .card-img .card-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card .card-body {
    padding: 24px;
}

.service-card .card-body .service-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-card .card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card .card-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card .card-body .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.service-card .card-body .service-features li {
    font-size: 0.83rem;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .card-body .service-features li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* ======= TESTIMONIALS ======= */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card .rating {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.testimonial-card .testimonial-author .author-info h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-card .testimonial-author .author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ======= CTA SECTION ======= */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    opacity: 0.08;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.cta-section .btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 1.05rem;
    padding: 16px 40px;
}

.cta-section .btn-cta-primary:hover {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-cta-secondary {
    border-color: var(--white);
    color: var(--white);
    font-size: 1.05rem;
    padding: 16px 40px;
}

.cta-section .btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* ======= GALLERY ======= */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ======= REVIEW SECTION ======= */
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-card .review-header .review-source {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-weight: 600;
}

.review-card .review-header .review-date {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ======= PAGE HEADER ======= */
.page-header {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    opacity: 0.08;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-500);
}

/* ======= AREA LIST ======= */
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
}

.area-list li {
    background: var(--gray-100);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.area-list li:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.area-list li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.area-list li:hover i {
    color: var(--white);
}

/* ======= CONTACT PAGE ======= */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-card .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--dark-2);
    color: var(--gray-300);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-logo small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact li a {
    color: var(--gray-400);
}

.footer-contact li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ======= SCROLL TO TOP ======= */
.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

/* ======= EXIT POPUP ======= */
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.exit-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 460px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from { transform: translateY(50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.exit-popup-close:hover {
    color: var(--dark);
}

.exit-popup-body {
    padding: 40px 32px;
    text-align: center;
}

.exit-popup-body .exit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.exit-popup-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.exit-popup-body p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.exit-popup-body .form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 1rem;
}

.exit-popup-body small {
    display: block;
    margin-top: 12px;
    font-size: 0.78rem;
}

/* ======= SWIPER OVERRIDES ======= */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

/* ======= PAGE CONTENT ======= */
.content-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.content-section p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul {
    padding-left: 20px;
}

.content-section ul li {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ======= PRICING / OFFER BANNERS ======= */
.offer-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.offer-banner h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.offer-banner p {
    opacity: 0.9;
    margin-bottom: 16px;
}

.offer-banner .offer-discount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

/* ======= FAQ ======= */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .faq-question {
    padding: 16px 20px;
    background: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item .faq-question:hover {
    background: var(--gray-100);
}

.faq-item .faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

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

.faq-item .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 16px;
    max-height: 300px;
}

.faq-item .faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ======= FEATURE LIST (Checklist style) ======= */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.feature-checklist li i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ======= WHY US ROW ======= */
.why-us-media {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.why-us-media .media-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.why-us-media h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-us-media p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1199px) {
    .hero-form-wrapper {
        margin: 40px auto 0;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 8px;
    }
}

@media (max-width: 991px) {
    .hero-form-wrapper {
        margin-top: 30px;
    }
    .hero-form-wrapper .quote-form {
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }
    .hero-form-wrapper .quote-form .form-header {
        border-bottom-color: rgba(255,255,255,0.1);
    }
    .hero-form-wrapper .quote-form .form-header h4 {
        color: var(--white);
    }
    .hero-form-wrapper .quote-form .form-header p {
        color: var(--gray-300);
    }
    .hero-form-wrapper .quote-form .form-floating > .form-control,
    .hero-form-wrapper .quote-form .form-floating > .form-select {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
        color: var(--white);
    }
    .hero-form-wrapper .quote-form .form-floating > label {
        color: var(--gray-400);
    }
    .hero-form-wrapper .form-trust {
        border-top-color: rgba(255,255,255,0.1);
    }
    .hero-form-wrapper .form-trust .trust-item {
        color: var(--gray-300);
    }
    .hero-form-wrapper .form-call-support {
        color: var(--gray-300);
    }
    .hero-form-wrapper .form-call-support a {
        color: var(--white);
    }
}

@media (max-width: 767px) {
    .top-offer-banner {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    .floating-whatsapp {
        bottom: 75px;
    }
    
    .floating-call {
        display: none !important;
    }
    
    .scroll-top-btn {
        bottom: 75px;
    }

    .hero-section {
        padding: 40px 0 100px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-hero-mobile-only {
        display: inline-flex !important;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    
    .hero-stats {
        gap: 12px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }

    .section-padding-sm {
        padding: 30px 0;
    }
    
    .trust-badges {
        gap: 10px;
        padding: 10px 0;
    }
    
    .trust-badge-item {
        font-size: 0.72rem;
        gap: 6px;
    }
    
    .trust-badge-item i {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 50px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-top {
        padding: 30px 0 20px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .choose-card {
        padding: 24px 18px;
    }
    
    .choose-card .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .service-card .card-body {
        padding: 18px;
    }
    
    .pricing-box {
        padding: 24px 18px;
    }
    
    .why-us-media {
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .hero-form-wrapper {
        padding: 16px;
    }
    
    .quote-form {
        padding: 20px 14px;
    }
    
    .quote-form .form-header h4 {
        font-size: 1.1rem;
    }
    
    .form-trust {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .exit-popup-body {
        padding: 24px 16px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .service-card .card-img {
        height: 170px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .offer-banner {
        padding: 20px;
    }
    
    .offer-banner h3 {
        font-size: 1.1rem;
    }
}

/* ======= AOS OVERRIDES ======= */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* ======= COUNTDOWN TIMER ======= */
.offer-countdown {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

/* ======= PRICING TABLE ======= */
.pricing-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-box.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.15);
}

.pricing-box.featured::before {
    content: 'Best Value';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-box .pricing-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-box h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-box .pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-box .pricing-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-box .pricing-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.pricing-box .pricing-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ======= SERVICE DETAIL PAGE ======= */
.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ======= STEPS TIMELINE ======= */
.steps-timeline {
    position: relative;
    padding-left: 40px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.steps-item {
    position: relative;
    margin-bottom: 32px;
}

.steps-item:last-child {
    margin-bottom: 0;
}

.steps-item .step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
}

.steps-item h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.steps-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}
