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

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

/* --- Mobile Header (Hidden on Desktop) --- */
.main-m-header {
    display: none !important; /* Strict hide */
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 60px;
    background: #ffffff !important;
    z-index: 9999 !important;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.main-m-header .m-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-m-header .m-logo img {
    height: 32px !important;
    width: auto !important;
}

.main-m-header .m-logo span {
    font-weight: 800;
    font-size: 0.95rem;
    color: #111827;
    letter-spacing: 0.5px;
}

.main-m-header .m-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-m-header .m-actions i {
    width: 22px;
    color: #374151;
}

@media (max-width: 768px) {
    .main-m-header { display: flex !important; }
    body { padding-top: 60px !important; }
    .desktop-header { display: none !important; }
}

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --accent: #B8860B;
    --accent-light: #d4af37;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --text: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Thai', sans-serif;
    color: var(--text);
    background: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Faded Background Image for White Sections */
html {
    background: #fcfbf9;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use an actual img-like approach via background */
    background-image: url('รูปภาพไว้สำหรับทำแบ็กกราวนด์ทำฉากในเว็บไซต์ด้วย/S__4472910_0.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* 'fixed' breaks on iOS Safari */
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    -webkit-transform: translateZ(0); /* Force GPU compositing on iOS */
    transform: translateZ(0);
    will-change: transform;
}

/* iOS Safari fix: use absolute positioning fallback */
@supports (-webkit-touch-callout: none) {
    body::before {
        position: absolute;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

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

.section {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 25px 0;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mb-60 { margin-bottom: 30px; }

.mt-40 { margin-top: 40px; }

.page-content {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 80vh;
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 0px; /* Completely remove gap below mobile header */
        padding-bottom: 60px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.2;
}

h1 { font-size: 4rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.highlight-gold {
    color: #B8860B;
}

.title-large {
    font-size: 3rem;
    font-weight: 900;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.3);
}

.btn-cta {
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-cta i { width: 20px; }

.btn-outline {
    border: 2px solid var(--text);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
}

.btn-book {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-book-blue {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary-full {
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 20px;
}

/* Headers */
.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.desktop-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    color: var(--text);
}

.desktop-header nav ul {
    display: flex;
    gap: 40px;
}

.desktop-header nav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.desktop-header nav a.active,
.desktop-header nav a:hover {
    color: var(--primary);
}

/* Mobile header is handled by mobile-header-v2 at the end of file */

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, transparent);
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn-trigger {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
}

.search-btn-trigger:hover {
    color: var(--primary);
}

.search-btn-trigger i {
    width: 20px;
    height: 20px;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 2rem;
}

.pax-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pax-avatars {
    display: flex;
}

.pax-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -15px;
}

.pax-avatars img:first-child { margin-left: 0; }

.pax-avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: -15px;
    border: 2px solid var(--white);
}

.pax-text {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Quick Nav */
.quick-nav {
    padding: 40px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.icon-box.blue { background: #eef2ff; color: #4f46e5; }
.icon-box.green { background: #ecfdf5; color: #10b981; }
.icon-box.amber { background: #fffbeb; color: #d97706; }
.icon-box.dark { background: #f3f4f6; color: #111827; }

.nav-item span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light { background: var(--bg-light); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-badge {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-badge.center { justify-content: center; }

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ecfdf5;
    color: #059669;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Tour Cards */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--bg-light);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.1);
}
.license-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    display: flex;
    items-center: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
}
.license-info i {
    width: 14px;
    height: 14px;
    color: #4ade80;
}
.tour-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #10b981;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-status.limited { background: #ef4444; }

.tour-info {
    padding: 30px;
}

.tour-date {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.booking-status {
    margin: 20px 0;
}

.status-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

/* Tour actions are now handled at the end of the file with grid layout */

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
}

/* Service Cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

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

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto; /* Allow content to determine height */
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card.dark {
    background: #111827;
    color: var(--white);
    padding: 50px;
    position: relative;
}

.service-card.white {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--bg-light);
}

.badge-alt {
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-alt.blue {
    background: #eef2ff;
    color: #4f46e5;
}

.feat-list {
    margin: 30px 0;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.feat-list i { color: #10b981; width: 18px; }

/* Car Service Card (New Style) */
.car-service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--bg-light);
    transition: all 0.3s ease;
    height: 100%;
}

.car-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.car-service-img {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.car-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.car-service-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 250px;
    border-top-left-radius: var(--radius-lg);
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.car-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.car-item i { width: 30px; height: 30px; margin-bottom: 10px; color: var(--primary); }
.car-item span { display: block; font-weight: 700; font-size: 0.8rem; }

/* Extra Services */
.mb-60 { margin-bottom: 60px; }
.text-center { text-align: center; }

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

.extra-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.extra-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.extra-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.extra-item h3 { margin-bottom: 10px; }
.extra-item p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.extra-item button {
    background: transparent;
    border: 2px solid var(--bg-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.extra-item:hover button {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Stats */
.stats-section {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

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

.stat-val { font-size: 3rem; font-weight: 900; color: var(--accent-light); }
.stat-label { font-size: 0.9rem; font-weight: 700; opacity: 0.6; text-transform: uppercase; }

/* Footer */
footer {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--bg-light);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dev-credit {
    font-size: 0.8rem;
    opacity: 0.7;
}

.dev-credit a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: bold;
}
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

/* Bottom Nav (Mobile Only) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    height: 70px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2000;
    padding: 0 10px;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
}

.nav-link i { width: 22px; }
.nav-link span { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }

.nav-link.active { color: var(--primary); }

/* Itinerary Section */
.itinerary-section {
    position: relative;
    overflow: hidden;
}

.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-light);
}

.timeline-content .time {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.itinerary-img {
    margin-top: 20px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
}

/* Animations & Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0,0,0,0.05);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos].animate-in {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].animate-in {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].animate-in {
    transform: scale(1);
}

/* Enhanced Hover Animations */
.tour-card, .service-card, .itinerary-card, .info-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card:hover, .service-card:hover, .itinerary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover .icon-box {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-primary, .btn-cta, .btn-primary-full {
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-cta:hover, .btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Additional Refinements */
.service-card.dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

/* Responsive Overrides */
/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item i {
    width: 24px;
    color: var(--primary);
}

.info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.info-item p { color: var(--text-muted); font-size: 0.9rem; }

.line-card {
    background: #06c755; /* LINE Green */
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.line-card i { width: 60px; height: 60px; }
.line-card h3 { font-size: 2rem; }
.btn-line {
    background: var(--white);
    color: #06c755;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.search-header {
    padding: 25px;
    border-bottom: 1px solid var(--bg-light);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.search-icon-main {
    width: 24px;
    color: #b91c1c; /* Red color from screenshot */
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    color: var(--text);
}

.close-search {
    background: var(--bg-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
}

.search-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-section {
    margin-bottom: 35px;
}

.search-section h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    border: 1px solid rgba(0,0,0,0.05);
}

.tag-item i { width: 14px; color: var(--text-muted); }

.search-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.s-package-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.s-info h5 { font-size: 0.95rem; margin-bottom: 4px; }
.s-info span { font-size: 0.8rem; font-weight: 800; color: #b91c1c; }
.s-package-card i { color: #f59e0b; width: 18px; }

.s-trip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.s-trip-item:hover { background: var(--bg-light); }

.s-trip-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.s-trip-info { flex: 1; }
.s-trip-info h5 { font-size: 0.9rem; }
.s-trip-info span { font-size: 0.75rem; color: var(--text-muted); }

.search-footer {
    padding: 15px 25px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}

.footer-left span {
    border: 1px solid var(--text-muted);
    padding: 2px 4px;
    border-radius: 4px;
    margin-right: 5px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #b91c1c;
}

.footer-right i { width: 12px; }

/* Journey Itinerary Cards */
.itinerary-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.itinerary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.time-badge {
    background: #111827;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.card-number {
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(184, 134, 11, 0.1);
    line-height: 1;
    pointer-events: none;
}

.icon-zap {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--bg-light);
    color: var(--text);
}

/* Footer Refinements */
.main-footer {
    background: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--bg-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1rem;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-contact p i { width: 16px; color: var(--primary); }

.btn-line-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06c755;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 10px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i { width: 20px; }

/* Bottom Navigation (App Style) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bottom-nav .nav-link i {
    width: 22px;
    height: 22px;
}

.bottom-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .bottom-nav { display: flex; }
    body { padding-bottom: 70px; } /* Space for bottom nav */
}

@media (max-width: 1024px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .container { padding: 0 15px; }
}

@media (max-width: 768px) {
    body {
        background: #fcfbf9; /* Off-white app background */
    }

    .mobile-header {
        background: #fcfbf9;
        border-bottom: none;
        padding: 15px;
    }

    .search-icon {
        background: #f3f4f6;
        width: 40px; height: 40px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #666;
    }

    /* Floating Hero Banner */
    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 15px 20px;
        background: #fcfbf9;
        display: block;
        position: relative;
    }
    
    .hero-bg {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        z-index: 1;
    }

    .hero-bg img {
        border-radius: 24px;
    }

    .hero-bg .overlay {
        display: block;
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
        border-radius: 24px;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Cover full banner */
        z-index: 2;
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically in the smaller banner */
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 1.3rem; /* Smaller, elegant font */
        color: var(--white);
        line-height: 1.3;
        margin-bottom: 12px;
        text-align: left;
        max-width: 80%;
    }
    
    .hero p, .badge, .pax-group {
        display: none; /* Hide for cleaner banner look */
    }

    .hero-btns {
        margin-top: 0;
        display: flex !important;
        flex-direction: row !important;
    }

    .btn-cta {
        background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%); /* Gold button */
        padding: 6px 16px; /* Smaller button */
        font-size: 0.75rem;
        border-radius: 50px;
        border: none;
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 800;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* iOS Style Quick Nav */
    .quick-nav {
        background: #fcfbf9;
        padding: 20px 15px 10px;
        margin-top: 0;
        border-radius: 0;
    }
    
    .quick-nav .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr) !important; /* Force 4 columns */
        gap: 10px;
    }

    .nav-item {
        background: transparent;
        padding: 0;
    }

    .icon-box {
        width: 65px;
        height: 65px;
        border-radius: 20px;
        background: var(--white);
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-box.blue { color: #dc2626; background: #fff1f2; border-color: #ffe4e6; } /* Red airplane style */
    .icon-box.green { color: #10b981; background: #ecfdf5; border-color: #d1fae5; }
    .icon-box.amber { color: #f59e0b; background: #fffbeb; border-color: #fef3c7; }
    .icon-box.dark { color: #f8fafc; background: #1e293b; border-color: #0f172a; } /* Dark button style */

    .title-large {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }
    
    h1 { font-size: 1.8rem !important; line-height: 1.3; margin-bottom: 15px; }
    h2 { font-size: 1.4rem !important; line-height: 1.3; }

    .nav-item span {
        font-size: 0.7rem;
        font-weight: 800;
        color: #334155;
    }

    /* Sections */
    .section { padding: 40px 0; background: #fcfbf9; }

    .section-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.4rem;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-header h2::before {
        content: '⚡';
        color: #b91c1c;
    }

    .section-badge { display: none; } /* Hide the top badge in headers */

    .live-indicator {
        background: #ecfdf5;
        color: #10b981;
        border: 1px solid #d1fae5;
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }

    .live-indicator .dot {
        width: 6px;
        height: 6px;
    }

    .tour-card {
        background: var(--white);
        border-radius: 24px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.02);
    }

    .tour-img {
        height: 240px;
        border-radius: 16px;
    }

    .tour-info {
        padding: 15px 5px 5px;
    }

    .tour-date {
        margin-bottom: 4px;
    }

    .tour-info h3 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .booking-status {
        margin: 10px 0;
    }

    .tour-footer {
        margin-top: 10px;
        padding-top: 10px;
    }

    .grid-2, .grid-3, .grid-4, .extra-grid, .itinerary-cards-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tour-grid, .footer-grid, .search-package-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        gap: 40px;
    }

    .search-modal { padding: 10px; }
    .search-modal-content { height: 100%; max-height: 100%; border-radius: 0; }
    .search-body { flex: 1; }

    /* Bottom Nav Pill */
    .bottom-nav {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        border-radius: 50px;
        background: var(--white);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
        height: 70px;
    }

    body { padding-bottom: 110px; }
}

/* Car Rental Specifics */
.car-hero-banner {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.main-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .car-hero-banner {
        height: 200px;
        border-radius: var(--radius-md);
    }
}

.car-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}


/* Booking Buttons */
.btn-book {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-book-blue {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tour-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.tour-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 5px;
    min-height: 45px;
    font-size: 0.85rem;
    border-radius: 12px;
    width: 100%;
}

@media (max-width: 480px) {
    .tour-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .tour-actions {
        grid-template-columns: 1fr 1fr; /* Stay side-by-side but equal */
    }

    .tour-actions a {
        padding: 12px 5px;
        font-size: 0.8rem;
    }
}

/* --- Critical UI Fixes & Components --- */

/* Force Equal Buttons across all devices */
.tour-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 15px !important;
}

.tour-actions a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 5px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    min-height: 45px !important;
}

@media (max-width: 480px) {
    .tour-actions a {
        font-size: 0.8rem !important;
        padding: 12px 2px !important;
    }
}

/* Social Media Button Component */
.social-contact-section {
    padding: 40px 20px !important;
    background: #ffffff !important;
    border-radius: 32px !important;
    margin-top: 40px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.social-btns-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Stacked like mobile */
    gap: 15px !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.social-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 16px !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.social-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.social-btn.facebook { background: #1877F2 !important; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.social-btn.tiktok { background: #000000 !important; }

.social-btn svg {
    width: 20px !important;
    height: 20px !important;
}

/* Footer Social Icons */
.footer-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.footer-social-link:hover {
    background: var(--primary) !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 768px) {
    .social-btns-grid { grid-template-columns: 1fr !important; }
}

/* End of style.css */

/* Seasonal Spec Section */
.spec-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 1200px) {
    .spec-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr !important; }
}

.spec-card {
    background: #0f172a !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* End of style.css */
/* Tour Date Tags */
.tour-date, .trip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.m-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.d-tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid #dbeafe;
}

@media (max-width: 768px) {
    .m-tag, .d-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}
/* Premium Service Cards */
.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.extra-item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.extra-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.extra-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.extra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.extra-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.extra-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-extra {
    margin-top: auto;
    background: var(--bg-light);
    color: var(--primary);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-extra:hover {
    background: var(--primary);
    color: var(--white);
}

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

@media (max-width: 768px) {
    .extra-grid {
        grid-template-columns: 1fr;
    }
}
