/* ============================================
   NAUGACHIA TAXI SERVICE - Main Stylesheet
   Theme: Yellow, Black, White (Light Theme)
   Author: NTS Team
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Primary Colors */
    --yellow-50: #FFFDE7;
    --yellow-100: #FFF9C4;
    --yellow-200: #FFF59D;
    --yellow-300: #FFF176;
    --yellow-400: #FFEE58;
    --yellow-500: #FFD200;
    --yellow-600: #FFC107;
    --yellow-700: #FFB300;
    --yellow-800: #FF8F00;
    --yellow-900: #FF6F00;

    /* Neutral Colors */
    --black: #111111;
    --dark-900: #1a1a1a;
    --dark-800: #222222;
    --dark-700: #333333;
    --dark-600: #444444;
    --dark-500: #555555;
    --gray-400: #888888;
    --gray-300: #aaaaaa;
    --gray-200: #d0d0d0;
    --gray-100: #e8e8e8;
    --gray-50: #f5f5f5;
    --white: #ffffff;

    /* Functional Colors */
    --success: #22c55e;
    --whatsapp: #25D366;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 20px;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-yellow: 0 8px 30px rgba(255,210,0,0.3);
    --shadow-yellow-lg: 0 12px 40px rgba(255,210,0,0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-preloader: 10000;
    --z-header: 1000;
    --z-floating: 999;
    --z-overlay: 900;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-700);
    background-color: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-800);
}

/* ============ UTILITY CLASSES ============ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow-x: hidden;
}

.highlight {
    color: var(--yellow-700);
    position: relative;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--yellow-500);
    color: var(--dark-800);
    border-color: var(--yellow-500);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    background: var(--yellow-600);
    border-color: var(--yellow-600);
    box-shadow: var(--shadow-yellow-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-800);
    border-color: var(--dark-800);
}

.btn-outline:hover {
    background: var(--dark-800);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark-800);
    color: var(--yellow-500);
    border-color: var(--dark-800);
}

.btn-dark:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.btn-full {
    width: 100%;
}

/* ============ PRELOADER ============ */
.preloader {
    display: none !important;
}

.loader-wrap {
    text-align: center;
}

.taxi-icon {
    width: 100px;
    animation: carBounce 1s ease-in-out infinite;
}

.taxi-icon svg {
    width: 100%;
}

.loader-road {
    width: 200px;
    height: 3px;
    background: var(--gray-100);
    border-radius: 2px;
    margin: 15px auto;
    overflow: hidden;
}

.road-line {
    width: 60%;
    height: 100%;
    background: var(--yellow-500);
    border-radius: 2px;
    animation: roadMove 1.2s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-800);
    margin-top: 10px;
}

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

@keyframes roadMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* ============ HEADER / NAVBAR ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 14px 0;
    transition: all var(--transition-normal);
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.logo-icon img,
.logo-icon svg {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

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

.logo-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--dark-800);
}

.logo-tagline {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--yellow-700);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-800);
    background: var(--yellow-50);
}

.nav-link.active {
    background: var(--yellow-500);
    color: var(--dark-800);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger .bar {
    width: 26px;
    height: 3px;
    background: var(--dark-800);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--yellow-50) 0%, var(--white) 40%, var(--yellow-50) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--yellow-500);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--yellow-400);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--yellow-600);
    top: 30%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--dark-800);
    bottom: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite reverse;
    opacity: 0.05;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-600);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--gray-100);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-800);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-500);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-800);
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-600);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-car-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-car-glow {
    position: absolute;
    width: 80%;
    height: 60%;
    bottom: 10%;
    left: 10%;
    background: radial-gradient(ellipse, rgba(255, 210, 0, 0.25), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-car-svg {
    width: 100%;
    position: relative;
    z-index: 1;
    animation: carFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

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

.road-reflection {
    width: 80%;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255, 210, 0, 0.1), transparent);
    border-radius: 50%;
    animation: reflectionPulse 4s ease-in-out infinite;
}

@keyframes reflectionPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.6; }
    50% { transform: scaleX(0.9); opacity: 0.3; }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--yellow-50);
    color: var(--yellow-800);
    border: 1px solid var(--yellow-200);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-800);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-500);
    line-height: 1.7;
}

