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

:root {
    --gold: #000000;
    --dark: #ffffff;
    --darker: #f5f5f5;
    --text: #000000;
    --text-light: #666666;
    --accent: #333333;
    --success: #2d5016;
    --pending: #8b5a00;
    --border: rgba(0, 0, 0, 0.1);
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============= PAGE CONTAINER ============= */
.page {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============= PREMIUM NAVIGATION ============= */
.premium-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.logo-section {
    display: flex;
    flex-direction: column; /* tagline below the logo */
    gap: 4px;
}

.logo-main {
    display: flex;          /* center the image */
    align-items: center;    /* vertical alignment */
    justify-content: center;/* horizontal centering */
}

.logo-img {
    height: 40px;           /* match text height */
    width: auto;
}

.logo-main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    top: 1px;
}

.tagline {
    font-size: 10px;
    color: #aaa;
}
.tagline {
    font-size: 9px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 1025px) {
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 9px;
    }
}

/* Utility dropdown in nav */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.nav-dropdown-toggle .chevron {
    font-size: 10px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    display: none;
    z-index: 1200;
}

.nav-item-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .nav-dropdown-menu a {
        font-size: 13px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-dropdown-menu a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown-menu a {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .nav-dropdown-menu a {
        font-size: 8px;
        padding: 6px 12px;
    }
}

.nav-dropdown-menu a:hover {
    background: #f5f5f5;
    color: #000;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-item-dropdown.open > .nav-dropdown-toggle {
    color: #000000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, transparent);
}

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

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-actions {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 10px;
    }
}

.hamburger-menu {
    display: none !important;
}

@media (min-width: 1025px) {
    .nav-links {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: flex !important;
    }
}

/* ============= FIXED CONTACT BUTTONS ============= */
.fixed-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.fixed-call-btn:hover {
    background: #27ae60;
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.6);
    transform: scale(1.1);
}

.fixed-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.fixed-call-btn svg {
    width: 28px;
    height: 28px;
}

.fixed-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.fixed-whatsapp-btn:hover {
    background: #20ba58;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.fixed-whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.fixed-whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 1024px) {
    body {
        font-size: 14px;
    }

    .fixed-call-btn,
    .fixed-whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .fixed-call-btn {
        left: 20px;
    }

    .fixed-whatsapp-btn {
        right: 20px;
    }

    .fixed-call-btn svg,
    .fixed-whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
    }

    .hamburger-menu span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-open {
        display: flex !important;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

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

    .btn-book-nav {
        padding: 10px 20px;
        font-size: 12px;
    }

    .premium-nav {
        padding: 15px 10px;
    }

    .main-content {
        padding: 30px 10px !important;
    }

    h1 {
        font-size: px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    .container {
        padding: 0 15px !important;
    }
}

.signin-link,
.signup-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signin-link {
    color: #666666;
}

.signin-link:hover {
    color: #a07a3b;
}

.signup-link {
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #a07a3b;
}

.btn-book-nav {
    position: relative;
    overflow: hidden;
    background: #a07a3b;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1; /* text stays above wipes */
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .btn-book-nav {
        padding: 10px 24px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .btn-book-nav {
        padding: 9px 20px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .btn-book-nav {
        padding: 12px 16px;
        font-size: 9px;
        letter-spacing: 0.2px;
    }
}

/* --- semi-transparent wipe --- */
.btn-book-nav::before {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.4s ease-out;
    z-index: 0; /* behind text */
}

/* --- full black wipe --- */
.btn-book-nav::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgb(255, 255, 255);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.95s ease-out;
    transition-delay: 0.10s;
    z-index: 0; /* behind text */
}
.btn-book-nav:hover::before {
    transform: translateX(100%) rotate(-20deg);
}

.btn-book-nav:hover:after {
    transform: translateX(100%) rotate(-20deg);
}
.btn-book-nav1 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1; /* text stays above wipes */
}

/* --- semi-transparent wipe --- */
.btn-book-nav1::before {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgba(0,0,0,0.35);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.4s ease-out;
    z-index: 0; /* behind text */
}

/* --- full black wipe --- */
.btn-book-nav1::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgb(0, 0, 0);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.95s ease-out;
    transition-delay: 0.10s;
    z-index: 0; /* behind text */
}

.btn-book-nav1:hover::before {
    transform: translateX(100%) rotate(-20deg);
}

.btn-book-nav1:hover::after {
    transform: translateX(100%) rotate(-20deg);
}
/* ============= MAIN CONTENT ============= */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ============= BLOG PAGE ============= */
.blog-page {
    padding-top: 80px;
}

.blog-hero {
    margin-bottom: 40px;
}

.blog-hero-content {
    max-width: 720px;
}

.blog-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-hero-content p {
    max-width: 720px;
    line-height: 1.8;
}

.blog-list {
    margin-top: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 8px;
}

.blog-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111111;
}

