/* ============================================
   Thilagamani Tours and Travels
   Shared visual system
   ============================================ */

:root {
    --bg: #f6f1e8;
    --bg-soft: #fbf7f1;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #fffdf9;
    --surface-tint: rgba(18, 51, 79, 0.06);
    --text-dark: #17324a;
    --text-medium: #466074;
    --text-light: #6e8494;
    --brand: #12334f;
    --brand-soft: #2e5d7f;
    --brand-deep: #0b2236;
    --accent: #f08d68;
    --accent-strong: #de6d43;
    --gold: #c9a35a;
    --line: rgba(18, 51, 79, 0.12);
    --line-strong: rgba(18, 51, 79, 0.2);
    --success: #1f8a70;
    --shadow-sm: 0 10px 30px rgba(14, 34, 53, 0.08);
    --shadow-md: 0 24px 60px rgba(14, 34, 53, 0.12);
    --shadow-lg: 0 34px 90px rgba(14, 34, 53, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    --container: 1180px;
    --transition: 0.32s ease;
    --heading-font: "Playfair Display", Georgia, serif;
    --body-font: "Manrope", "Segoe UI", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(240, 141, 104, 0.14), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(201, 163, 90, 0.14), transparent 24%),
        linear-gradient(180deg, #fdfaf5 0%, var(--bg) 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 51, 79, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 51, 79, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
    z-index: -2;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

button,
input,
textarea {
    font: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.78));
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(18, 51, 79, 0.06);
}

.section-title {
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--brand-deep);
}

.section-subtitle {
    max-width: 680px;
    color: var(--text-medium);
    font-size: 1.08rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--brand-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.eyebrow::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    isolation: isolate;
    background: linear-gradient(180deg, #0b2236, #081825);
    border-bottom: 1px solid #17324a;
    box-shadow: 0 14px 28px rgba(8, 24, 37, 0.18);
}

.header-container {
    width: 100%;
    margin: 0 auto;
    min-height: 78px;
    padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.35rem 0.45rem 0.35rem 0.35rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16px;
    padding: 0.28rem;
    background: linear-gradient(135deg, #ffffff, #f3ede4);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.18rem;
    min-width: 0;
}

.logo-title {
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 1.22rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-weight: 800;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(240, 141, 104, 0.9);
    padding-top: 4px;
    white-space: nowrap;
}

nav {
    margin-left: auto;
    min-width: 0;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    padding: 0.3rem;
    border-radius: calc(var(--radius-pill) + 2px);
    background: #12334f;
    border: 1px solid #294a66;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
}

nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.68rem 0.95rem;
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

nav a:hover,
nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(240, 141, 104, 0.22), rgba(201, 163, 90, 0.16));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #294a66;
    background: #12334f;
    color: #ffffff;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(14, 34, 53, 0.06);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.58;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
    box-shadow: 0 16px 32px rgba(18, 51, 79, 0.2);
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 22px 42px rgba(18, 51, 79, 0.26);
}

.btn-primary:disabled {
    background: linear-gradient(135deg, rgba(18, 51, 79, 0.72), rgba(46, 93, 127, 0.72));
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 16px 32px rgba(222, 109, 67, 0.22);
}

.btn-secondary:hover {
    box-shadow: 0 22px 42px rgba(222, 109, 67, 0.28);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(18, 51, 79, 0.16);
    color: var(--brand);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(18, 51, 79, 0.28);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 22, 36, 0.74), rgba(18, 51, 79, 0.38)),
        linear-gradient(180deg, rgba(18, 51, 79, 0.08), rgba(18, 51, 79, 0.45));
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto auto -12% -6%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 141, 104, 0.4), transparent 70%);
    filter: blur(10px);
}

.hero {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(7, 22, 36, 0.2), rgba(18, 51, 79, 0.2)),
        url("../images/IMG_1.png") center/cover no-repeat;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: center;
    padding: 4.5rem 0;
}

.hero-copy {
    color: #fff;
}

.hero-copy h1,
.page-hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(3.3rem, 8vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    margin: 1.4rem 0 1.25rem;
    text-wrap: balance;
}

