/* Royal Siddiqui Transport - Theme */

:root {
    --royal-blue: #0a192f;
    --royal-gold: #f4c430;
    --royal-gold-light: #ffd700;
    --royal-cream: #fff9e6;
    --royal-text: #343a40;
    --royal-white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--royal-text);
    background-color: var(--royal-cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Navbar */
.navbar {
    background: var(--royal-blue) !important;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    color: var(--royal-gold) !important;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-brand i {
    color: var(--royal-gold);
    margin-right: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--royal-gold) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.8) 100%), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--royal-white);
    position: relative;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--royal-gold-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.btn-gold {
    background: var(--royal-gold);
    color: var(--royal-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--royal-gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--royal-gold);
}

.btn-outline-gold {
    border: 2px solid var(--royal-gold);
    color: var(--royal-gold);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-outline-gold:hover {
    background: var(--royal-gold);
    color: var(--royal-blue);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--royal-blue);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--royal-gold);
}

.section-title p {
    color: #666;
    margin-top: 15px;
}

/* Cards */
.service-card, .feature-card, .stat-card {
    background: var(--royal-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(244,196,48,0.2);
    height: 100%;
}

.service-card:hover, .feature-card:hover, .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon, .feature-icon, .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--royal-blue);
    color: var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    border: 3px solid var(--royal-gold);
}

/* Why Choose Us Section */
.why-us {
    background: var(--royal-blue);
    color: var(--royal-white);
    padding: 80px 0;
}

.why-us .section-title h2 {
    color: var(--royal-gold);
}

.why-us .section-title p {
    color: rgba(255,255,255,0.8);
}

.why-us .feature-card {
    background: rgba(255,255,255,0.05);
    color: var(--royal-white);
    border: 1px solid rgba(244,196,48,0.3);
}

.why-us .feature-card p {
    color: rgba(255,255,255,0.8);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,25,47,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--royal-gold);
    font-size: 2.5rem;
}

/* Contact */
.contact-info-card {
    background: var(--royal-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    height: 100%;
    border: 1px solid rgba(244,196,48,0.2);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.contact-form {
    background: var(--royal-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(244,196,48,0.2);
}

.form-control:focus {
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 0.2rem rgba(244,196,48,0.25);
}

/* Footer */
.footer {
    background: var(--royal-blue);
    color: var(--royal-white);
    padding: 50px 0 20px;
}

.footer h4 {
    color: var(--royal-gold);
    margin-bottom: 20px;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--royal-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(244,196,48,0.2);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--royal-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--royal-gold);
    color: var(--royal-blue);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.85) 100%), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--royal-white);
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--royal-gold);
    font-size: 2.8rem;
    font-weight: 700;
}

/* About Page */
.about-img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 5px solid var(--royal-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-outline-gold {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}