.blog-excerpt {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-content .btn-book-nav1 {
    margin-top: auto;
}

.blog-details {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.blog-details-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual blog article pages */
.blog-article {
    padding: 80px 0 60px;
}

.blog-article .about-content {
    display: flex;
    justify-content: center;
}

.blog-article .about-container {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    padding: 40px 40px 32px;
}

.blog-article .about-text {
    margin-bottom: 24px;
}

.blog-article .about-text:last-of-type {
    margin-bottom: 0;
}

.blog-article .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 12px;
}

.blog-article .about-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-article .about-text p,
.blog-article .about-text ul {
    font-size: 14px;
    line-height: 1.9;
    color: #444444;
}

.blog-article .about-text ul {
    margin-left: 22px;
}

.blog-article-hero {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    margin-bottom: 28px;
}

.blog-article-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b28a4b;
    margin-bottom: 6px;
}

.blog-article-lead {
    font-size: 15px;
    line-height: 1.9;
    color: #333333;
}

.blog-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 16px;
}

.blog-details h3 {
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 8px;
}

.blog-details p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.blog-details ul {
    padding-left: 20px;
    margin-bottom: 8px;
}

.blog-details li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* ============= HERO SECTION ============= */
.hero-section {
    margin-bottom: 0;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 80px;
    max-width: 900px;
    color: #ffffff;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ============= ABOUT PREVIEW SECTION ============= */
.about-preview {
    padding: 80px 40px;
    background: #ffffff;
}

.about-preview-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #000000;
}

.about-preview-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ============= SERVICES SECTION ============= */
.services {
    padding: 80px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 6px;
    color: #000;
}

.services-subtitle {
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.service-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-icon { 
    width: 56px; height: 56px; display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

/* ============= SERVICES GALLERY (image tiles) ============= */
.services-gallery {
    padding: 100px 40px;
    background: #fbfbfb;
}

.services-gallery-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.services-gallery .eyebrow {
    color: #a07a3b;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.services-hero {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin: 0 auto 18px;
    line-height: 1.05;
    color: #0b0b0b;
}

.services-lead {
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 36px;
    font-size: 18px;
}

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

.tile {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.tile img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* ensure images themselves have square corners */
.tile img {
    border-radius: 0;
}

.tile:hover img {
    transform: scale(1.04);
}

.tile figcaption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    color: #ffffff;
    text-align: left;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
    padding: 20px;
    border-radius: 0;
}

.tile h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.tile p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* ============= ABOUT SECTION (Framer-style embedded image) ============= */
.about-section {
    margin-top: 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.6));
    padding: 26px;
    border-radius: 14px;
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.about-media:hover img {
    transform: scale(1.03) translateY(-6px);
}

.overlay-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255,255,255,0.85);
    color: #000000;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 68%;
}

.overlay-card h5 {
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
}

.about-copy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 12px;
}

.about-copy p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

    .about-media img {
        height: 320px;
    }

    .overlay-card {
        left: 16px;
        right: 16px;
        max-width: auto;
    }
}

/* ============= KPI CARDS ============= */
.kpi-section {
    margin-bottom: 80px;
}

.kpi-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.kpi-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kpi-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.kpi-card:hover::before {
    opacity: 1;
}

.kpi-badge {
    font-size: 12px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 16px;
}

.kpi-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.kpi-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.kpi-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kpi-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kpi-change {
    font-size: 12px;
    color: #666666;
}

.kpi-change.positive {
    color: #2d5016;
}

/* ============= SECTION HEADERS ============= */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 60px;
}

.section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.view-all {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all:hover {
    gap: 8px;
}

/* ============= FLEET SECTION ============= */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.fleet-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.fleet-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.fleet-image {
    min-width: 120px;
    text-align: center;
}

.fleet-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.fleet-info {
    flex: 1;
}

.fleet-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fleet-spec {
    font-size: 12px;
    color: #000000;
    margin-bottom: 8px;
}

.fleet-details {
    font-size: 12px;
    color: #666666;
}

.fleet-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.fleet-status.active {
    background: rgba(45, 80, 22, 0.15);
    color: #2d5016;
}

.fleet-status.maintenance {
    background: rgba(139, 90, 0, 0.15);
    color: #8b5a00;
}

/* ============= BOOKINGS TABLE ============= */
.bookings-table {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead {
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border);
}

th {
    padding: 20px;
    text-align: left;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: #666666;
}

tbody tr {
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(45, 80, 22, 0.15);
    color: #2d5016;
}

.status-badge.pending {
    background: rgba(139, 90, 0, 0.15);
    color: #8b5a00;
}

/* ============= DRIVERS SECTION ============= */
.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.driver-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.driver-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.driver-avatar {
    margin-bottom: 16px;
}

.driver-avatar img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 8px;
}

/* Tourism gallery */
.tourism-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tourism-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    text-align: left;
}

.tourism-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.tourism-card h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.tour-desc {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.driver-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.driver-title {
    font-size: 12px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.driver-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}

.stat-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
}

.driver-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.driver-status.online {
    background: rgba(45, 80, 22, 0.15);
    color: #2d5016;
}

.driver-status.offline {
    background: rgba(200, 200, 200, 0.3);
    color: #666666;
}

/* ============= ANALYTICS ============= */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.analytics-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.analytics-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

canvas {
    max-height: 250px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.insight-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-stat {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.insight-desc {
    font-size: 12px;
    color: #666666;
}

/* ============= CTA SECTION ============= */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.05));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin: 80px 0;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
}

.btn-primary {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ============= PREMIUM FOOTER ============= */
.premium-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-top: 1px solid var(--border);
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
}