.hero-copy p,
.page-hero p {
    max-width: 680px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0 2.1rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-highlight {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-highlight strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
}

.hero-highlight span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-panel,
.glass-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    color: #fff;
}

.hero-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-panel-label {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-panel h2 {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-top: 0.45rem;
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 0.75rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.panel-stats {
    display: grid;
    gap: 0.9rem;
    margin: 1.4rem 0;
}

.panel-stat {
    display: grid;
    grid-template-columns: minmax(170px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
}

.panel-stat > div {
    min-width: 0;
}

.panel-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.15;
}

.panel-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.panel-stat > span:last-child {
    display: block;
    min-width: 0;
    text-align: left;
}

.hero-list {
    display: grid;
    gap: 0.75rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-list li::before,
.detail-list li::before,
.fleet-specs li::before,
.contact-bullets li::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    flex: 0 0 auto;
}

.page-hero {
    min-height: 56vh;
    display: flex;
    align-items: end;
    padding: 4.5rem 0;
    background:
        linear-gradient(120deg, rgba(7, 22, 36, 0.18), rgba(18, 51, 79, 0.24)),
        url("../images/IMG_2.png") center/cover no-repeat;
}

.page-hero .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.page-hero-content {
    max-width: 760px;
    color: #fff;
}

.page-hero p {
    margin-top: 0.75rem;
}

.experience-strip {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.experience-grid,
.services-grid,
.fleet-grid,
.features-grid,
.testimonials-grid,
.stats-grid,
.service-detail-grid,
.fleet-collection,
.contact-pills {
    display: grid;
    gap: 1.5rem;
}

.experience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card,
.service-card,
.fleet-card,
.feature-item,
.testimonial-card,
.stat-item,
.detail-card,
.vehicle-card,
.contact-pill,
.contact-form,
.contact-panel,
.story-card,
.map-container {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.experience-card {
    padding: 1.4rem;
}

.experience-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    margin-bottom: 0.9rem;
    background: rgba(18, 51, 79, 0.08);
    color: var(--brand);
    font-size: 1.2rem;
}

.experience-card h3,
.service-card h3,
.fleet-card h3,
.feature-item h3,
.detail-card h3,
.vehicle-card h3,
.story-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    color: var(--brand-deep);
}

.experience-card p,
.service-card p,
.fleet-card p,
.feature-item p,
.testimonial-card p,
.detail-card p,
.vehicle-card p,
.story-card p,
.contact-panel p,
.contact-info-item p,
.map-card p {
    color: var(--text-medium);
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.service-card,
.feature-item {
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 246, 0.9));
    border: 1px solid rgba(18, 51, 79, 0.08);
    box-shadow: 0 20px 46px rgba(14, 34, 53, 0.08);
}

.service-card h3 {
    min-height: 2.6em;
    margin-bottom: 0;
    display: flex;
    align-items: end;
}

.service-card p {
    margin-bottom: 0;
    flex: 1;
    line-height: 1.7;
}

.service-card::after,
.feature-item::after,
.vehicle-card::after,
.detail-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover,
.fleet-card:hover,
.feature-item:hover,
.testimonial-card:hover,
.detail-card:hover,
.vehicle-card:hover,
.contact-pill:hover,
.story-card:hover,
.contact-form:hover,
.contact-panel:hover,
.map-container:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after,
.feature-item:hover::after,
.vehicle-card:hover::after,
.detail-card:hover::after {
    opacity: 1;
}

.service-icon,
.feature-icon,
.detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(18, 51, 79, 0.12), rgba(240, 141, 104, 0.18));
    color: var(--brand);
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    color: var(--accent-strong);
    font-weight: 800;
}

.service-card .card-link {
    margin-top: auto;
    padding-top: 0.25rem;
}

.card-link:hover {
    gap: 0.65rem;
}

.fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1040px;
    margin: 0 auto;
}

.fleet-card,
.vehicle-card {
    overflow: hidden;
}

