/* ========== VARIABLES ========== */
:root {
    --primary-dark: #0a0a0a;
    --primary-color: #1a1a1a;
    --secondary-color: #c9a959;
    --secondary-dark: #8a6e3c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    position: relative;
    padding: 8px 0 !important;
    margin: 0 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1544124095-cb6d4e507c1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    color: var(--text-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ========== SECTION STYLES ========== */
.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Essence Section */
.essence {
    padding: 100px 0;
    background: var(--bg-light);
}

.essence-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.essence-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.essence-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.essence-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.essence-card p {
    color: var(--text-gray);
    margin: 0;
}

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

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    padding: 80px 0;
}

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

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.philosophy {
    padding: 80px 0;
    background: var(--bg-light);
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
}

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

.philosophy-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* ========== FLEET PAGE ========== */
.fleet-gallery {
    padding: 80px 0;
}

.fleet-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fleet-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-caption {
    padding: 20px;
}

.fleet-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.fleet-caption p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.fleet-specs {
    padding: 0 0 80px;
}

.table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.table thead th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table tbody tr:hover {
    background: rgba(201, 169, 89, 0.05);
}

/* ========== PARTNERS PAGE ========== */
.partners {
    padding: 80px 0;
}

.partner-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    text-align: center;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.partner-logo h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.partner-info {
    padding: 20px;
}

.partner-since {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.partner-info p:last-child {
    margin: 0;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* ========== CONTACT PAGE ========== */
.contact {
    padding: 80px 0;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-detail h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.contact-detail p {
    margin-bottom: 5px;
    padding-left: 30px;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-message .message-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-message .message-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-message .message-card .quote {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 20px;
}

.map {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .essence, .about-content, .philosophy, .fleet-gallery, .partners, .testimonials, .contact {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-detail p {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .essence-card, .philosophy-card {
        padding: 30px 20px;
    }
}