/* ==========================================================
   style.css – IZARO EXPRESS
   MOBILE-FIRST | FULLY RESPONSIVE | PREMIUM DESIGN
   ========================================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --primary-dark: #f4f8fc;
    --secondary: #f6b83e;
    --secondary-light: #fad680;
    --accent: #2a7faa;
    --white: #ffffff;
    --light-bg: #f8faff;
    --dark: #1a2634;
    --gray: #5a6a7e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
}

/* ---------- TYPOGRAPHY (Mobile First) ---------- */
h1 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
}
h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
}
h3 {
    font-size: 1.2rem;
    font-weight: 700;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (min-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3.2rem;
    }
    h2 {
        font-size: 2.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    p {
        font-size: 1.1rem;
    }
}

/* ---------- LINKS & LISTS ---------- */
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ---------- SECTION PADDING ---------- */
.section-padding {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 10px;
}
.section-header h2 span {
    color: var(--secondary);
}
.section-header p {
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 56px;
    }
    .section-tag {
        font-size: 0.85rem;
        padding: 4px 18px;
    }
}

/* ---------- BUTTONS (Touch-friendly) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-height: 48px;
    min-width: 48px;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}
.btn-primary:hover {
    background: #e5a82e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 184, 62, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    font-size: 0.95rem;
}
.btn-cta:hover {
    background: #0a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--dark);
    padding: 14px 28px;
    font-size: 0.95rem;
}
.btn-cta-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 14px 28px;
    font-size: 0.95rem;
}
.btn-cta-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-brochure {
    background: #e74c3c;
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.9rem;
}
.btn-brochure:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

@media (min-width: 576px) {
    .btn {
        padding: 14px 32px;
        font-size: 1rem;
        min-height: 52px;
    }
}

/* ---------- LOADER ---------- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--white);
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.loader-progress {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-top: 14px;
    overflow: hidden;
}
.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--secondary);
    border-radius: 4px;
    animation: progressFill 1.8s ease forwards;
}
@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ---------- HEADER ---------- */
.header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}
.logo i {
    color: var(--secondary);
    font-size: 1.6rem;
}
.logo span span {
    color: var(--secondary);
}
.logo img {
    height: 38px;
    width: auto;
    margin-left: 4px;
}

/* Navigation - Mobile */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 28px 32px;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
    overflow-y: auto;
}
.nav.open {
    right: 0;
}
.nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nav-list a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    color: var(--dark);
    display: block;
}
.nav-list a:hover,
.nav-list a.active {
    border-bottom-color: var(--secondary);
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
    .nav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        overflow-y: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 28px;
    }
    .nav-list a {
        font-size: 0.95rem;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
    }
    .hamburger {
        display: none;
    }
    .header-phone {
        display: flex;
    }
    .logo img {
        height: 45px;
    }
    .logo {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .logo img {
        height: 55px;
    }
    .nav-list {
        gap: 36px;
    }
    .header-phone {
        font-size: 0.95rem;
    }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
    padding: 12px 0;
    background: var(--light-bg);
    font-size: 0.85rem;
}
.breadcrumb a {
    color: var(--accent);
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--secondary);
}
.breadcrumb .separator {
    margin: 0 6px;
    color: var(--gray);
}
.breadcrumb .current {
    color: var(--gray);
}

@media (min-width: 768px) {
    .breadcrumb {
        padding: 16px 0;
        font-size: 0.9rem;
    }
}