.vehicle-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
    border: 1px solid rgba(18, 51, 79, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(14, 34, 53, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.vehicle-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #1f4d74, #2d6b98 60%, #f08d68);
}

.vehicle-card::after {
    content: none;
}

.fleet-card img,
.vehicle-card img,
.detail-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.vehicle-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(18, 51, 79, 0.06), rgba(240, 141, 104, 0.12));
    border-bottom: 1px solid rgba(18, 51, 79, 0.08);
}

.vehicle-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 37, 0.04) 0%, rgba(8, 24, 37, 0.1) 55%, rgba(8, 24, 37, 0.26) 100%);
    pointer-events: none;
}

.vehicle-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.28s ease;
}

.fleet-card-content,
.vehicle-content {
    padding: 1.6rem;
}

.vehicle-content {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 1rem;
    padding: 1.05rem 1rem 1.15rem;
    height: 100%;
}

.vehicle-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--text-light);
    line-height: 1.45;
    margin: 0;
}

.vehicle-header {
    display: grid;
    gap: 0.55rem;
    align-content: start;
    min-height: 108px;
    padding-bottom: 0.25rem;
}

.vehicle-header h3 {
    margin: 0;
    color: var(--brand-deep);
    font-size: 1.32rem;
    line-height: 1.14;
    letter-spacing: -0.01em;
    font-family: var(--body-font);
    font-weight: 800;
}

.vehicle-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.vehicle-fact {
    padding: 0.68rem 0.55rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f3f7fb, #ebf1f6);
    border: 1px solid rgba(18, 51, 79, 0.08);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.vehicle-fact strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--brand-deep);
}

.vehicle-fact span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.74rem;
    color: var(--text-medium);
}

.vehicle-card:hover {
    transform: translateY(0);
    border-color: rgba(18, 51, 79, 0.12);
    box-shadow: 0 20px 46px rgba(14, 34, 53, 0.11);
}

.vehicle-card:hover img {
    transform: scale(1.03);
}

.vehicle-specs-list {
    margin: 0;
    padding-top: 0.35rem;
    gap: 0.45rem;
    align-content: start;
}

.vehicle-specs-list li {
    padding: 0.34rem 0;
    border-bottom: 0;
    color: var(--text-medium);
    background: none;
    border: 0;
    border-radius: 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.vehicle-specs-list li::before {
    width: 0.54rem;
    height: 0.54rem;
}

.capacity-chip,
.price-chip,
.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.66rem;
    border-radius: var(--radius-pill);
    background: rgba(18, 51, 79, 0.06);
    color: var(--brand);
    font-weight: 800;
    font-size: 0.77rem;
}

.fleet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
}

.fleet-specs,
.detail-list,
.contact-bullets {
    display: grid;
    gap: 0.8rem;
    margin: 1.2rem 0 1.6rem;
}

/* Keep vehicle specs aligned and compact without inheriting generic fleet spacing */
.fleet-specs.vehicle-specs-list {
    margin: 0;
    gap: 0.45rem;
}

.fleet-specs.vehicle-specs-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 0.55rem;
    line-height: 1.45;
    padding: 0.32rem 0;
    background: none;
    border: 0;
    min-height: auto;
}

.fleet-specs.vehicle-specs-list li::before {
    width: 0.52rem;
    height: 0.52rem;
    margin-top: 0.35rem;
}

.why-choose .features-grid,
.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.testimonial-card {
    padding: 1.8rem;
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.author {
    margin-top: 1.25rem;
    font-weight: 800;
    color: var(--brand);
}

.cta-banner {
    padding: 5rem 0;
}

.cta-shell {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: calc(var(--radius-lg) + 4px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(11, 34, 54, 0.96), rgba(18, 51, 79, 0.84)),
        url("../images/IMG_3584.JPG") center/cover no-repeat;
    box-shadow: var(--shadow-lg);
}

.cta-shell::before {
    content: "";
    position: absolute;
    inset: auto -8% -35% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 141, 104, 0.32), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.1rem, 5vw, 3.7rem);
    line-height: 1.02;
    margin: 1rem 0 0.9rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.story-grid,
.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.story-card {
    padding: 2rem;
}

.story-card p + p {
    margin-top: 1rem;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
    padding: 1.75rem 1.4rem;
    text-align: center;
    display: grid;
    gap: 0.85rem;
    justify-items: center;
}