.footer-col p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000000;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #999999;
    font-size: 12px;
}

/* ============= SIGN IN PAGE - SPLIT SCREEN ============= */
:has(.signin-container) {
    height: 100%;
    overflow: hidden;
}

:has(.signin-container) body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.signin-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    max-height: 100vh;
}

.signin-left {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px;
    padding-top: 60px;
    overflow: hidden;
    max-height: 100vh;
    box-sizing: border-box;
}

.signin-form-wrapper {
    width: 100%;
    max-width: 380px;
    max-height: 100vh;
    overflow-y: auto;
}

.signin-form-wrapper h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.signin-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.signin-form {
    margin-bottom: 20px;
}

.signin-input-group {
    margin-bottom: 12px;
}

.signin-input-group input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 14px;
    color: #000000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signin-input-group input::placeholder {
    color: #999999;
}

.signin-input-group input:focus {
    outline: none;
    background: #f0f0f0;
    box-shadow: 0 0 0 3px rgba(160, 122, 59, 0.1);
}

.signin-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.signin-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666666;
}

.signin-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.signin-checkbox label {
    cursor: pointer;
    line-height: 1.5;
}

.signin-link {
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signin-link:hover {
    color: #8b6730;
}

.signin-recovery {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.signin-recovery:hover {
    color: #a07a3b;
}

.signin-guest {
    display: block;
    text-align: center;
    color: #a07a3b;
    text-decoration: none;
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 12px 32px;
    border: 2px solid #a07a3b;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    background-color: transparent;
}

.signin-guest:hover {
    background-color: #a07a3b;
    color: #ffffff;
}

.signin-btn {
    position: relative;
    overflow: hidden;
    width: auto;
    padding: 14px 48px;
    background: #a07a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    z-index: 1;
}

/* --- semi-transparent wipe --- */
.signin-btn::before {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.4s ease-out;
    z-index: 0;
}

/* --- full white wipe --- */
.signin-btn::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgb(255, 255, 255);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.95s ease-out;
    transition-delay: 0.10s;
    z-index: 0;
}

.signin-btn:hover::before {
    transform: translateX(100%) rotate(-20deg);
}

.signin-btn:hover::after {
    transform: translateX(100%) rotate(-20deg);
}

.signin-divider {
    text-align: center;
    font-size: 13px;
    color: #999999;
    margin: 32px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.signin-divider::before,
.signin-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.signin-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
}

.signin-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666666;
}

.signin-social-btn:hover {
    border-color: #a07a3b;
    background: #fafafa;
    transform: translateY(-2px);
}

.signin-social-btn.google {
    color: #4285F4;
}

.signin-social-btn.apple {
    color: #000000;
}

.signin-social-btn.facebook {
    color: #1877F2;
}

.signin-footer {
    text-align: center;
    font-size: 13px;
    color: #666666;
}

.signin-footer a {
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signin-footer a:hover {
    color: #8b6730;
}

.signin-right {
    flex: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.signin-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .signin-container {
        flex-direction: column;
    }

    .signin-left,
    .signin-right {
        flex: none;
    }

    .signin-left {
        height: calc(100vh - 80px);
    }

    .signin-right {
        display: none;
    }

    .signin-form-wrapper {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .signin-left {
        padding: 40px 20px;
        height: 100vh;
    }

    .signin-form-wrapper h1 {
        font-size: 32px;
    }

    .signin-socials {
        gap: 12px;
    }

    .signin-social-btn {
        width: 45px;
        height: 45px;
    }
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-form {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: #000000;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #a07a3b;
    box-shadow: 0 0 0 3px rgba(160, 122, 59, 0.1);
}

.form-group input::placeholder {
    color: #999999;
}

.form-remember,
.form-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666666;
}

.form-remember input,
.form-agree input {
    width: auto;
    cursor: pointer;
}

.form-agree a {
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
}

.form-agree a:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px 24px;
    background: #a07a3b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: #8b6730;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 122, 59, 0.25);
}

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

.auth-footer {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.auth-footer p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
}

.auth-footer p:last-child {
    margin-bottom: 0;
}

.auth-link {
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #8b6730;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-section {
        padding: 40px 20px;
    }
    
    .auth-card {
        padding: 32px 24px;
    }
    
    .auth-card h1 {
        font-size: 24px;
    }
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 24px;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .main-content {
        padding: 40px 24px;
    }

    .hero-section {
        height: auto;
    }

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

    .hero-copy {
        padding: 40px 24px;
        background: #ffffff;
    }

    .hero-media {
        position: relative;
        width: 100%;
        height: 400px;
    }

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

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

    .about-preview-text h2 {
        font-size: 36px;
    }

    .about-preview-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        gap: 16px;
        font-size: 12px;
    }

    .nav-actions {
        gap: 12px;
    }

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

    .main-content {
        padding: 20px 16px;
    }

    .kpi-container {
        grid-template-columns: 1fr;
    }

    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 32px;
    }

    .hero-section {
        height: auto;
        min-height: 600px;
    }

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

    .hero-copy {
        padding: 30px 16px;
        background: #ffffff;
    }

    .hero-media {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* Responsive rules for Services grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .services {
        padding: 40px 20px;
    }

    .service-card {
        padding: 18px;
    }

    .services-tiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tile img {
        height: 260px;
    }

    .services-hero {
        font-size: 34px;
    }

    .services-gallery {
        padding: 60px 16px;
    }
}

