/* =============================================
   SERIFOS RENT A CAR — Stylesheet
   Mediterranean coastal aesthetic
   ============================================= */

/* --- CSS Variables --- */
:root {
    --color-navy: #1B3A5C;
    --color-navy-deep: #0F2440;
    --color-aegean: #2E6B9C;
    --color-sky: #5BA4D9;
    --color-sand: #F7F3EE;
    --color-sand-dark: #EDE7DF;
    --color-white: #FFFFFF;
    --color-text: #2C3E50;
    --color-text-light: #6B7C8D;
    --color-orange: #FF6B35;
    --color-orange-end: #FF8C00;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1EBE57;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Oswald', 'Montserrat', sans-serif;

    --header-height: 150px;
    --header-height-shrunk: 98px;

    --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 58, 92, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 58, 92, 0.15);
    --shadow-card: 0 4px 20px rgba(27, 58, 92, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(27, 58, 92, 0.16);

    --radius: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: transparent;
    transition: all var(--transition);
}

.header.scrolled {
    height: var(--header-height-shrunk);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 130px;
    width: auto;
    transition: height var(--transition);
}

.header.scrolled .logo-img {
    height: 85px;
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.header.scrolled .nav-link:hover {
    color: var(--color-navy);
}

/* Header CTA */
.header-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--color-navy);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(15, 36, 64, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--header-height-shrunk) + 24px);
    padding-bottom: 32px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-cta {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('photos/starting.png') center/cover no-repeat;
}

/* Decorative pattern overlay for texture */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(91, 164, 217, 0.15) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 36, 64, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
    transition: all var(--transition);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35); }
    50% { box-shadow: 0 8px 40px rgba(255, 107, 53, 0.55); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* --- WAVE DIVIDERS --- */
.wave-divider {
    margin-top: -2px;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-flip {
    transform: scaleX(-1) scaleY(-1);
    margin-top: 0;
    margin-bottom: -2px;
}

/* --- SECTION COMMON --- */
.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 12px;
}

.section-tag.center { text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title.center { text-align: center; }

.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-desc.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

/* --- ABOUT --- */
.about {
    background: var(--color-sand);
    padding: 80px 0;
}

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

.about-desc {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-top: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 40px;
}

.about-intro {
    text-align: center;
    margin-bottom: 48px;
}

.about-article {
    max-width: 820px;
    margin: 0 auto 64px;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-navy);
    margin-top: 40px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-article > .about-subtitle:first-child {
    margin-top: 0;
}

.about-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-row .about-section-image {
    order: 2;
}

.about-section-row--reverse .about-section-image {
    order: 1;
}

.about-section-row--reverse .about-section-text {
    order: 2;
}

.about-section-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 6px 24px rgba(15, 36, 64, 0.12);
}

.about-section-text > .about-subtitle:first-child {
    margin-top: 0;
}

@media (max-width: 800px) {
    .about-section-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .about-section-row .about-section-image,
    .about-section-row--reverse .about-section-image {
        order: 1;
    }

    .about-section-row .about-section-text,
    .about-section-row--reverse .about-section-text {
        order: 2;
    }

    .about-section-image img {
        min-height: 240px;
        max-height: 320px;
    }
}

.about-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-features-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-subtitle {
        font-size: 22px;
        margin-top: 32px;
    }
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-aegean);
    box-shadow: var(--shadow-sm);
}

.feature h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.feature p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* --- FLEET --- */
.fleet {
    padding: 80px 0 100px;
}

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

/* Car Card */
.car-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.car-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.car-badge-new {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.45);
    text-transform: uppercase;
    animation: badgePulse 2.4s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.car-image img.mirror {
    transform: scaleX(-1);
}

.car-details {
    margin-top: 8px;
    margin-bottom: 12px;
}

.car-details summary {
    font-size: 12px;
    color: var(--color-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-family: var(--font-body);
    user-select: none;
}

.car-details summary::-webkit-details-marker {
    display: none;
}

.car-details summary::before {
    content: '▶';
    font-size: 9px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.car-details[open] summary::before {
    transform: rotate(90deg);
}

.car-details-content {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-border);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-highlight {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 12px;
}

.car-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    background: rgba(15, 36, 64, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.car-info {
    padding: 24px;
}

.car-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.car-price {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.car-price strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-orange);
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 6px 10px;
    background: var(--color-sand);
    border-radius: 8px;
}

.spec svg {
    color: var(--color-aegean);
    flex-shrink: 0;
}

.car-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.car-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

.car-btn-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.car-btn-row .car-btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 13px;
    gap: 6px;
}

.car-btn-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}

