/* 
   Tirupati Temple Packages - Core Design System
   Aesthetics: Divine, Premium, Trustworthy
*/


:root {
    /* Color Palette - More Vibrancy */
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8860B;
    --primary-gold-light: #F4DF4E;
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --deep-maroon: #600000;
    --maroon-light: #800000;
    --royal-blue: #003366;
    
    /* Backgrounds */
    --bg-cream: #FFFEEE;
    --bg-off-white: #FBFBFB;
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);
    
    /* Text Colors */
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --text-white: #FFFFFF;
    
    /* Spacing & Borders */
    --section-padding: 100px 5%;
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Shadows - More Depth */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-off-white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    color: var(--deep-maroon);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 5rem; letter-spacing: -1px; }
h2 { font-size: 3.2rem; margin-bottom: 30px; }
h3 { font-size: 2.4rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--primary-gold));
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

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

/* --- Layout Components --- */

/* Header */
header {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.logo {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    color: var(--deep-maroon);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo span {
    color: var(--primary-gold);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-main);
}

nav ul li a:hover {
    color: var(--primary-gold);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.carousel-inner {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 5.5rem;
    color: var(--primary-gold-light);
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    font-weight: 800;
    animation: heroFadeInDown 1.2s both;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: heroFadeInUp 1.2s 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: heroFadeInUp 1.2s 0.6s both;
}

@keyframes heroFadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    width: 45px;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--primary-gold);
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.package-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--saffron), var(--primary-gold));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 5;
}

.package-info {
    padding: 25px;
}

.package-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.package-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.package-features {
    margin-bottom: 20px;
    padding-left: 0;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 5px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.package-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--saffron);
}

.package-meta {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-maroon);
}

.package-price .price small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: lowercase;
    margin-left: 2px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Why Choose Us / Features */
.bg-cream { background-color: var(--bg-cream); }
.bg-deep-maroon { background-color: var(--deep-maroon); color: white; }
.bg-white { background-color: #ffffff; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 45px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--bg-cream);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(128, 0, 0, 0.9), rgba(128, 0, 0, 0.9)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-section h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-3col {
    grid-template-columns: 1fr 1.5fr 1fr;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.contact-list {
    margin-top: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px !important;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-gold);
}