.stat-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 51, 79, 0.12), rgba(240, 141, 104, 0.18));
    color: var(--brand);
    font-size: 1.25rem;
}

.number {
    display: block;
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 0;
}

.label {
    color: var(--text-medium);
    font-weight: 700;
}

.service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.detail-card {
    overflow: hidden;
    min-height: 100%;
    display: flex;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(240, 141, 104, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 246, 0.88));
    border: 1px solid rgba(18, 51, 79, 0.08);
    box-shadow: 0 22px 50px rgba(14, 34, 53, 0.08);
}

.detail-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand), var(--accent), var(--gold));
}

.detail-content {
    padding: 1.95rem 1.8rem 1.8rem 2rem;
    display: grid;
    gap: 1rem;
    align-content: start;
    width: 100%;
}

.detail-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.detail-head h3 {
    margin-bottom: 0;
}

.detail-head .info-chip {
    background: rgba(240, 141, 104, 0.14);
    color: var(--accent-strong);
}

.detail-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin-bottom: 0.55rem;
}

.detail-actions {
    margin-top: auto;
    padding-top: 0.25rem;
}

.vehicle-card .vehicle-content {
    display: grid;
    gap: 1rem;
}

.vehicle-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.25rem;
    align-items: center;
}

.vehicle-actions .btn {
    min-width: 0;
}

.vehicle-actions .btn-outline,
.vehicle-actions .btn-primary {
    min-width: 170px;
    justify-content: center;
}

.vehicle-actions .btn-primary {
    box-shadow: 0 10px 24px rgba(18, 51, 79, 0.16);
}

.vehicle-actions .btn-outline {
    background: #ffffff;
    border-color: rgba(18, 51, 79, 0.12);
    box-shadow: 0 8px 18px rgba(14, 34, 53, 0.06);
}

.contact-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.contact-pill {
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-pill i,
.contact-info-item i {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 51, 79, 0.08);
    color: var(--brand);
    flex: 0 0 auto;
}

.contact-form,
.contact-panel {
    padding: 1.65rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    gap: 0.85rem;
}

.contact-panel {
    padding: 1.5rem;
    gap: 0.4rem;
}

.contact-form h3,
.contact-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 0.95rem;
    color: var(--brand-deep);
}

.contact-form > p,
.contact-panel > p {
    font-size: 0.88rem;
    line-height: 1.55;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    flex: 1;
}

.contact-panel .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    padding: 0.55rem 0.9rem;
    margin-bottom: 0.45rem;
}

.form-group + .form-group {
    margin-top: 0;
}

.form-group label {
    display: block;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.35rem;
    font-size: 0.84rem;
}

.form-group {
    display: grid;
    gap: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(18, 51, 79, 0.14);
    background: rgba(255, 255, 255, 0.74);
    padding: 0.82rem 0.95rem;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.form-group textarea {
    min-height: 128px;
    height: 150px;
    resize: none;
}

.contact-form .btn {
    margin-top: auto;
    width: auto;
    min-width: 180px;
    padding: 0.82rem 1.45rem;
    align-self: flex-start;
    transition: none;
    transform: none;
    animation: none;
}

.contact-form .btn:hover,
.contact-form .btn:focus-visible,
.contact-form .btn:active {
    transform: none;
    box-shadow: 0 16px 32px rgba(18, 51, 79, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(18, 51, 79, 0.35);
    box-shadow: 0 0 0 4px rgba(18, 51, 79, 0.08);
}

.form-group input.error,
.form-group textarea.error {
    border-color: rgba(222, 109, 67, 0.88);
    box-shadow: 0 0 0 4px rgba(222, 109, 67, 0.12);
}

.field-error {
    min-height: 1rem;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--accent-strong);
}

.field-error:empty {
    min-height: 0;
}

.form-status {
    min-height: 1.1rem;
    margin: -0.1rem 0 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-strong);
}

.form-status.success {
    color: var(--success);
}

.contact-info-list {
    display: grid;
    gap: 0.62rem;
    margin-top: 0.82rem;
}