/* --- FOOTER --- */
.footer {
    background: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 82px;
    width: 82px;
    display: block;
    background: #ffffff;
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer .logo-img {
    height: 90px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-top: 40px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.footer-contact .footer-flag {
    opacity: 1;
    margin-top: 4px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

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

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

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-sky);
}

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals for car cards */
.car-card.reveal:nth-child(1) { transition-delay: 0s; }
.car-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.car-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.car-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.car-card.reveal:nth-child(5) { transition-delay: 0.4s; }
.car-card.reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- SUBPAGE: Active nav link --- */
.nav-link.active {
    color: var(--color-orange) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* --- SUBPAGE: Page Banner --- */
.page-banner {
    position: relative;
    min-height: 340px;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            var(--color-navy-deep) 0%,
            var(--color-navy) 40%,
            var(--color-aegean) 100%
        );
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 36, 64, 0.25);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    padding-top: var(--header-height-shrunk);
}

.page-banner-content h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 52px);
    color: var(--color-white);
    margin-bottom: 8px;
}

.page-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* --- SUBPAGE: CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: var(--color-white);
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-navy);
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

/* --- Homepage guide banner --- */
.guide-banner {
    padding: 50px 0;
    background: var(--color-sand);
}

.guide-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 40px;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 36, 64, 0.06);
    border: 1px solid var(--color-border);
}

.guide-banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #ff8554);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.guide-banner-text {
    flex: 1;
    min-width: 0;
}

.guide-banner-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-navy);
    margin: 0 0 6px;
    line-height: 1.2;
}

.guide-banner-text p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.guide-banner-cta {
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .guide-banner { padding: 36px 0; }
    .guide-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
        gap: 18px;
    }
    .guide-banner-icon { width: 56px; height: 56px; }
    .guide-banner-text h3 { font-size: 21px; }
}

/* --- SUBPAGE: Explore --- */
.explore-section {
    padding: 80px 0 60px;
}

.explore-intro {
    max-width: 820px;
    margin: 0 auto 48px;
}

.explore-intro p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.explore-section-title {
    font-family: var(--font-display);
    color: var(--color-navy);
    font-size: clamp(28px, 4vw, 36px);
    text-align: center;
    margin-bottom: 12px;
}

.explore-section-desc {
    text-align: center;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 36px;
}

.explore-block {
    padding: 40px 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.explore-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15, 36, 64, 0.06);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 36, 64, 0.1);
}

.explore-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-sand-dark, #f0e6d2);
    line-height: 1;
    font-weight: 400;
    user-select: none;
}

.explore-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0 60px 8px 0;
}

.explore-card-distance {
    display: inline-block;
    background: var(--color-sand);
    color: var(--color-orange);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.explore-card-text {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.explore-tips {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.07), rgba(255, 107, 53, 0.02));
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 18px;
    padding: 36px 32px;
    margin: 56px auto;
    max-width: 820px;
}

.explore-tips h2 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
}

.explore-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explore-tips li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 15px;
}

.explore-tips li::before {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 10px;
    color: var(--color-orange);
    font-weight: 800;
    font-size: 16px;
}

@media (max-width: 700px) {
    .explore-section { padding: 50px 0 40px; }
    .explore-block { padding: 28px 0; }
    .explore-grid { grid-template-columns: 1fr; gap: 14px; }
    .explore-card { padding: 22px; }
    .explore-card-title { font-size: 20px; }
    .explore-tips { padding: 28px 22px; margin: 40px auto; }
}

/* --- SUBPAGE: Terms --- */
.terms-section {
    padding: 80px 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-block {
    margin-bottom: 40px;
}

.terms-block h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-sand-dark);
}

.terms-block ul {
    padding-left: 0;
}

.terms-block li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.terms-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-aegean);
    opacity: 0.5;
}