/* ============= CTA: Color-changing button ============= */
.cta-color-section {
    padding: 60px 20px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 16px;
}

.cta-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.cta-inner p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-color-toggle {
    padding: 14px 36px;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid #000000;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: background 300ms ease, color 300ms ease, transform 160ms ease, box-shadow 300ms ease;
}

.btn-color-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* active state will be applied by JS via inline styles or class */
.btn-color-toggle.active {
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .btn-color-toggle { padding: 12px 28px; font-size: 14px; }
}

/* ============= BOOKING CTA HERO ============= */
.booking-cta {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.booking-cta-bg img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.10) 65%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.booking-cta-content {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}

.booking-cta p {
    max-width: 900px;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.6;
}

.btn-book {
    background: #a07a3b;
    border: none;
    color: #fff;
    padding: 14px 44px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 220ms ease;
}

.btn-book:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(0,0,0,0.22); }

@media (max-width: 1024px) {
    .booking-cta-bg img { height: 420px; }
    .booking-cta h2 { font-size: 40px; }
}

@media (max-width: 768px) {
    .booking-cta-bg img { height: 320px; }
    .booking-cta h2 { font-size: 28px; }
    .booking-cta p { font-size: 15px; }
}
/* ============= BOOKING CTA HERO ============= */
.booking-cta {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.booking-cta-bg img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.10) 65%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.booking-cta-content {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}

.booking-cta p {
    max-width: 900px;
    color: rgba(255,255,255,0.92);
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.6;
}

.btn-book {
    background: #a07a3b;
    border: none;
    color: #fff;
    padding: 14px 44px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 220ms ease;
}

.btn-book:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(0,0,0,0.22); }

@media (max-width: 1024px) {
    .booking-cta-bg img { height: 420px; }
    .booking-cta h2 { font-size: 40px; }
}

@media (max-width: 768px) {
    .booking-cta-bg img { height: 320px; }
    .booking-cta h2 { font-size: 28px; }
    .booking-cta p { font-size: 15px; }
}

/* ============= FAQ SECTION ============= */
.faq-section {
    padding: 100px 40px;
    background: #ffffff;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-label {
    color: #a07a3b;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 12px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #000;
}

