/* Uber/Ola Style Modern Design */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e3e6eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --brand-dark: #031e39;
    --brand-dark-hover: #0a2c50;
    --brand-navy-soft: #0f3a63;
    --brand-tint: #eef2f7;
    --brand-bright: #facb0e;
    --brand-bright-dark: #e0b60d;
    --gold-accent: #b8892f;
    --brand-on-dark: #ffffff;
    --brand-on-bright: #031e39;
    --green: var(--brand-bright);
    --green-dark: var(--brand-bright-dark);
    --blue: #3b82f6;
    --red: #ef4444;
    --yellow: #f59e0b;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe57;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Status Bar */
.status-bar {
    background: var(--brand-dark);
    color: var(--brand-on-dark);
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.status-left .time {
    font-weight: 700;
}

.status-right {
    display: flex;
    gap: 6px;
    align-items: center;
}

.status-right i {
    font-size: 16px;
}

/* App Container */
.app-container {
    max-width: 428px;
    margin: 0 auto;
    background: var(--white);
    min-height: calc(100vh - 44px);
    position: relative;
    box-shadow: var(--shadow-xl);
}

/* Header */
.app-header {
    background: var(--white);
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.location-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
}

.header-logo {
    max-height: 38px;
    height: auto;
    width: auto;
}

.about-panel-title,
.about-panel-subtitle {
    margin: 0 0 12px;
}

/* Campaign page — same mobile-style header/nav on all screen sizes */
.campaign-landing .campaign-site-nav .offcanvas:not(.show) {
    visibility: hidden !important;
    transform: translateX(-100%) !important;
}

.campaign-landing .campaign-site-nav .offcanvas.show {
    visibility: visible !important;
    transform: translateX(0) !important;
}

.campaign-landing .campaign-site-nav .navegation_menubar .offcanvas {
    background-clip: border-box;
    border-right: 5px solid var(--brand-gold, #c9a227);
    overflow: auto;
    height: 100vh;
    max-width: 320px;
}

.campaign-landing .campaign-site-nav ul.custome_nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 24px;
}

.campaign-landing .campaign-site-nav ul.custome_nav > li.nav-item {
    width: 100%;
}

.campaign-landing .campaign-site-nav ul.custome_nav > li.nav-item > a {
    display: block;
    width: 100%;
    padding: 15px 0 !important;
    border-top: 2px solid var(--gray-100);
}

.campaign-landing .campaign-site-nav ul.custome_nav > li.nav-item:first-child > a {
    border-top: 0;
}

.campaign-landing .campaign-site-nav .navbar_upper_area {
    display: none;
}

.campaign-landing .campaign-site-nav .offcanvas-header {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 0;
}

.campaign-landing .campaign-site-nav .offcanvas-header .sidebar_close_btn {
    border-radius: 50%;
    opacity: 1;
    background-color: var(--brand-dark);
    box-sizing: content-box;
    width: auto;
    height: auto;
    padding: 8px;
}

.campaign-landing .campaign-site-nav svg.close-button-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

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

.location-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

.location-name {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* Site offcanvas nav in campaign header */
.campaign-site-nav {
    margin-left: 0;
}

.campaign-site-nav .navegation_menubar {
    display: flex;
    align-items: center;
}

.campaign-site-nav .navegation_menubar button.navbar-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.campaign-site-nav .navegation_menubar button.navbar-toggler .sidebar_open_icon {
    width: 22px;
    height: 16px;
}

.campaign-site-nav .sidebar_open_icon .burger-menu {
    width: 22px;
    height: 14px;
}

.campaign-site-nav .line-menu {
    background-color: var(--brand-dark);
}

/* Hidden SEO menu — in DOM for crawlers, not shown to users */
.about-section.seo-menu-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    left: auto !important;
    top: auto !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
    opacity: 0 !important;
}

/* Hamburger Menu */
.menu-section {
    margin-left: 0;
}

.hamburger-menu {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1100;
}

.hamburger-menu:hover {
    border-color: var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-menu.active {
    border-color: var(--black);
    background: var(--gray-50);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* About Section */
.about-section {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section.open {
    left: 0;
}

.about-container {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.about-section.open .about-container {
    transform: scale(1);
}

.about-header {
    background: var(--brand-dark);
    color: var(--brand-on-dark);
    padding: 24px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.about-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.about-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.about-content {
    padding: 24px;
    line-height: 1.6;
}

.about-content h4 {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.about-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

.about-content li strong {
    color: var(--black);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.feature i {
    color: var(--brand-dark);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-section {
    margin-top: 24px;
    padding: 20px 0 0;
    border-top: 2px solid var(--gray-100);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.contact-item i {
    color: var(--gray-600);
    font-size: 20px;
    width: 22px;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--gray-700);
    font-size: 15px;
}

.contact-item strong {
    color: var(--black);
    font-weight: 600;
}

/* Navigation Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1049;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu.open {
    right: 0;
}

.nav-menu-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-400);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-menu:hover {
    background: var(--gray-100);
    color: var(--black);
}

.nav-content {
    flex: 1;
    padding: 24px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.nav-link:hover {
    background: var(--gray-50);
    color: var(--black);
}

.nav-link:active {
    background: var(--gray-100);
    transform: scale(0.98);
}

.nav-link span {
    font-size: 16px;
    font-weight: 500;
}

.nav-spacer {
    height: 40px;
}

.nav-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--gray-100);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 24px;
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
    background: var(--brand-bright-dark);
    color: var(--brand-on-bright);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

/* Main Content */
.main-content {
    padding: 28px 20px 100px;
}

/* Hero Section */
.hero-section {
    padding: 0 0 36px;
}

.hero-content {
    text-align: left;
    margin-bottom: 28px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-tint);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.trust-badge i {
    color: var(--gold-accent);
    font-size: 12px;
}

.hero-title {
    font-size: 27px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 15.5px;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.55;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 2px 16px rgba(3, 30, 57, 0.06);
    text-align: left;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.action-card:active {
    transform: translateY(0);
}

.primary-action {
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    border: none;
}

.primary-action:hover {
    color: var(--brand-on-bright);
    background: var(--brand-bright-dark);
}

.secondary-action {
    background: var(--whatsapp);
    color: var(--white);
    border: none;
}

.secondary-action:hover {
    color: var(--brand-on-dark);
    background: var(--brand-dark);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.call-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.action-content {
    flex: 1;
}

.action-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.action-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.action-badge {
    position: absolute;
    top: 12px;
    right: 16px;
}

.action-badge span {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Section */
.booking-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.5;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-legal-notice {
    font-size: 13px;
    color: var(--gray-400);
    text-align: left;
    margin: 4px 0 0;
    line-height: 1.5;
}

.form-legal-notice a {
    color: var(--gray-600);
    font-weight: 500;
}

.form-microcopy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 13.5px;
    color: var(--gray-500);
    text-align: left;
    margin: 2px 0 0;
}

.form-microcopy i {
    color: var(--whatsapp);
    font-size: 14px;
    flex-shrink: 0;
}

.form-error {
    display: none;
    font-size: 12px;
    color: var(--red);
    margin-top: 4px;
    padding-left: 0;
    text-align: left;
}

.form-error.visible {
    display: block;
}

.form-input.is-invalid {
    border-color: var(--red);
}

.input-group {
    position: relative;
    text-align: left;
}

.input-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
    text-align: left;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    z-index: 2;
    color: var(--gray-400);
    font-size: 15px;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 40px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-family);
    background: var(--gray-50);
    color: var(--black);
    transition: all 0.2s ease;
    outline: none;
    text-align: left;
}

.form-input:focus {
    border-color: var(--brand-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(3, 30, 57, 0.08);
}

.form-input:focus + .input-icon {
    color: var(--brand-dark);
}

.form-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Book Button */
.book-btn {
    width: 100%;
    height: 48px;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
    box-shadow: 0 4px 14px rgba(3, 30, 57, 0.25);
}

.book-btn:hover {
    background: var(--brand-dark-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(3, 30, 57, 0.3);
}

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

.book-btn.loading .btn-text {
    opacity: 0;
}

.book-btn.loading .btn-loader {
    display: flex;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Why Choose Us Section */
.why-us-section {
    margin: 52px 0;
    padding: 28px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 18px;
}

.why-us-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: left;
    margin: 0 0 20px;
    line-height: 1.3;
}

.why-us-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-us-list .feature-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.why-us-list .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-us-list .feature-item:first-child {
    padding-top: 0;
}

.why-us-list .feature-item:hover {
    box-shadow: none;
    border-color: var(--gray-200);
}

.why-us-list.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 18px;
    flex-shrink: 0;
    margin: 0;
}

.why-us-list .feature-icon {
    background: var(--white);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}

.feature-desc {
    font-size: 13.5px;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.4;
}



/* Pricing Section */
.pricing-section {
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 203, 14, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-on-bright);
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.pricing-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pricing-desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.highlight-item i {
    color: var(--brand-dark);
    font-size: 18px;
    flex-shrink: 0;
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 428px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--gray-500);
}

.nav-item.active {
    color: var(--black);
    background: var(--gray-100);
}

.nav-item:hover {
    color: var(--black);
    background: var(--gray-50);
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 200;
}

.call-btn {
    width: 56px;
    height: 56px;
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all 0.2s ease;
    animation: pulse-call 3s infinite;
}

.call-btn:hover {
    color: var(--brand-on-bright);
    background: var(--brand-bright-dark);
    transform: scale(1.05);
}

.call-btn:active {
    transform: scale(0.95);
}

.call-icon {
    font-size: 24px;
}

@keyframes pulse-call {
    0% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(0, 0, 0, 0.3);
    }
    70% {
        box-shadow: var(--shadow-xl), 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 428px) {
    .app-container {
        max-width: 100%;
        box-shadow: none;
    }

    .main-content {
        padding: 24px 18px 140px;
    }

    .hero-section {
        padding: 0 0 32px;
    }

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

    .section-title {
        font-size: 21px;
    }

    .quick-actions {
        gap: 12px;
    }

    .action-card {
        padding: 16px;
    }

    .action-title {
        font-size: 16px;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-item {
        padding: 16px 10px;
    }

    .service-card {
        padding: 16px;
    }

    .call-button {
        right: 20px;
        bottom: 90px;
    }

    .call-btn {
        width: 52px;
        height: 52px;
    }

    .call-icon {
        font-size: 22px;
    }
}

@media (max-width: 375px) {
    .main-content {
        padding: 20px 16px 140px;
    }

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

    .booking-card {
        padding: 20px 16px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-us-section {
        padding: 24px 16px;
    }

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

    .action-card {
        padding: 14px;
    }

    .action-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .action-title {
        font-size: 15px;
    }

    .action-subtitle {
        font-size: 13px;
    }

    .feature-item {
        padding: 14px 8px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .feature-title {
        font-size: 15px;
    }
}

/* Accessibility */
.action-card:focus,
.service-card:focus,
.book-btn:focus,
.call-btn:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.form-input:focus {
    outline: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 6px 8px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 12px 16px -3px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 24px 30px -5px rgba(0, 0, 0, 0.3);
    }

    .action-card,
    .feature-item,
    .service-card {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .call-btn {
        animation: none;
    }
}

/* Drop Taxi Section */
.drop-taxi-section {
    padding: 0 24px 120px;
}

.drop-taxi-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drop-taxi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.drop-taxi-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drop-taxi-header:hover {
    background: var(--gray-50);
}

.drop-taxi-info {
    flex: 1;
}

.drop-taxi-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.vehicle-types {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-type {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-taxi-arrow {
    color: var(--gray-400);
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.drop-taxi-expanded {
    border-top: 1px solid var(--gray-100);
    padding: 20px;
    background: var(--gray-50);
}

.drop-taxi-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .input-group {
    flex: 1;
}

.drop-taxi-submit {
    width: 100%;
    height: 48px;
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.drop-taxi-submit:hover {
    background: var(--brand-bright-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.drop-taxi-submit:active {
    transform: translateY(0);
}

.drop-taxi-submit.loading .btn-text {
    opacity: 0;
}

.drop-taxi-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive adjustments for drop taxi */
@media (max-width: 428px) {
    .drop-taxi-section {
        padding: 0 20px 120px;
    }

    .drop-taxi-header {
        padding: 16px;
    }

    .drop-taxi-expanded {
        padding: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 375px) {
    .drop-taxi-section {
       padding: 40px 16px 120px;
    }

    .drop-taxi-title {
        font-size: 15px;
    }

    .vehicle-type {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Outstation Section */
.outstation-section {
    padding: 0 24px 120px;
}

.service-overview {
    margin-bottom: 24px;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.overview-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 20px;
    flex-shrink: 0;
}

.overview-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.overview-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.destinations-section {
    margin-bottom: 24px;
}

.destinations-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 50px 16px 30px 16px;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.destination-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.destination-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.destination-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    flex-shrink: 0;
}

.destination-info {
    flex: 1;
}

.destination-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.destination-info p {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 6px;
    line-height: 1.3;
}

.destination-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    display: block;
}

.booking-section {
    margin-bottom: 24px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-on-bright);
    font-size: 20px;
    flex-shrink: 0;
    margin: 0 auto;
}

.booking-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.booking-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-phone:hover {
    color: var(--brand-on-bright);
    background: var(--brand-bright-dark);
    transform: translateY(-1px);
}

.contact-phone i {
    font-size: 18px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.availability i {
    color: var(--brand-dark);
    font-size: 16px;
}

.key-features {
    margin-bottom: 24px;
}

.key-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.key-features .feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.key-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.key-features .feature-item i {
    display: block;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.key-features .feature-item span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
}

/* Bus Tempo Section */
.bus-tempo-section {
    padding: 0 24px 120px;
}

.service-overview {
    margin-bottom: 24px;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.overview-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 20px;
    flex-shrink: 0;
}

.overview-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.overview-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.booking-section {
    margin-bottom: 24px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-on-bright);
    font-size: 20px;
    flex-shrink: 0;
    margin: 0 auto;
}

.booking-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.booking-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-bright);
    color: var(--brand-on-bright);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-phone:hover {
    color: var(--brand-on-bright);
    background: var(--brand-bright-dark);
    transform: translateY(-1px);
}

.contact-phone i {
    font-size: 18px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.availability i {
    color: var(--brand-dark);
    font-size: 16px;
}

.key-features {
    margin-bottom: 24px;
}

.key-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 50px 16px 30px 16px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.key-features .feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.key-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.key-features .feature-item i {
    display: block;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.key-features .feature-item span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
}

/* Responsive adjustments for outstation */
@media (max-width: 428px) {
    .outstation-section {
        padding: 0 20px 120px;
    }

    .outstation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .outstation-header {
        padding: 14px;
    }

    .outstation-image {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .outstation-title {
        font-size: 13px;
    }

    .tour-duration,
    .vehicle-custom {
        font-size: 9px;
        padding: 2px 5px;
    }

    .outstation-expanded {
        padding: 14px;
    }

    .tour-itinerary h4,
    .tour-pricing h4 {
        font-size: 13px;
    }

    .tour-itinerary li {
        font-size: 11px;
    }

    .tour-pricing p {
        font-size: 13px;
    }

    .tour-pricing small {
        font-size: 10px;
    }
}

/* Responsive adjustments for bus tempo */
@media (max-width: 428px) {
    .bus-tempo-section {
        padding: 0 20px 120px;
    }

    .description-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .description-icon {
        align-self: center;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        padding: 14px;
    }

    .info-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        align-self: center;
    }
}

@media (max-width: 375px) {
    .outstation-section {
       padding: 40px 16px 120px;
    }

    .bus-tempo-section {
       padding: 40px 16px 120px;
    }

    .description-card {
        padding: 14px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-item {
        padding: 10px;
    }

    .event-item {
        padding: 12px;
    }

    .info-card {
        padding: 14px;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    margin: 52px 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 52px;
}

/* Section Header Spacing */
.section-header {
    margin-bottom: 28px;
    text-align: left;
}

.section-header .section-title {
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-header .section-subtitle {
    margin-bottom: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* FAQ Item Styles */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

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

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 12px;
    text-align: left;
}

.faq-toggle {
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--brand-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--gray-50);
    margin: 0;
}

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

.faq-answer p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 16px 0 0 0;
}

.faq-answer a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    color: var(--brand-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-cta-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 20px;
    margin-bottom: 16px;
}

.faq-cta-body h2 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--brand-dark);
}

.faq-cta-body p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0 0 20px 0;
    line-height: 1.55;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
}

.cta-button.primary {
    background: var(--brand-dark);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--brand-dark-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-button.whatsapp {
    background: var(--white);
    color: var(--whatsapp-dark);
    border-color: var(--whatsapp);
}

.cta-button.whatsapp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-button i {
    font-size: 15px;
}

/* FAQ show more */
.faq-more-hidden {
    display: none;
}

.faq-grid.show-all .faq-more-hidden {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-show-more-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-show-more-btn:hover {
    background: var(--gray-50);
    border-color: var(--brand-dark);
}

/* Floating call & WhatsApp buttons */
.floating-actions {
    position: fixed;
    bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 150;
}

.fab-call,
.fab-whatsapp {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fab-call {
    background: #007aff;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 3px 12px rgba(0, 122, 255, 0.35);
}

.fab-call:hover {
    background: #0066d6;
    color: var(--white);
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.4);
}

.fab-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.fab-call:active,
.fab-whatsapp:active {
    transform: scale(0.98);
}

@media (min-width: 429px) {
    .floating-actions {
        right: calc(50% - 214px + 18px);
    }
}

/* Sticky bottom CTA bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 428px;
    display: flex;
    gap: 8px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 200;
}

.sticky-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sticky-cta-btn.call {
    background: var(--brand-dark);
    color: var(--white);
}

.sticky-cta-btn.call:hover {
    background: var(--brand-dark-hover);
    color: var(--white);
}

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

.sticky-cta-btn.whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
}

/* Success/error modal */
.custom-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.custom-modal .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.custom-modal .modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.custom-modal .modal-icon--success {
    color: var(--brand-dark);
}

.custom-modal .modal-icon--warning {
    color: var(--yellow);
}

.custom-modal .modal-icon--info {
    color: var(--blue);
}

.custom-modal .modal-title {
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-size: 1.25rem;
}

.custom-modal .modal-message {
    margin-bottom: 2rem;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

.custom-modal .modal-ok-btn {
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.custom-modal .modal-ok-btn:hover {
    background: var(--brand-dark-hover);
}

/* Campaign footer compact */
.footer-content--campaign {
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-compact a {
    font-size: 14px;
    color: var(--gray-300);
    text-decoration: none;
}

.footer-links-compact a:hover {
    color: var(--white);
}
.app-footer {
    background: var(--brand-dark);
    color: var(--gray-50);
    padding: 28px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    margin-top: 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}

.footer-content--simple {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-brand p + p {
    margin-top: 10px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-400);
    line-height: 1.3;
}

.footer-contact-value {
    font-size: 15px;
    line-height: 1.55;
    color: var(--gray-300);
}

.footer-content h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

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

.footer-content li {
    margin-bottom: 12px;
}

.footer-content a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

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

.footer-content p {
    margin: 0;
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-content i {
    color: var(--gray-400);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 28px;
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

/* Responsive — footer & campaign layout */
@media (max-width: 768px) {
    .app-footer {
        padding: 28px 16px 20px;
        margin-top: 32px;
    }

    .footer-content,
    .footer-content--simple,
    .footer-content--campaign {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content--simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 22px;
    }

    .footer-content {
        gap: 20px;
    }
}