.contact-info-item {
    display: flex;
    gap: 0.85rem;
    align-items: start;
    padding: 0.72rem 0.82rem;
    border-radius: var(--radius-md);
    background: rgba(18, 51, 79, 0.04);
}

.contact-info-item i {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 14px;
    font-size: 0.82rem;
}

.contact-info-item h4 {
    color: var(--brand-deep);
    margin-bottom: 0.12rem;
    font-size: 0.9rem;
}

.contact-info-item p {
    font-size: 0.8rem;
    line-height: 1.45;
}

.contact-highlight {
    margin-top: 0.8rem;
    padding: 0.82rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(11, 34, 54, 0.96), rgba(25, 66, 98, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(14, 34, 53, 0.16);
}

.contact-highlight-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.68rem;
}

.contact-highlight-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 141, 104, 0.95), rgba(201, 163, 90, 0.95));
    color: #0b2236;
    font-size: 0.78rem;
}

.contact-highlight h4 {
    margin: 0;
    color: #ffffff;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.contact-highlight .contact-bullets {
    margin: 0;
    gap: 0.5rem;
}

.contact-highlight .contact-bullets li {
    padding: 0.64rem 0.74rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 0.52rem;
    line-height: 1.38;
    font-size: 0.78rem;
}

.contact-highlight .contact-bullets li::before {
    width: 0.58rem;
    height: 0.58rem;
    margin-top: 0.42rem;
    background: linear-gradient(135deg, #f6b37f, #ffd58a);
}

.map-container {
    overflow: hidden;
    margin-top: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, rgba(11, 34, 54, 0.98), rgba(8, 24, 37, 1));
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(240, 141, 104, 0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(201, 163, 90, 0.14), transparent 22%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.74);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-section a:hover {
    color: #fff;
}

.footer-brand {
    max-width: 320px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), var(--container));
    margin: 2.25rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #29c76f, #178e57);
    box-shadow: 0 20px 36px rgba(23, 142, 87, 0.28);
    font-size: 1.8rem;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.reveal {
    animation: riseIn 0.8s ease both;
}

.delay-1 {
    animation-delay: 0.08s;
}

.delay-2 {
    animation-delay: 0.16s;
}

.delay-3 {
    animation-delay: 0.24s;
}