.terms-note {
    margin-top: 48px;
    padding: 32px;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    text-align: center;
}

.terms-note p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 0;
}

.terms-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
}

/* --- Dual CTA buttons with flags --- */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.hero-cta-row-spaced {
    margin-top: 20px;
}

.hero-btn-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
}

.contact-card-flag {
    display: inline-block;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--color-navy);
}

@media (max-width: 520px) {
    .hero-cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-cta-row .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0 0 0 16px;
}

.lang-flag {
    background: transparent;
    border: 2px solid transparent;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    opacity: 0.45;
}

.lang-flag:hover {
    opacity: 1;
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--color-orange);
}

.lang-flag svg {
    width: 26px;
    height: 18px;
    display: block;
    border-radius: 2px;
    overflow: hidden;
}

.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.mobile-lang-switcher .lang-flag svg {
    width: 36px;
    height: 26px;
}

/* Language content switching */
.lang-en,
.lang-it,
.lang-es {
    display: none;
}

html.is-en .lang-en {
    display: revert;
}

html.is-en .lang-el {
    display: none;
}

html.is-it .lang-it {
    display: revert;
}

html.is-it .lang-el {
    display: none;
}

html.is-es .lang-es {
    display: revert;
}

html.is-es .lang-el {
    display: none;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 8px;
    }
    .lang-flag svg {
        width: 22px;
        height: 15px;
    }
}

.terms-accordion {
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-white);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.terms-accordion[open] {
    box-shadow: 0 6px 20px rgba(15, 36, 64, 0.08);
}

.terms-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
}

.terms-accordion summary::-webkit-details-marker {
    display: none;
}

.terms-accordion summary:hover {
    background: var(--color-sand);
}

.terms-accordion-title {
    flex: 1;
    line-height: 1.3;
}

.terms-accordion-number {
    color: var(--color-orange);
    margin-right: 10px;
    font-weight: 700;
}

.terms-accordion-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.terms-accordion[open] .terms-accordion-icon {
    transform: rotate(180deg);
}

.terms-accordion-content {
    padding: 16px 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
}

.terms-accordion-content p {
    margin-bottom: 12px;
}

.terms-accordion-content p:last-child {
    margin-bottom: 0;
}

.terms-accordion-content ul {
    margin: 10px 0 14px;
    padding-left: 22px;
    list-style: disc;
}

.terms-accordion-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.terms-accordion-content h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--color-navy);
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-body);
}

.terms-accordion-content h3:first-child {
    margin-top: 0;
}

@media (max-width: 600px) {
    .terms-accordion summary {
        padding: 14px 16px;
        font-size: 17px;
    }
    .terms-accordion-content {
        padding: 14px 16px 20px;
    }
}

.fleet-note {
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-light);
    font-style: italic;
}

/* --- Included Bar (always included perks) --- */
.included-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    margin: 44px auto 0;
    padding: 22px 32px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.07), rgba(255, 107, 53, 0.02));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 14px;
}

.included-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 14.5px;
}

.included-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .included-bar {
        flex-direction: column;
        gap: 14px;
        padding: 20px 22px;
        align-items: flex-start;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 48px auto 0;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 4px 16px rgba(15, 36, 64, 0.06);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 36, 64, 0.1);
}

.testimonial-stars {
    color: #FFB300;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testimonial-text {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.testimonial-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-end));
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
    font-family: var(--font-body);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.25);
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 14px;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.testimonials-source {
    text-align: center;
    font-size: 13.5px;
    color: var(--color-text-light);
    margin-top: 32px;
    letter-spacing: 0.2px;
}

.testimonials-source a {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.testimonials-source a:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials { padding: 60px 0 70px; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* --- Payment Trust Section --- */
.payments-trust {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sand) 100%);
}

.payments-trust .section-desc.center {
    max-width: 760px;
    margin-bottom: 0;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 48px auto 0;
}

@media (max-width: 900px) {
    .payment-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.payment-logo {
    background: var(--color-white);
    border-radius: 14px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 36, 64, 0.06);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 72px;
}

.payment-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(15, 36, 64, 0.1);
}

