/* General and Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #36454F; /* Charcoal Gray */
    background-color: #F8F8F8; /* Warm Off-White */
    overflow-x: hidden;
}

/* ===== HEADER & LOGO STYLES ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B83232;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #36454F;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #B83232;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #B83232;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: url('images/photo5.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem 3rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.cta-button {
    display: inline-block;
    background: #FFC300;
    color: #36454F;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.4);
}

.floating-truck {
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ===== GENERAL SECTION STYLES ===== */
.section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #CE1226; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #FFC300, #CE1226); border-radius: 2px; }

/* Core Services Grid (Home Page) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; text-align: center; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #CE1226; }
.service-card p { color: #666; }

/* Why Choose Us Summary (Home Page) */
.why-choose-us { background: #fdfdff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature-card { text-align: center; padding: 2rem; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 3rem; color: #CE1226; margin-bottom: 1rem; }

/* Detailed Services Page (services.html & nepali.html) */
.detailed-service { display: flex; align-items: center; margin-bottom: 4rem; gap: 3rem; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.detailed-service:nth-child(even) { flex-direction: row-reverse; }
.service-content { flex: 1; padding: 3rem; }
.service-content h3 { font-size: 2rem; margin-bottom: 1rem; color: #CE1226; }
.service-content p { font-size: 1.1rem; line-height: 1.8; color: #555; }
.service-image { flex: 1; height: 400px; background: linear-gradient(135deg, #CE1226 0%, #2c5aa0 100%); display: flex; align-items: center; justify-content: center; color: white; font-size: 5rem; align-self: stretch; }

/* Why Choose Us Page (why-choose-us.html) */
.page-hero { 
    height: 40vh; 
    background: linear-gradient(rgba(45, 52, 54, 0.7), rgba(45, 52, 54, 0.7)), url('https://images.unsplash.com/photo-1549499239-4d8727a1e0b5?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    padding: 0 2rem; 
}
.page-hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5); 
}
.page-hero p { 
    font-size: 1.2rem; 
    max-width: 700px; 
    margin: 0 auto; 
    opacity: 0.9; 
}
.why-us-details {
    max-width: 900px;
    margin: 0 auto 5rem auto;
}
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.detail-icon {
    font-size: 2.5rem;
    color: #CE1226;
    padding-top: 0.5rem;
}
.detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #36454F;
}
.detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
.photo-gallery-container {
    padding: 3rem 0;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.photo-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
.photo-frame:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact { background: #36454F; color: white; text-align: center; }
.contact .section-title { color: white; }
.contact .section-title::after { background: white; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.contact-item { padding: 1.5rem; background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
.contact-item i { font-size: 2rem; margin-bottom: 1rem; }
.phone-numbers { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.phone-number { background: #FFC300; color: #36454F; padding: 1rem 2rem; text-decoration: none; border-radius: 50px; font-weight: bold; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.phone-number:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgba(255, 195, 0, 0.3); }
.social-links { margin-top: 2rem; text-align: center; }
.social-links a { margin: 0 15px; font-size: 2.5rem; color: #fff; transition: color 0.3s ease; }
.social-links a:hover { color: #e63946; }

/* Utility and Animation Styles */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.back-to-top { position: fixed; bottom: 25px; right: 25px; background: #CE1226; color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; font-size: 1.2rem; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); background: #a80f1f; }
.floating-whatsapp { position: fixed; bottom: 120px; right: 25px; background-color: #25D366; color: white; padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1rem; font-weight: 600; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); z-index: 1001; transition: all 0.3s ease; }
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
.floating-whatsapp i { font-size: 1.8rem; }

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .nav-container { padding: 0 1.5rem; }
    .nav-menu { gap: 1.5rem; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .section { padding: 4rem 1.5rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    /* THE FIX IS HERE */
    .logo { gap: 10px; } /* Reduce gap for more space */
    .logo span { font-size: 1.1rem; } /* Make text smaller to fit */
    /* REMOVED the line that hid the text */

    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: rgba(255, 255, 255, 0.98); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); padding: 2rem 0; }
    .nav-menu.active { left: 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .detailed-service, .detailed-service:nth-child(even) { flex-direction: column; text-align: center; }
    .service-image { width: 100%; height: 250px; }
    .phone-numbers { flex-direction: column; align-items: center; }
    .section-title { font-size: 2.2rem; }
    .page-hero { height: 30vh; }
    .page-hero h1 { font-size: 2.2rem; }
    .detail-item { flex-direction: column; text-align: center; align-items: center; gap: 1rem; } /* Responsive for why-us page */
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { padding: 0; width: 60px; height: 60px; justify-content: center; bottom: 95px; right: 20px; }
    .back-to-top { bottom: 25px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-content { padding: 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .cta-button { padding: 0.8rem 1.5rem; font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .service-content { padding: 2rem; }
    .service-content h3 { font-size: 1.8rem; }
}

/* --- ADD THIS CODE TO THE END OF YOUR STYLE.CSS FILE --- */

/* ===== Site Footer Styles ===== */
.site-footer {
    background-color: #2c3e50; /* A dark, professional blue-grey */
    color: rgba(255, 255, 255, 0.7); /* Light grey, not stark white */
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    border-top: 3px solid #B83232; /* Adds a red accent line at the top */
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #ffffff; /* Make the link stand out a bit */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #FFC300; /* Use the site's accent yellow for hover */
    text-decoration: underline;
}