.delay-4 {
    animation-delay: 0.32s;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .story-grid,
    .contact-shell,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .experience-grid,
    .services-grid,
    .fleet-grid,
    .fleet-collection,
    .features-grid,
    .testimonials-grid,
    .stats-grid,
    .contact-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 48vh;
        padding: 4rem 0;
    }

    .hero-panel {
        max-width: 560px;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 980px) {
    .header-container {
        min-height: 72px;
        padding: 0.7rem 1rem;
        gap: 1rem;
    }

    .logo {
        gap: 0.65rem;
        padding: 0.3rem 0.35rem 0.3rem 0.3rem;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .logo-title {
        font-size: 1.08rem;
    }

    .logo-subtitle {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0.75rem;
        right: 0.75rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.35rem;
        padding: 0.75rem;
        border-radius: 24px;
        background: linear-gradient(180deg, #0b2236, #081825);
        border: 1px solid #17324a;
        box-shadow: 0 24px 48px rgba(8, 24, 37, 0.24);
    }

    nav a {
        justify-content: flex-start;
        width: 100%;
        color: rgba(255, 255, 255, 0.82);
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .page-hero {
        padding-top: 3.5rem;
    }

    .hero-panel-top,
    .detail-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-highlights,
    .experience-grid,
    .services-grid,
    .fleet-grid,
    .fleet-collection,
    .features-grid,
    .testimonials-grid,
    .stats-grid,
    .contact-pills {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel,
    .page-hero-content {
        max-width: none;
    }

    .cta-shell,
    .service-card,
    .feature-item,
    .detail-content,
    .contact-form,
    .contact-panel,
    .story-card,
    .testimonial-card,
    .experience-card,
    .fleet-card-content,
    .vehicle-content {
        padding: 1.35rem;
    }

    .fleet-card img,
    .detail-media img {
        height: 220px;
    }

    .vehicle-media {
        aspect-ratio: 16 / 10;
    }

    .vehicle-header {
        min-height: auto;
    }

    .vehicle-summary {
        min-height: auto;
    }

    .vehicle-facts {
        grid-template-columns: 1fr;
    }

    .vehicle-actions .btn-outline,
    .vehicle-actions .btn-primary {
        min-width: 0;
    }

    .map-container iframe {
        height: 340px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
        font-size: 1.55rem;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 4.5rem 0;
    }

    .section-heading {
        margin-bottom: 2.3rem;
    }

    .section-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .section-subtitle {
        margin-bottom: 2.3rem;
        font-size: 1rem;
    }

    .hero-grid,
    .page-hero {
        padding-top: 3rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .panel-stat {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.45rem;
        padding: 0.85rem 0.95rem;
    }

    .panel-stat strong {
        font-size: 1.15rem;
    }

    .cta-content h2 {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    .cta-content p {
        font-size: 0.98rem;
    }

    .fleet-meta {
        gap: 0.35rem;
    }

    .vehicle-actions {
        gap: 0.65rem;
    }

    .vehicle-actions .btn,
    .hero-actions .btn {
        width: 100%;
    }

    .contact-pills {
        gap: 1rem;
    }

    .contact-pill,
    .contact-form,
    .contact-panel,
    .story-card {
        padding: 1.2rem;
    }

    .contact-shell,
    .story-grid {
        gap: 1rem;
    }

    .contact-highlight .contact-bullets li {
        font-size: 0.8rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        gap: 1.4rem;
    }
}

@media (max-width: 560px) {
    .container,
    .header-container,
    .footer-content,
    .footer-bottom {
        width: min(calc(100% - 1rem), var(--container));
    }

    .section {
        padding: 4rem 0;
    }

    .header-container {
        min-height: 66px;
        padding: 0.6rem 0.8rem;
    }

    .logo {
        gap: 0.55rem;
        padding-right: 0.1rem;
    }

    .logo-text {
        gap: 0.1rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    nav {
        left: 0.5rem;
        right: 0.5rem;
    }

    nav ul {
        padding: 0.65rem;
        border-radius: 20px;
    }

    .logo-title {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
        padding-top: 2px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.88rem 1.15rem;
        font-size: 0.95rem;
    }

    .eyebrow {
        padding: 0.55rem 0.82rem;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .hero-copy h1,
    .page-hero h1 {
        line-height: 0.98;
    }

    .hero-actions {
        margin: 1.5rem 0 1.65rem;
    }

    .hero-copy p,
    .page-hero p,
    .section-subtitle,
    .cta-content p {
        font-size: 1rem;
    }

    .hero-panel,
    .glass-card,
    .cta-shell,
    .vehicle-content,
    .detail-content,
    .contact-form,
    .contact-panel,
    .story-card,
    .service-card,
    .feature-item,
    .testimonial-card,
    .experience-card,
    .stat-item {
        padding: 1.05rem;
    }

    .experience-card h3,
    .service-card h3,
    .fleet-card h3,
    .feature-item h3,
    .detail-card h3,
    .vehicle-card h3,
    .story-card h3 {
        font-size: 1.18rem;
    }

    .vehicle-media {
        aspect-ratio: 16 / 11;
    }

    .vehicle-card img,
    .detail-media img,
    .fleet-card img {
        height: 220px;
    }

    .map-container {
        margin-top: 1rem;
    }

    .map-container iframe {
        height: 260px;
    }

    .footer-section h3 {
        font-size: 1.02rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 420px) {
    .header-container {
        gap: 0.6rem;
    }

    .logo-title {
        font-size: 0.82rem;
    }

    .logo-subtitle {
        display: block;
        font-size: 0.46rem;
        letter-spacing: 0.06em;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .hero-panel h2,
    .cta-content h2 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }

    .contact-highlight .contact-bullets li {
        grid-template-columns: 1fr;
        row-gap: 0.3rem;
    }

    .contact-highlight .contact-bullets li::before {
        margin-top: 0;
    }

    .contact-info-item {
        gap: 0.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
