:root {
    --color-navy: #082046;
    --color-gold: #d4a843;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-bg: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

/* ---------------------------------
   Buttons
------------------------------------ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background-color: #b8912e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-navy:hover {
    background-color: #061836;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 32, 70, 0.2);
}

/* ---------------------------------
   Navigation
------------------------------------ */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    position: sticky;
    top: 20px;
    z-index: 100;
    width: 92%;
    max-width: 1400px;
    margin: 20px auto 40px auto; /* Margin to separate it from the hero */
    border-radius: 100px; /* Elevated pill shape */
    box-shadow: 0 10px 30px rgba(8, 32, 70, 0.08); /* Soft elevated shadow */
    border: 1px solid rgba(255, 255, 255, 1);
}

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

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

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title--nav {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-subtitle-container--nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-subtitle-container--nav .line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-gold);
}

.logo-subtitle--nav {
    color: var(--color-gold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--color-gold);
}

/* ---------------------------------
   Hero Section (Minimalist, Full-Width)
------------------------------------ */
.hero-section {
    display: flex;
    min-height: 80vh;
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    width: 100%;
}

.services-pill {
    display: inline-block;
    background-color: rgba(8, 32, 70, 0.05);
    color: var(--color-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-tagline {
    font-size: 46px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.location-pin {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 50px;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    max-width: 90px;
    line-height: 1.2;
}

/* Right Side - Soft Fluid Curve */
.hero-right {
    width: 50%;
    position: relative;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('car catalouge 2.webp');
    background-size: 90%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.curve-mask {
    position: absolute;
    top: 0;
    left: -1px;
    width: 6%;
    height: 100%;
    z-index: 5;
    fill: var(--color-bg);
}

.curve-navy-line {
    position: absolute;
    top: 0;
    left: 3%;
    width: 6%;
    height: 100%;
    z-index: 4;
}

.curve-gold-line {
    position: absolute;
    top: 0;
    left: 6%;
    width: 6%;
    height: 100%;
    z-index: 3;
}


/* ---------------------------------
   Dynamic Catalogue Section
------------------------------------ */
.catalogue-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.header-line {
    width: 40px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Tabs */
.catalogue-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e1e4e8;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--color-navy);
}

.tab-btn.active {
    color: var(--color-navy);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

/* Tab Panes */
.catalogue-content {
    position: relative;
    min-height: 400px;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(25px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-pane {
    display: none;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
}

.tab-pane.active {
    display: flex;
    animation: fadeInSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pane-visual {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-image {
    width: 350px;
    height: 350px;
    max-width: 80vw;
    max-height: 80vw;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 18px 40px rgba(8, 32, 70, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pane-visual:hover .fleet-image {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 22px 50px rgba(8, 32, 70, 0.22);
}

.pane-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.slide-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e1e4e8;
    background-color: var(--color-white);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slide-btn:hover {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 168, 67, 0.35);
}

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

.pane-details {
    width: 50%;
    padding: 20px 0;
}

.pane-eyebrow {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.pane-details h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pane-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 450px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 15px;
    max-width: 400px;
}

.f-label {
    width: 120px;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.f-value {
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 600;
}

/* ---------------------------------
   Footer Section (Full-Width Back of Card)
------------------------------------ */
.footer-section {
    display: flex;
    min-height: 400px;
    position: relative;
    margin-top: 60px;
}

.footer-left {
    width: 50%;
    background-color: var(--color-navy);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    position: relative;
    z-index: 2;
}

/* The gold line mimicking the back of the business card */
.footer-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: var(--color-gold);
}

.footer-logo-block {
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

.temple-silhouette {
    width: 100%;
    height: 100px;
    opacity: 0.5;
}

.footer-right {
    width: 50%;
    background-color: var(--color-white);
    padding: 80px 40px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -15%;
    padding-left: 15%; /* Offset clip-path overlay */
    z-index: 1;
}

.director-info {
    margin-bottom: 40px;
}

.director-info h2 {
    color: var(--color-navy);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.director-info h3 {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-navy);
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s;
}

.contact-item:hover {
    opacity: 0.7;
}

.contact-icon {
    background-color: var(--color-navy);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------------
   Responsive Design
------------------------------------ */
@media (max-width: 1024px) {
    .nav-container { padding: 0 20px; }
    .hero-tagline { font-size: 38px; }
    .trust-icons { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    
    .footer-left { padding: 60px 40px; }
    .footer-right { padding-left: 10%; margin-left: -10%; }
}

@media (max-width: 768px) {
    /* Navbar adaptation */
    .navbar {
        width: 94%;
        top: 10px;
        margin: 10px auto 25px auto;
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-phone {
        display: none; /* Hide text phone on tablet/mobile to save space */
    }
    
    .nav-contact {
        gap: 10px;
    }

    /* Hero Section adaptation */
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-left {
        width: 100%;
        padding: 20px 24px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .services-pill {
        margin-bottom: 20px;
    }
    
    .location-pin {
        justify-content: center;
        margin-bottom: 35px;
    }
    
    .trust-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-right {
        width: 100%;
        min-height: 350px;
    }
    
    .hero-bg-image {
        background-size: 92%;
        background-position: center bottom;
    }
    
    .curve-mask, .curve-navy-line, .curve-gold-line {
        display: none; /* Simplify on mobile */
    }

    /* Catalogue Section adaptation */
    .catalogue-section {
        padding: 60px 20px;
    }
    
    .catalogue-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        border-bottom: none;
        margin-bottom: 35px;
    }
    
    .tab-btn {
        border: 1px solid #e1e4e8;
        border-radius: 25px;
        padding: 10px 18px;
        font-size: 14px;
        background: var(--color-white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .tab-btn.active::after { display: none; }
    .tab-btn.active {
        background-color: var(--color-navy);
        color: var(--color-white);
        border-color: var(--color-navy);
    }
    
    .tab-pane.active {
        flex-direction: column;
        text-align: center;
    }
    
    .pane-visual, .pane-details {
        width: 100%;
    }
    
    .fleet-image {
        width: 280px;
        height: 280px;
        border-width: 6px;
    }
    
    .pane-details h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .pane-desc {
        margin: 0 auto 30px auto;
    }
    
    .feature-item {
        margin: 0 auto 15px auto;
        justify-content: center;
    }
    
    .pane-actions {
        justify-content: center;
        gap: 16px;
    }

    /* Footer Section adaptation */
    .footer-section {
        flex-direction: column;
        margin-top: 40px;
    }
    
    .footer-left {
        width: 100%;
        clip-path: none;
        border-right: none;
        border-bottom: 8px solid var(--color-gold);
        padding: 50px 24px;
        text-align: center;
    }
    
    .footer-left::after { display: none; }
    
    .footer-right {
        width: 100%;
        margin-left: 0;
        padding: 50px 24px;
        text-align: center;
    }
    
    .contact-list {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-title--nav {
        font-size: 18px;
    }
    
    .logo-subtitle--nav {
        font-size: 7px;
        letter-spacing: 2px;
    }
    
    .btn-small {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .hero-tagline {
        font-size: 28px;
    }
    
    .hero-right {
        min-height: 280px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .tab-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .fleet-image {
        width: 240px;
        height: 240px;
        border-width: 5px;
    }
    
    .pane-details h3 {
        font-size: 24px;
    }
    
    .slide-btn {
        width: 42px;
        height: 42px;
    }
    
    .director-info h2 {
        font-size: 24px;
    }
    
    .contact-item {
        font-size: 13px;
        flex-wrap: wrap;
    }
}