/* ============ SERVICES SECTION ============ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-500), var(--yellow-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow-200);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-800);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--dark-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yellow-800);
    transition: all var(--transition-normal);
}

.service-link:hover {
    color: var(--yellow-900);
    gap: 12px;
}

/* ============ WHY CHOOSE US ============ */
.why-us {
    background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-900) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.why-us .section-badge {
    background: rgba(255, 210, 0, 0.15);
    border-color: rgba(255, 210, 0, 0.3);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: var(--gray-300);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 210, 0, 0.1);
    border-color: rgba(255, 210, 0, 0.3);
    transform: translateY(-5px);
}

.why-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow-500);
    opacity: 0.4;
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ============ FLEET SECTION ============ */
.fleet {
    background: var(--gray-50);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.fleet-card {
    padding: 36px 28px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-card.featured {
    border-color: var(--yellow-500);
    box-shadow: var(--shadow-yellow);
    transform: scale(1.05);
}

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

.fleet-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.fleet-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    background: var(--yellow-500);
    color: var(--dark-800);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-card.featured .fleet-badge {
    background: var(--dark-800);
    color: var(--yellow-500);
}

.fleet-icon {
    width: 160px;
    height: 80px;
    margin: 10px auto 20px;
}

.fleet-icon svg {
    width: 100%;
    height: 100%;
}

.fleet-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark-800);
}

.fleet-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.fleet-features {
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
}

.fleet-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark-500);
    border-bottom: 1px solid var(--gray-100);
}

.fleet-features li:last-child {
    border-bottom: none;
}

.fleet-price {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow-700);
    margin-bottom: 20px;
    margin-top: auto;
}

/* ============ PRICING TABLE ============ */
.pricing {
    background: var(--white);
}

.pricing-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table thead {
    background: var(--dark-800);
}

.pricing-table th {
    padding: 18px 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yellow-500);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--dark-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-table tbody tr {
    transition: background var(--transition-fast);
}

.pricing-table tbody tr:hover {
    background: var(--yellow-50);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.pricing-note a {
    color: var(--yellow-700);
    font-weight: 600;
}

/* ============ ABOUT SECTION ============ */
.about {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--yellow-500);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: 0;
}

.about-card-visual {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.about-icon-large svg {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--yellow-500);
    color: var(--dark-800);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-yellow);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-badge {
    display: inline-block;
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--dark-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

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

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--yellow-100);
    color: var(--yellow-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 40px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    font-size: 1.4rem;
    color: var(--yellow-500);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--dark-500);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--yellow-500);
    color: var(--dark-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-800);
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--dark-600);
}

.slider-btn:hover {
    background: var(--yellow-500);
    border-color: var(--yellow-500);
    color: var(--dark-800);
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    background: var(--yellow-500);
    width: 28px;
    border-radius: 5px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--yellow-500) 0%, var(--yellow-600) 50%, var(--yellow-700) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-800);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--dark-700);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CONTACT SECTION ============ */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-200);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--dark-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-800);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--dark-500);
    line-height: 1.6;
}

.contact-card a {
    color: var(--yellow-700);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--yellow-900);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-800);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--dark-700);
    background: var(--gray-50);
    transition: all var(--transition-normal);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--yellow-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--yellow-500);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-800);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

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

.footer-desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--yellow-500);
    border-radius: 2px;
}

.footer-links-col ul li,
.footer-contact-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
}

.footer-links-col ul li a:hover {
    color: var(--yellow-500);
    padding-left: 8px;
}

.footer-contact-col ul li {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact-col ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--yellow-500);
}

.footer-contact-col ul li a {
    color: var(--yellow-500);
}

.footer-contact-col ul li a:hover {
    color: var(--yellow-400);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

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

.footer-credit {
    font-size: 0.75rem;
    color: var(--gray-400);
    opacity: 0.6;
    margin-top: 4px;
}

/* ============ FLOATING CTA ============ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: var(--z-floating);
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.float-call {
    background: var(--yellow-500);
    color: var(--dark-800);
    animation: ringPulse 2s ease-in-out infinite;
}

.float-whatsapp {
    background: var(--whatsapp);
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 210, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 210, 0, 0); }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--dark-800);
    color: var(--yellow-500);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-floating);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--yellow-500);
    color: var(--dark-800);
}

/* ============ SELECTION STYLING ============ */
::selection {
    background: var(--yellow-500);
    color: var(--dark-800);
}

::-moz-selection {
    background: var(--yellow-500);
    color: var(--dark-800);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow-600);
}