.faq-intro {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-contact {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.contact-link {
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #8b6632;
    text-decoration: underline;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 8px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #000000;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.26, 1);
    will-change: transform;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Use GPU-accelerated transform for smoother expand/collapse */
.faq-answer {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.32s cubic-bezier(0.22, 0.9, 0.26, 1), opacity 0.22s ease;
    max-height: none; /* remove height clipping - transform handles visibility */
}

.faq-item.active .faq-answer {
    transform: scaleY(1);
    opacity: 1;
    padding-bottom: 6px;
}

.faq-answer p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-intro {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
}


    .btn-large {
        padding: 14px 32px;
        font-size: 12px;
    }

    .about-preview {
        padding: 60px 16px;
    }

    .about-preview-text h2 {
        font-size: 28px;
    }

    .about-preview-text p {
        font-size: 14px;
    }

    .about-preview-image img {
        height: 280px;
    }


/* ============= WHY CHOOSE US SECTION ============= */
.why-choose-us {
    padding: 100px 40px;
    background: #ffffff;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-label {
    color: #a07a3b;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 12px;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

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

.why-tile {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    height: 380px;
}

.why-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.why-tile:hover img {
    transform: scale(1.04);
}

.why-tile figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    color: #ffffff;
    padding: 40px 24px 24px 24px;
    text-align: left;
}

.why-tile figcaption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.why-tile figcaption p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

@media (max-width: 1024px) {
    .why-choose-us {
        padding: 80px 24px;
    }
    
    .why-choose-us h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .why-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-tile {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 16px;
    }
    
    .why-choose-us h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .why-tiles {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-tile {
        height: 300px;
    }
    
    .why-tile figcaption {
        padding: 30px 16px 16px 16px;
    }
    
    .why-tile figcaption h3 {
        font-size: 18px;
    }
}

/* ============= FOOTER ============= */
footer.footer {
    background: #f5f5f5;
    padding: 80px 80px 40px 80px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-container {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0;
    margin-bottom: 60px;
    justify-content: space-between;
    width: 100%;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-column p {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

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

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

.footer-column a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #a07a3b;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
    
    footer.footer {
        padding: 60px 24px 30px 24px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    footer.footer {
        padding: 40px 16px 20px 16px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 13px;
    }
}
.img-debug-panel, #img-debug-panel {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2000;
    max-width: 420px;
    font-size: 14px;
}

#img-debug-panel .panel-inner {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

#img-debug-panel ul { list-style: none; padding-left: 0; margin: 8px 0; max-height: 160px; overflow: auto; }
#img-debug-panel li { margin-bottom: 6px; word-break: break-all; }
#img-debug-panel code { font-size: 12px; background: rgba(0,0,0,0.03); padding: 4px 6px; border-radius: 6px; }

#img-debug-panel .panel-actions { display:flex; gap:10px; margin-top:10px; align-items:center; }

/* ============= BOOKING PAGE ============= */
.booking-hero {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border-radius: 16px;
    margin-bottom: 40px;
}

.booking-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-hero p {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
}

/* ============= SCROLL ANIMATIONS ============= */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============= ABOUT PAGE STYLES ============= */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.about-hero-content .logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-hero-content .logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.about-hero-content .logo-main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 600;
    letter-spacing: 8px;
    color: #ffffff;
    margin: 0;
    position: relative;
    top: 1px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-hero-content .logo-main h1 {
        font-size: 72px;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .about-hero-content .logo-main h1 {
        font-size: 56px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .about-hero-content .logo-main h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #ffffff;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-hero-content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 40px;
        margin-bottom: 8px;
        letter-spacing: 0px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
        margin-bottom: 6px;
        letter-spacing: 0px;
    }
}

.about-hero-content p {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(109, 99, 99, 0.9);
}

/* About Content Section */
.about-content {
    padding: 80px 40px;
    background: #ffffff;
}

.about-container {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 40px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
}

/* Legal / policy pages - keep typography modest */
.legal-page .about-text h2 {
    font-size: 32px;
}

.legal-page .about-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-page .about-container {
    max-width: 900px;
    display: block;
}

.legal-page .about-text {
    margin-bottom: 24px;
}

.legal-page .about-text p,
.legal-page .about-text ul {
    line-height: 1.9;
}

.legal-page .about-text ul {
    margin-left: 24px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Founder Section */
.founder-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
}

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

.founder-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #000000;
}

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

.founder-image {
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
}

.founder-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.founder-text p:nth-of-type(1) {
    font-size: 18px;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-text p:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

/* Partners Section */
.partners-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.partners-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: #000000;
}

.partners-intro {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 48px;
}

/* ============= STATS SECTION ============= */
.stats-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(160, 122, 59, 0.05), rgba(201, 169, 97, 0.05));
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #a07a3b;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.partner-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
    max-width: 240px;
}

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #a07a3b;
    padding: 8px 20px 20px;
    margin: 0;
}

.partner-card p {
    font-size: 14px;
    color: #d4af37;
    padding: 0 20px 20px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-content p {
        font-size: 18px;
    }

    .about-text h2,
    .founder-container h2,
    .partners-container h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .partner-card img {
        height: 220px;
    }

    .founder-image img {
        height: 300px;
    }

    /* Mobile Form Improvements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    textarea,
    select {
        font-size: 16px;
        padding: 12px;
        width: 100%;
    }

    .booking-input {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 10px;
    }

    /* Vehicle Grid Mobile */
    .vehicle-grid,
    .vehicle-selection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehicle-card,
    .vehicle-selection-card {
        margin-bottom: 10px;
    }

    /* Button Mobile */
    .book-button,
    .booking-button,
    .confirm-btn,
    .btn-book-nav {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
        width: 100%;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px;
    }

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

    /* Services Container */
    .service-card {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

/* Extra Small Phones (Below 480px) */
@media (max-width: 480px) {
    .premium-nav {
        padding: 10px 5px;
    }

    .logo-section h1 {
        font-size: 18px;
    }

    .tagline {
        font-size: 10px;
    }

    .btn-book-nav {
        padding: 14px 12px;
        font-size: 11px;
    }

    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 18px !important;
    }

    h3 {
        font-size: 16px !important;
    }

    p {
        font-size: 13px;
    }

    .main-content {
        padding: 20px 5px !important;
    }

    .container {
        padding: 0 10px !important;
    }

    .vehicle-card,
    .vehicle-selection-card {
        border-radius: 3px;
    }

    .book-button,
    .booking-button,
    .confirm-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .footer-column {
        padding: 20px 10px;
    }

    .fixed-call-btn,
    .fixed-whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
    }

    .fixed-call-btn {
        left: 10px;
    }

    .fixed-whatsapp-btn {
        right: 10px;
    }
}

/* Contact Information & Form Section */
.contact-info {
    padding: 60px 40px;
    background: #f5f5f5;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Left Side */
.contact-left {
    padding: 0;
}

.contact-left .eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 16px;
    display: block;
}

.contact-left h2 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

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

.info-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #a07a3b;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    padding-top: 8px;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.info-value a {
    color: #000;
    text-decoration: none;
}

.info-value a:hover {
    color: #a07a3b;
}

/* Right Side - Form */
.contact-right {
    background: white;
    padding: 60px;
    border-radius: 4px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: none;
}

.form-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
    transition: border-color 0.3s ease;
}

.form-input-wrapper:focus-within {
    border-bottom-color: #a07a3b;
}

.form-icon {
    color: #999;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: #333;
    flex: 1;
    width: 100%;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: transparent;
}

.form-group textarea {
    resize: none;
    min-height: 80px;
    border: none;
    padding: 0;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    background: #a07a3b;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1;
    margin-top: 24px;
    width: fit-content;
    align-self: flex-start;
}

/* --- semi-transparent wipe --- */
.btn-submit::before {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.4s ease-out;
    z-index: 0;
}

/* --- full black wipe --- */
.btn-submit::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgb(255, 255, 255);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.95s ease-out;
    transition-delay: 0.10s;
    z-index: 0;
}