.contact-list li:hover .contact-icon {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-list li:hover .contact-icon svg {
    fill: white;
}

.contact-text {
    flex-grow: 1;
}

.contact-text strong {
    display: block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a, .contact-text address {
    color: #ffffff; /* Default for dark footer */
    font-size: 1rem;
    font-style: normal;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Light Theme for Contact Page */
.contact-list.light-theme a, 
.contact-list.light-theme address {
    color: var(--text-main); /* Dark color for light background */
}

.contact-list.light-theme p {
    color: var(--text-muted);
}

.contact-text a:hover {
    color: var(--primary-gold) !important;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* SEO Keywords Cloud */
.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #444 #1a1a1a;
}

.seo-keywords a {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #ccc;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.seo-keywords a:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* === Hamburger Menu Button === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--deep-maroon);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === Responsive: Tablet & Mobile === */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 4%;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; margin-bottom: 20px; }
    h3 { font-size: 1.8rem; }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* --- Header & Hamburger --- */
    header {
        padding: 12px 15px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .contact-info {
        display: none; /* Hide the Call button on mobile header — it's on the sticky button */
    }

    nav#main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1050;
        padding-top: 80px;
        animation: slideDown 0.3s ease;
    }

    nav#main-nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    nav#main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    nav#main-nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    nav#main-nav ul li a {
        display: block;
        padding: 18px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
    }

    nav#main-nav ul li a:hover,
    nav#main-nav ul li a:active {
        background: var(--bg-cream);
        color: var(--primary-gold);
    }

    /* --- Hero --- */
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 80%;
        text-align: center;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }

    /* --- Typography --- */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; margin-bottom: 15px; }
    h3 { font-size: 1.4rem; }

    /* --- Sections --- */
    .section {
        padding: 40px 15px;
    }

    .mb-50 { margin-bottom: 30px; }

    /* --- Package Grid --- */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card:hover {
        transform: none; /* Disable hover lift on touch devices */
    }

    .package-info {
        padding: 20px 15px;
    }

    .package-info h3 {
        font-size: 1.2rem;
    }

    .package-price {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .package-price .btn {
        width: 100%;
        text-align: center;
    }

    /* --- Feature Grid --- */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-content {
        order: 1;
    }

    .feature-image {
        order: 2;
    }

    .check-list {
        margin: 20px 0;
    }

    /* --- Testimonials --- */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    /* --- CTA --- */
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-btns .btn {
        width: 80%;
        text-align: center;
    }

    /* --- Footer --- */
    footer {
        padding: 40px 15px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-3col {
        grid-template-columns: 1fr;
    }

    .footer-col .seo-keywords {
        max-height: 150px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }

    /* --- Pricing Table (stacked card layout on mobile) --- */
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
        width: 100%;
    }

    .pricing-table thead {
        display: none; /* Hide table headers on mobile */
    }

    /* --- Package Detail Cards --- */
    .package-detail-card {
        padding: 20px 8px; /* Reduced side padding */
        margin-bottom: 30px;
        width: 100%;
        border-radius: 0; /* Optional: Make it feel more edge-to-edge */
    }

    .pricing-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 10px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        width: 100%;
    }

    .pricing-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 800;
        color: var(--deep-maroon);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex: 1;
        text-align: left;
    }

    .pricing-table td span,
    .pricing-table td {
        flex: 2;
        text-align: right;
        font-weight: 600;
        color: var(--text-main);
    }

    .package-header {
        flex-direction: column;
        gap: 12px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Custom Tour Form --- */
    .custom-tour-form {
        padding: 20px 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* --- Contact Page --- */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /* --- Buttons (touch-friendly) --- */
    .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
        min-height: 48px;
    }

    .btn-sm {
        padding: 12px 18px;
        font-size: 0.8rem;
        min-height: 44px;
    }
}

/* === Small phones === */
@media (max-width: 400px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .hero-carousel {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero-btns .btn {
        width: 90%;
    }

    .package-info {
        padding: 15px 12px;
    }
}
/* Sticky Contact Buttons Redesign */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.sticky-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
}

.btn-label {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.sticky-btn:hover .btn-label {
    opacity: 1;
    transform: translateX(0);
}

.sticky-btn:hover {
    transform: scale(1.1);
    width: 60px; /* Keep circular or let it expand? Let's keep it circular but show label */
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-call {
    background: #007bff;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-call:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .sticky-contact {
        bottom: 20px;
        right: 20px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
    }
    .btn-label {
        display: none; /* Hide labels on mobile to save space */
    }
}

/* === Stats Section === */
.stats-section {
    background: linear-gradient(135deg, var(--deep-maroon), #400000);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3.5rem;
    color: var(--primary-gold-light);
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.stat-number {
    display: inline-block;
    min-width: 1ch;
}

.stat-card p {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0; /* Reduced height on mobile */
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile */
        gap: 20px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .stat-card h3 {
        font-size: 2.2rem; /* Reduced size */
        margin-bottom: 5px;
    }
    
    .stat-card p {
        font-size: 0.8rem; /* Reduced size */
    }
}

/* === Fleet Section === */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid #eee;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.fleet-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.fleet-content {
    padding: 25px;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
    list-style: none;
    padding: 0;
}

.fleet-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-features li::before {
    content: "✓";
    color: var(--primary-gold);
    font-weight: 800;
}

/* === FAQ Section === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 24px 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    font-size: 1.1rem;
    color: var(--deep-maroon);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    background: var(--bg-cream);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* === Guide Page Enhancements === */
.guide-category {
    margin-bottom: 50px;
}

.guide-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.guide-category-title h2 {
    margin: 0;
    font-size: 1.8rem;
}

.guide-info-box {
    background: #fff8eb;
    border-left: 5px solid var(--primary-gold);
    padding: 25px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 30px;
}

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

.guideline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.guideline-list li span {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* === Service Area Section === */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.area-tag {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    font-weight: 600;
    transition: all 0.3s;
}

.area-tag:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}