/* ---------- HERO (Simple - No Slider) ---------- */
.hero {
    background: var(--white);
    color: var(--dark);
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    display: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: center;
    order: 2;
}
.hero-image {
    width: 100%;
    order: 1;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--light-bg);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.hero h1 {
    margin-bottom: 16px;
}
.hero h1 span {
    color: var(--secondary);
}
.hero p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (min-width: 576px) {
    .hero {
        padding: 40px 0 60px;
    }
    .hero-container {
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .hero-content {
        text-align: left;
        order: 1;
    }
    .hero-image {
        order: 2;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        margin: 0 0 28px;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .hero-stats {
        justify-content: flex-start;
    }
    .hero-image img {
        aspect-ratio: 4/3;
        height: auto;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
}

/* ---------- HERO SLIDER (Home Page - Full Width) ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    max-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 16px 20px;
    max-width: 90%;
    animation: fadeUp 0.8s ease forwards;
}
.slide-content h1 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.slide-content h1 span {
    color: var(--secondary);
}
.slide-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.slide-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.slide-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 184, 62, 0.4);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: var(--secondary);
    color: var(--dark);
}
.slider-arrow.prev {
    left: 8px;
}
.slider-arrow.next {
    right: 8px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slider-dots button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 28px;
    border-radius: 6px;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 576px) {
    .hero-slider {
        height: 55vh;
        min-height: 380px;
        max-height: 600px;
    }
    .slide-content h1 {
        font-size: 2.4rem;
    }
    .slide-content p {
        font-size: 1.05rem;
    }
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .slider-arrow.prev {
        left: 16px;
    }
    .slider-arrow.next {
        right: 16px;
    }
}

@media (min-width: 768px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
        max-height: 700px;
    }
    .slide-content h1 {
        font-size: 3rem;
    }
    .slide-content p {
        font-size: 1.15rem;
        max-width: 600px;
    }
    .slide-content .btn-primary {
        padding: 14px 38px;
        font-size: 1.05rem;
    }
    .slider-arrow {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .slider-arrow.prev {
        left: 24px;
    }
    .slider-arrow.next {
        right: 24px;
    }
    .slider-dots {
        bottom: 24px;
        gap: 12px;
    }
    .slider-dots button {
        width: 14px;
        height: 14px;
    }
    .slider-dots button.active {
        width: 40px;
    }
}

@media (min-width: 992px) {
    .slide-content h1 {
        font-size: 3.8rem;
    }
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border-bottom: 4px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary);
}

.service-card .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--light-bg);
    transition: var(--transition);
}
.service-card:hover .card-image {
    transform: scale(1.02);
}

.service-card .card-body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card .service-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}
.service-card:hover .service-icon {
    transform: rotateY(180deg);
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.6;
    flex: 1;
}
.service-card .service-link {
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    align-self: flex-start;
}
.service-card .service-link:hover {
    gap: 14px;
    color: var(--secondary);
}
.service-card .card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.service-card.hidden {
    display: none;
}

@media (min-width: 576px) {
    .services-grid {
        gap: 24px;
    }
    .service-card .card-image {
        height: 200px;
    }
    .service-card .card-body {
        padding: 24px 24px 28px;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- FILTER TABS ---------- */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}
.filter-tabs button {
    background: transparent;
    border: 2px solid #e5e9f0;
    padding: 8px 18px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}
.filter-tabs button:hover {
    border-color: var(--secondary);
    color: var(--dark);
}
.filter-tabs button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

@media (min-width: 576px) {
    .filter-tabs {
        gap: 12px;
        margin-bottom: 40px;
    }
    .filter-tabs button {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
}

/* ---------- PROCESS SECTION ---------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.process-step .step-number {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.process-step p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-step {
        padding: 30px 20px;
    }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: var(--secondary);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--dark);
    border-radius: 50%;
    opacity: 0.06;
}
.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.cta-content h2 span {
    color: var(--white);
}
.cta-content p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 28px;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 576px) {
    .cta-banner {
        padding: 50px 0;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-content p {
        font-size: 1.05rem;
    }
    .cta-buttons {
        gap: 14px;
    }
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 70px 0;
    }
    .cta-content h2 {
        font-size: 2.6rem;
    }
    .cta-buttons {
        gap: 16px;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--light-bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testimonial-stars {
    color: var(--secondary);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.testimonial-card > p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-bg);
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (min-width: 576px) {
    .testimonials-grid {
        gap: 24px;
    }
    .testimonial-card {
        padding: 28px;
    }
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- GOOGLE REVIEWS ---------- */
.google-reviews {
    background: var(--white);
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.google-review-card {
    background: var(--light-bg);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}
.google-review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.google-review-card .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.google-review-card .review-header .review-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}
.google-review-card .review-header .review-stars {
    color: var(--secondary);
    font-size: 0.8rem;
}
.google-review-card .review-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .google-review-card {
        padding: 24px;
    }
}

@media (min-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ---------- BEFORE-AFTER SLIDER ---------- */
.before-after {
    background: var(--light-bg);
}
.ba-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 16/10;
    background: var(--dark);
    touch-action: none;
}
.ba-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.ba-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s ease;
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.ba-handle::before {
    content: '⇔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ba-labels {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
}
.ba-labels span {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 576px) {
    .ba-handle::before {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .ba-labels {
        padding: 0 24px;
        bottom: 20px;
    }
    .ba-labels span {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
}

/* ---------- AUTO IMAGE SLIDER ---------- */
.auto-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.auto-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auto-slider-slide {
    min-width: 100%;
    padding: 10px;
}
.auto-slider-slide img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
}

.auto-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.auto-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #dce1e8;
    cursor: pointer;
    transition: var(--transition);
}
.auto-slider-dots button.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 6px;
}

@media (min-width: 576px) {
    .auto-slider-slide {
        padding: 20px;
    }
    .auto-slider-slide img {
        max-height: 400px;
    }
    .auto-slider-dots {
        gap: 10px;
        margin-top: 20px;
    }
    .auto-slider-dots button {
        width: 12px;
        height: 12px;
    }
    .auto-slider-dots button.active {
        width: 32px;
    }
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
    background: var(--dark);
    color: var(--white);
}
.video-section .section-header h2 {
    color: var(--white);
}
.video-section .section-header h2 span {
    color: var(--secondary);
}
.video-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/9;
    background: #0a1a2e;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1a2e, #1a4b6d);
    cursor: pointer;
}
.video-placeholder i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}
.video-placeholder:hover i {
    transform: scale(1.15);
}
.video-placeholder p {
    font-size: 0.95rem;
    opacity: 0.7;
}

