/* =================== */
/* BASE STYLES */
/* =================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #2a2a2a;
    background-color: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =================== */
/* LAYOUT STRUCTURE */
/* =================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* =================== */
/* NAVIGATION STYLES */
/* =================== */
.desktop-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #212529;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    color: #ffc107;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid #ffc107;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #fff;
}

/* =================== */
/* MOBILE MENU STYLES */
/* =================== */
.mobile-menu-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #212529;
    color: #ffc107;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1001;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn i {
    font-size: 1.2rem;
}

.mobile-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #212529;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 250px;
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: #ffc107;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: #343a40;
}

/* =================== */
/* HEADER STYLES */
/* =================== */
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #111, #222);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.header-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #ffc107;
}

.header-title, h1, Header {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #ffc107;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin: 0;
}

/* =================== */
/* SUBTITLE STYLES */
/* =================== */
.subtitle-container {
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
}

.established {
    font-size: 1rem;
    font-style: italic;
    color: #999;
}

/* =================== */
/* DESCRIPTION */
/* =================== */
.centered-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 0 auto 2rem;
    max-width: 700px;
}

/* =================== */
/* CONTACT INFO BOX */
/* =================== */
.contact-info-box {
    background-color: #212529;
    color: #ffc107;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem auto;
    max-width: 400px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.phone-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.phone-link:hover {
    color: #fff;
}

/* =================== */
/* PRICING SECTION */
/* =================== */
.pricing-section, 
.mileage-calculator, 
.disclaimer-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-toggle button {
    background-color: #212529;
    color: #ffc107;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-toggle button.active,
.pricing-toggle button:hover {
    background-color: #343a40;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    background: #f8f9fa;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    flex-grow: 1;
}

.price {
    background-color: #ffc107;
    color: #212529;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-desc {
    display: block;
    margin-top: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.travel-fee-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #e63946;
    font-style: italic;
}

/* =================== */
/* MILEAGE CALCULATOR */
/* =================== */
.mileage-calculator h3 {
    margin-top: 0;
    color: #212529;
    font-size: 1.5rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calculator-form label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.calculator-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.calculator-form button {
    background-color: #212529;
    color: #ffc107;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.calculator-form button:hover {
    background-color: #343a40;
}

.distance-result {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 5px solid #ffc107;
    border-radius: 6px;
    margin-top: 1rem;
}

.distance-result.hidden {
    display: none;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    align-items: center;
}

.total-fee {
    border-top: 1px solid #ccc;
    padding-top: 0.8rem;
    font-weight: bold;
}

.apply-btn {
    margin-top: 1rem;
    width: 100%;
    background-color: #ffc107;
    color: #212529;
    font-weight: bold;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.apply-btn:hover {
    background-color: #e0a800;
}

/* =================== */
/* DISCLAIMER SECTION */
/* =================== */
.disclaimer-section h2 {
    margin-top: 0;
    color: #212529;
    font-size: 1.5rem;
}

.disclaimer-section p {
    color: #555;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.disclaimer-section li {
    margin: 0.5rem 0;
    color: #444;
    position: relative;
    padding-left: 1.5rem;
}

.disclaimer-section li i {
    position: absolute;
    left: 0;
    color: #ffc107;
}

.disclaimer-signature {
    margin-top: 1rem;
    font-style: italic;
    color: #777;
    text-align: right;
}

/* =================== */
/* VIDEO SECTION */
/* =================== */
.video-container {
    margin: 30px 0;
    text-align: center;
}

.video-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.video-wrapper {
    max-width: 400px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 225px;
    border: none;
    display: block;
}

/* =================== */
/* NAVIGATION LINKS */
/* =================== */
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 0;
    list-style: none;
}

.nav-links a {
    background-color: #212529;
    color: #ffc107;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: #343a40;
}

/* =================== */
/* RESPONSIVE STYLES */
/* =================== */
@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mileage-calculator {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-title {
        font-size: 2rem;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.8rem;
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .video-wrapper iframe {
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* =================== */
/* UTILITY CLASSES */
/* =================== */
.hidden {
    display: none !important;
}

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

/* =================== */
/* ANIMATIONS */
/* =================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}