.payment-logo img,
.payment-logo svg {
    max-width: 100px;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.security-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 26px 24px;
    text-align: left;
    box-shadow: 0 4px 14px rgba(15, 36, 64, 0.06);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 36, 64, 0.1);
}

.security-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--color-sand);
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.security-card h4 {
    color: var(--color-navy);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.security-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .payments-trust { padding: 60px 0; }
    .payment-logo { padding: 18px 14px; min-height: 64px; }
    .security-grid { gap: 14px; }
}

/* --- Utility: hide on mobile only --- */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

/* --- Footer Payment Row --- */
.footer-payments {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    max-width: 820px;
    width: fit-content;
    margin: 36px auto 18px;
}

.footer-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.footer-payment img {
    height: 24px;
    width: auto;
    max-width: 80px;
    display: block;
    object-fit: contain;
}

.pay-visa {
    color: #1A1F71;
    font-style: italic;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: -1px;
    padding: 0 6px;
    background: #fff;
}

.pay-circles {
    position: relative;
    width: 38px;
    height: 22px;
}
.pay-circles span {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    top: 0;
}
.pay-mc span:nth-child(1) { background: #EB001B; left: 0; }
.pay-mc span:nth-child(2) { background: #F79E1B; left: 16px; mix-blend-mode: multiply; }
.pay-maestro span:nth-child(1) { background: #0099DF; left: 0; }
.pay-maestro span:nth-child(2) { background: #ED0006; left: 16px; mix-blend-mode: multiply; }

.pay-applepay {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.3px;
}
.pay-applepay .apple-mark {
    font-size: 17px;
    margin-right: 2px;
    line-height: 1;
}

.pay-gpay {
    font-weight: 700;
    font-size: 15px;
}
.pay-gpay .g { color: #4285F4; }
.pay-gpay .p { color: #5F6368; }

.pay-viva {
    color: #0F2444;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;
}

@media (max-width: 600px) {
    .footer-payments {
        gap: 14px;
        padding: 12px 16px;
    }
    .footer-payment {
        height: 20px;
        font-size: 13px;
    }
    .footer-payment img {
        height: 20px;
        max-width: 66px;
    }
    .pay-visa { font-size: 14px; padding: 0 4px; }
    .pay-circles { width: 32px; height: 18px; }
    .pay-circles span { width: 18px; height: 18px; }
    .pay-mc span:nth-child(2), .pay-maestro span:nth-child(2) { left: 14px; }
    .pay-applepay, .pay-gpay, .pay-viva { font-size: 13px; }
}

/* --- Secondary / cross-link button --- */
.section-next {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 50px;
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 58, 92, 0.2);
}

.btn-secondary svg {
    transition: transform var(--transition);
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* --- SUBPAGE: Contact --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

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

.contact-card.whatsapp-card {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid var(--color-whatsapp);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-aegean);
    margin-bottom: 16px;
}

.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.15);
    color: var(--color-whatsapp-dark);
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.contact-card-action {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-orange);
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-card);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.map-directions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    background: var(--color-white);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    z-index: 2;
}

.map-directions:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Tablet - subpages */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 90px;
        --header-height-shrunk: 80px;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 80px !important;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-desc {
        font-size: 15px;
    }

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

    .hero-bg {
        background-image: url('photos/starting-mobile.png');
    }

    .hero-content {
        padding-top: 18vh;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 13px;
        gap: 8px;
    }

    .hero-btn-flag {
        width: 18px;
        height: 12px;
    }

    .hero-scroll-indicator {
        bottom: 8px;
    }

    .hero-scroll-indicator span {
        width: 16px;
        height: 26px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .hero-scroll-indicator span::after {
        top: 4px;
        width: 3px;
        height: 6px;
    }

    .about {
        padding: 60px 0;
    }

    .about-features {
        padding-top: 16px;
    }

    .fleet {
        padding: 60px 0 80px;
    }

    .car-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .car-image {
        height: 180px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .section-desc.center {
        margin-bottom: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-banner {
        min-height: 260px;
        padding: 30px 0;
    }

    .page-banner-content h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .terms-section {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .wave-divider svg {
        height: 50px;
    }

    .footer-wave svg {
        height: 50px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .car-specs {
        gap: 6px;
    }

    .spec {
        font-size: 11px;
        padding: 5px 8px;
    }
}