@media (min-width: 576px) {
    .video-placeholder i {
        font-size: 4rem;
    }
    .video-placeholder p {
        font-size: 1.1rem;
    }
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--light-bg);
}
.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
    color: var(--dark);
    transition: var(--transition);
    gap: 12px;
}
.faq-question:hover {
    background: rgba(246, 184, 62, 0.06);
}
.faq-question i {
    transition: var(--transition);
    font-size: 1.1rem;
    color: var(--secondary);
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 18px 18px;
}

@media (min-width: 576px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 1.05rem;
    }
    .faq-answer {
        padding: 0 24px;
    }
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
}

/* ---------- CONTACT ---------- */
.contact-form-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form-box label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    display: block;
    font-size: 0.9rem;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    min-height: 48px;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(246, 184, 62, 0.15);
}

.contact-info-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.contact-info-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    width: 24px;
    margin-top: 2px;
}
.contact-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}
.contact-info-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}
.contact-info-item a {
    color: var(--accent);
}
.contact-info-item a:hover {
    color: var(--secondary);
}

.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-bg);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
}

@media (min-width: 576px) {
    .contact-form-box {
        padding: 32px;
    }
    .contact-info-box {
        padding: 32px;
    }
}

@media (min-width: 768px) {
    .contact-form-box {
        padding: 40px;
    }
    .contact-info-box {
        padding: 40px;
    }
    .map-placeholder {
        min-height: 300px;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 40px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-col .logo {
    color: var(--white);
    margin-bottom: 12px;
}
.footer-col .logo span span {
    color: var(--secondary);
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul a {
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--secondary);
    width: 18px;
    margin-top: 2px;
}
.footer-bottom {
    padding: 16px 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 6px;
}
.footer-bottom a {
    color: var(--secondary);
}
.footer-bottom a:hover {
    text-decoration: underline;
}

@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 768px) {
    .footer {
        padding-top: 60px;
    }
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    .footer-bottom {
        padding: 20px 0;
        font-size: 0.9rem;
    }
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 9998;
    border-top: 2px solid var(--secondary);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta p {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}
.sticky-cta p span {
    color: var(--secondary);
}
.sticky-cta .cta-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.sticky-cta .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    min-height: 40px;
    flex: 1;
    min-width: 80px;
}

@media (min-width: 576px) {
    .sticky-cta {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 24px;
    }
    .sticky-cta .cta-buttons {
        width: auto;
        flex: none;
    }
    .sticky-cta .btn {
        flex: none;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .sticky-cta p {
        font-size: 0.95rem;
    }
    .sticky-cta .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* ---------- GLASS HOVER EFFECT ---------- */
.glass-hover {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}
.glass-hover:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px) scale(1.01);
}

/* ---------- GRADIENT BORDER ---------- */
.gradient-border-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.gradient-border-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--secondary), var(--accent), #ff6b6b, var(--secondary), var(--accent), var(--secondary));
    border-radius: inherit;
    animation: rotateBorder 8s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gradient-border-card:hover::before {
    opacity: 1;
}
.gradient-border-card > * {
    position: relative;
    z-index: 1;
}
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 576px) {
    .gradient-border-card {
        padding: 28px 24px;
    }
}

@media (min-width: 768px) {
    .gradient-border-card {
        padding: 32px 28px;
    }
}

/* ---------- MODAL ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-box {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow-y: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box {
    transform: scale(1);
}
.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}
.modal-box img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: #e5e9f0;
}
.modal-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.modal-box h2 span {
    color: var(--secondary);
}
.modal-box .modal-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}
.modal-box .modal-description {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.modal-box .modal-description p {
    margin-bottom: 10px;
}
.modal-box .modal-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0;
}
.modal-box .modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
    list-style: none;
}
.modal-box .modal-features li i {
    color: var(--secondary);
    font-size: 1rem;
}
.modal-box .modal-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    border-top: 1px solid #e5e9f0;
    padding-top: 18px;
}

@media (min-width: 576px) {
    .modal-box {
        padding: 32px;
    }
    .modal-box img {
        max-height: 250px;
    }
    .modal-box h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .modal-box {
        padding: 40px;
    }
    .modal-box img {
        max-height: 300px;
    }
    .modal-box h2 {
        font-size: 2rem;
    }
    .modal-box .modal-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

/* ---------- UTILITY HELPERS ---------- */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.mt-1 {
    margin-top: 8px;
}
.mt-2 {
    margin-top: 16px;
}
.mt-3 {
    margin-top: 24px;
}
.mb-1 {
    margin-bottom: 8px;
}
.mb-2 {
    margin-bottom: 16px;
}
.mb-3 {
    margin-bottom: 24px;
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .header,
    .footer,
    .sticky-cta,
    .hero-slider,
    .cta-banner,
    .video-section,
    .modal-overlay,
    #loader {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}