.btn-submit:hover::before {
    transform: translateX(100%) rotate(-20deg);
}

.btn-submit:hover::after {
    transform: translateX(100%) rotate(-20deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info {
        padding: 80px 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-left h2 {
        font-size: 42px;
    }

    .contact-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 60px 20px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .contact-info-items {
        gap: 30px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-label {
        font-size: 14px;
    }

    .info-value {
        font-size: 16px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ============= SERVICES PAGE STYLES ============= */

/* Service Filter Section */
.service-filter-section {
    padding: 40px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;

    /* ✅ FIX */
    width: 100%;
    left: 0;
    right: 0;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 280px;
    padding: 18px 50px;
    background: #a07a3b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 1;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .filter-btn {
        min-width: 240px;
        padding: 15px 35px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 11px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .filter-container {
        flex-direction: column;
    }

    .filter-btn {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 10px;
        letter-spacing: 0.2px;
        gap: 8px;
    }
}

/* --- semi-transparent wipe --- */
.filter-btn::before {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.4s ease-out;
    z-index: 0;
}

/* --- full white wipe --- */
.filter-btn::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 300%;
    top: -100%;
    left: -200%;
    background: rgb(255, 255, 255);
    transform: translateX(-70%) rotate(-20deg);
    transition: transform 0.95s ease-out;
    transition-delay: 0.10s;
    z-index: 0;
}

.filter-btn:hover::before {
    transform: translateX(100%) rotate(-20deg);
}

.filter-btn:hover::after {
    transform: translateX(100%) rotate(-20deg);
}

.filter-btn.active {
    background: #a07a3b;
    color: white;
}

/* Services Hero Section */
.services-hero-section {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.services-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.services-hero-content .hero-title {
    font-size: 56px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-hero-content .hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    display: none;
}

/* Services List Section */
.services-list {
    padding: 100px 40px;
    background: #fafafa;
}

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

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-card.reverse > * {
    direction: ltr;
}

.service-card-content {
    direction: ltr;
}

.service-card-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.service-card-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #a07a3b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a07a3b;
    font-weight: bold;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    color: #a07a3b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Service Benefits Section */
.service-benefits {
    padding: 100px 40px;
    background: #ffffff;
}

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

.benefits-container .eyebrow {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefits-container .eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefits-container h2.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.benefit-card {
    text-align: center;
    padding: 40px;
    background: #fafafa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #a07a3b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: white;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;

    opacity: 0.95;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-hero-content .hero-title {
        font-size: 42px;
    }

    .services-hero-content .hero-subtitle {
        font-size: 16px;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

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

    .service-card-image {
        height: 300px;
    }

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

    .service-card-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-list {
        padding: 60px 20px;
    }

    .services-hero-content .hero-title {
        font-size: 32px;
    }

    .service-card-content h3 {
        font-size: 24px;
    }

    .service-card-content > p {
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ============= EXECUTIVE RENTAL PAGE STYLES ============= */

/* Service Detail Hero */
.service-detail-hero {
    position: relative;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.service-hero-text {
    text-align: center;
    color: black;
    z-index: 1;
}

.service-hero-text h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-hero-text p {
    font-size: 20px;
}

/* Service Overview Section */
.service-overview {
    padding: 80px 40px;
    background: #fafafa;
}

.overview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.overview-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.overview-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #000;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Fleet Section */
.fleet-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.fleet-container .eyebrow {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fleet-container .eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.fleet-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fleet-container h2.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.fleet-card {
    padding: 40px;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.fleet-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fleet-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #a07a3b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
}

.fleet-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.fleet-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.fleet-specs li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.fleet-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a07a3b;
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.features-container .eyebrow {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-container .eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-container h2.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-item {
    padding: 40px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #a07a3b;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-number {
    font-size: 36px;
    font-weight: 700;
    color: #a07a3b;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 40px;
    background: #fafafa;
}

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

.pricing-container .eyebrow {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-container .eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-container h2.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.pricing-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: #a07a3b;
    box-shadow: 0 10px 30px rgba(160, 122, 59, 0.15);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

.price {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #a07a3b;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a07a3b;
    font-weight: bold;
}

.pricing-card .btn-book-nav {
    width: 100%;
    margin-top: 20px;
}

/* Booking Section on Service Page */
.booking-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.booking-content {
    text-align: center;
    color: white;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.booking-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.booking-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Design for Executive Rental Page */
@media (max-width: 1024px) {
    .fleet-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-hero {
        height: 350px;
    }

    .service-hero-text h1 {
        font-size: 42px;
    }
}

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

    .fleet-section,
    .features-section,
    .pricing-section {
        padding: 60px 20px;
    }

    .service-detail-hero {
        height: 300px;
    }

    .service-hero-text h1 {
        font-size: 32px;
    }

    .fleet-card,
    .feature-item,
    .pricing-card {
        padding: 25px;
    }

    .booking-content h2 {
        font-size: 32px;
    }

    .booking-content p {
        font-size: 16px;
    }
}

/* Choose Your Vehicle Section */
/* Date Selection Section */
.date-selection-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.date-selection-container {
    max-width: 900px;
    margin: 0 auto;
}

.date-selection-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.date-intro {
    text-align: center;
    font-size: 16px;
    color: #a07a3b;
    margin-bottom: 50px;
    font-weight: 500;
}

.date-selection-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(160, 122, 59, 0.2);
    backdrop-filter: blur(10px);
}

.date-input-group {
    display: flex;
    flex-direction: column;
}

.date-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #a07a3b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #a07a3b;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.date-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.date-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #c9a961;
    box-shadow: 0 0 0 3px rgba(160, 122, 59, 0.1);
}

/* Style date picker calendar */
.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-continue-dates {
    padding: 12px 40px;
    background: linear-gradient(135deg, #a07a3b 0%, #c9a961 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue-dates:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(160, 122, 59, 0.4);
}

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

.btn-continue-dates:disabled {
    cursor: default;
    opacity: 0.9;
}

/* Disabled vehicle select buttons */
.vehicle-box button.btn-disabled {
    background-color: #999999 !important;
    background-image: none !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    color: #ffffff !important;
    pointer-events: none !important;
}

.vehicle-box button.btn-disabled:hover {
    transform: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    background-color: #999999 !important;
}

/* Enabled vehicle select buttons */
.vehicle-box button.btn-enabled {
    background: linear-gradient(135deg, #a07a3b 0%, #c9a961 100%) !important;
    cursor: pointer !important;
    opacity: 1 !important;
    color: white !important;
    pointer-events: auto !important;
}

.vehicle-box button.btn-enabled:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .date-selection-form {
        grid-template-columns: 1fr;
    }
    
    .btn-continue-dates {
        width: 100%;
    }
    
    .date-selection-section h2 {
        font-size: 32px;
    }
}

.choose-vehicle-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.choose-vehicle-container {
    max-width: 1200px;
    margin: 0 auto;
}

.choose-vehicle-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
}

.vehicle-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.vehicle-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.vehicle-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-box h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.vehicle-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding: 0 15px;
}

.vehicle-fuel {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px !important;
}

.vehicle-limit {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px !important;
}

.vehicle-price {
    font-size: 20px;
    font-weight: 700;
    color: #a07a3b;
    margin-bottom: 15px !important;
}

.vehicle-box .btn-book-nav {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .choose-vehicle-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .choose-vehicle-section {
        padding: 60px 15px;
    }

    .choose-vehicle-section h2 {
        font-size: 28px;
    }

    .vehicle-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Still in Doubt Section */
.doubt-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.doubt-container {
    max-width: 600px;
    margin: 0 auto;
}

.doubt-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.doubt-section p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.doubt-section .btn-book-nav {
    padding: 15px 40px;
    font-size: 16px;
}

/* ============= LOCATION SELECTION STYLES ============= */

.location-selection-section {
    padding: 60px 20px;
    background: #ffffff;
}

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

.location-selection-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.location-intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.location-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.location-input-group {
    display: flex;
    flex-direction: column;
}

.location-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.location-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: #a07a3b;
}

.clear-text {
    font-size: 12px;
    color: #a07a3b;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.clear-text:hover {
    color: #8b6834;
}

.btn-current-location {
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #a07a3b;
    color: #a07a3b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-current-location:hover {
    background: rgba(160, 122, 59, 0.1);
    border-color: #8b6632;
    color: #8b6632;
}

.btn-current-location:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#map {
    cursor: crosshair;
}

.distance-display {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.distance-display h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.distance-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.distance-row:last-child {
    border-bottom: none;
}

.distance-label {
    color: #666;
    font-weight: 500;
}

.distance-value {
    font-weight: 600;
    color: #a07a3b;
    font-size: 16px;
}

@media (max-width: 768px) {
    .location-inputs {
        grid-template-columns: 1fr;
    }
    
    .location-selection-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .doubt-section h2 {
        font-size: 32px;
    }

    .doubt-section p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .doubt-section {
        padding: 60px 15px;
    }

    .doubt-section h2 {
        font-size: 28px;
    }

    .doubt-section p {
        font-size: 14px;
    }
}

/* Vehicle Details Page */
.vehicle-details-section {
    padding: 60px 20px;
    background: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.vehicle-details-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vehicle-info {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-info h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

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

.spec-label {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.spec-value {
    display: block;
    font-size: 24px;
    color: #a07a3b;
    font-weight: 700;
}

.vehicle-description {
    margin-bottom: 40px;
}

.vehicle-description h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.vehicle-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.vehicle-features {
    margin-bottom: 40px;
}

.vehicle-features h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.vehicle-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.vehicle-features li {
    font-size: 15px;
    color: #666;
    padding-left: 25px;
    position: relative;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vehicle-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a07a3b;
    font-weight: 700;
    font-size: 18px;
}

.vehicle-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.vehicle-image-fade {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeInImage 1.5s ease-in-out;
    border: 3px solid #a07a3b;
    border-radius: 8px;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vehicle-details-section {
    margin: 0;
    padding: 60px 20px;
    min-height: auto;
    overflow: visible;
}

.vehicle-details-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    height: auto;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.vehicle-info-left {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 35px 25px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15px;
    overflow: visible;
    padding-bottom: 40px;
}

.details-wrapper {
    max-width: 100%;
}

.details-wrapper .btn-book-nav {
    margin-top: 5px;
}

.vehicle-info-left h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.vehicle-tagline {
    font-size: 13px;
    color: #a07a3b;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Rental Dates Display */
.rental-dates-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(160, 122, 59, 0.08);
    border-radius: 8px;
    border-left: 4px solid #a07a3b;
}

.date-badge {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
}

.date-badge.duration {
    background: rgba(160, 122, 59, 0.1);
    padding: 6px;
    border-radius: 6px;
}

.date-label {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 700;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.spec-item {
    padding: 12px;
    background: white;
    border-left: 4px solid #a07a3b;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.spec-label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.spec-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #a07a3b;
}

.vehicle-features {
    margin: 12px 0;
}

.vehicle-features h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.vehicle-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vehicle-features li {
    font-size: 14px;
    color: #555;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.vehicle-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a07a3b;
    font-weight: bold;
    font-size: 16px;
}

.vehicle-image-right {
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    box-shadow: inset 30px 0 60px rgba(0, 0, 0, 0.3);
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    border: 3px solid #a07a3b;
}

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

    .vehicle-info-left {
        min-height: auto;
    }

    .vehicle-image-right {
        min-height: 400px;
    }
}

@media (max-width: 1024px) {
    .vehicle-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vehicle-info {
        padding: 30px;
    }

    .vehicle-info h1 {
        font-size: 32px;
    }

    .vehicle-specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .vehicle-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .vehicle-details-section {
        padding: 40px 15px;
    }

    .vehicle-details-container {
        gap: 30px;
    }

    .vehicle-info {
        padding: 20px;
    }

    .vehicle-info h1 {
        font-size: 28px;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .spec-value {
        font-size: 20px;
    }

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

    .vehicle-image-container {
        height: 300px;
    }
}

/* ============= PROFILE PAGE ============= */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 12px;
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #a07a3b;
}

.btn-change-avatar {
    margin-top: 12px;
    padding: 8px 16px;
    background: #a07a3b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.btn-change-avatar:hover {
    background: #8b6730;
}

.profile-info-header {
    flex: 1;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
}

.profile-email {
    font-size: 16px;
    color: #666666;
    margin: 0 0 4px 0;
}

.profile-member {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.profile-content {
    display: grid;
    gap: 40px;
}

.profile-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.profile-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #a07a3b;
    padding-bottom: 12px;
}

.profile-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row label {
    font-weight: 600;
    color: #333333;
    min-width: 120px;
}

.detail-row span {
    color: #666666;
    text-align: right;
}

.btn-edit-profile {
    padding: 12px 32px;
    background: #a07a3b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-edit-profile:hover {
    background: #8b6730;
}

.preferences-list {
    display: grid;
    gap: 16px;
}

.preference-item {
    display: flex;
    align-items: center;
}

.preference-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    font-size: 16px;
    color: #333333;
}

.preference-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bookings-list {
    margin-bottom: 20px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #a07a3b;
}

.booking-date {
    font-weight: 600;
    color: #a07a3b;
    min-width: 100px;
}

.booking-details {
    flex: 1;
    margin: 0 20px;
}

.booking-route {
    font-weight: 600;
    color: #333333;
    margin: 0 0 4px 0;
}

.booking-status {
    font-size: 12px;
    color: #66BB6A;
    margin: 0;
    font-weight: 500;
}

.booking-price {
    font-weight: 700;
    color: #a07a3b;
    min-width: 80px;
    text-align: right;
}

.btn-view-all-bookings {
    display: inline-block;
    color: #a07a3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-view-all-bookings:hover {
    color: #8b6730;
    text-decoration: underline;
}

.settings-list {
    display: grid;
    gap: 12px;
}

.btn-setting {
    padding: 12px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    color: #333333;
    text-align: left;
    transition: all 0.3s ease;
}

.btn-setting:hover {
    background: #a07a3b;
    color: white;
    border-color: #a07a3b;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333333;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #a07a3b;
    box-shadow: 0 0 0 3px rgba(160, 122, 59, 0.1);
}

.btn-save-profile {
    width: 100%;
    padding: 12px;
    background: #a07a3b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-save-profile:hover {
    background: #8b6730;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-row span {
        text-align: left;
        margin-top: 4px;
    }

    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .booking-date {
        width: 100%;
    }

    .booking-details {
        width: 100%;
        margin: 0;
    }

    .booking-price {
        width: 100%;
        text-align: left;
    }
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-greeting {
    color: #a07a3b;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: white;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.error .toast-icon::before {
    content: "✕";
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.toast.success {
    border-left-color: #27ae60;
}

.toast.success .toast-icon::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.toast.warning {
    border-left-color: #f39c12;
}

.toast.warning .toast-icon::before {
    content: "!";
    color: #f39c12;
    font-weight: bold;
    font-size: 18px;
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.toast-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 0.7;
}

.toast.error .toast-message {
    color: #e74c3c;
}

.toast.success .toast-message {
    color: #27ae60;
}

.toast.warning .toast-message {
    color: #f39c12;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOut 0.3s ease-out forwards;
}

@media (max-width: 600px) {
    .toast-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* ============= SOCIAL LINKS ============= */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-column .social-link {
    color: #666666;
}

.footer-column .social-link:hover {
    color: #000000;
}

.footer-column .social-link:hover svg {
    fill: #000000;
}

