/* ==========================================
   1. RESET & BASE TYPOGRAPHY
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa; /* Lighter luxury background */
    color: #2b2d42;
    line-height: 1.6;
}

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

/* ==========================================
   2. NAVBAR & HEADER BRANDING (CONTROLLED LOGO)
   ========================================== */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    max-width: 320px;
}

.header-logo {
    height: 36px;       /* Constrained height */
    width: auto;        /* Preserves aspect ratio */
    max-width: 140px;   /* Prevents wide image blowout */
    object-fit: contain;
    display: block;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.brand-text span {
    color: #007acc;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #007acc;
}

.btn-phone {
    background-color: #007acc;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
    position: relative;
    background-color: #1a202c; /* Fallback color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('./background.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #007acc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #005999;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* ==========================================
   4. PAGE HEADERS & COMMON SECTIONS
   ========================================== */
.page-header {
    background-color: #1e293b;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.services, .fleet {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid, .fleet-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card, .fleet-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 20px;
}

.service-card h3, .fleet-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.service-card p, .fleet-card p {
    color: #64748b;
}

.fleet-img-placeholder {
    height: 140px;
    background-color: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #4a5568;
    font-weight: 600;
}

.rate {
    color: #007acc;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ==========================================
   5. CONTACT PAGE & FORM STYLES
   ========================================== */
.contact-info {
    padding: 70px 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.info-block {
    text-align: center;
}

.info-block i {
    font-size: 2rem;
    color: #007acc;
    margin-bottom: 15px;
}

.info-block h4 {
    color: #1a202c;
    margin-bottom: 5px;
}

.info-block a {
    color: #64748b;
    text-decoration: none;
}

.contact-section {
    padding: 70px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-card, .contact-form-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-info-card h3, .contact-form-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.contact-detail-item i {
    font-size: 1.3rem;
    color: #007acc;
    margin-top: 4px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #1a202c;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a202c;
    background-color: #f8fafc;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #007acc;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================
   6. FOOTER (COMPACT LOGO)
   ========================================== */
footer {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    height: 30px;       /* Fixed compact size */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
}

/* ==========================================
   7. RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .header-logo {
        height: 30px;
        max-width: 110px;
    }

    .brand-text {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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