/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #333;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Loader Container */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        #000 url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
    -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
    -o-transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Dark overlay for readability */
#loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.8);
    z-index: 1;
}

/* Loader Content */
.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.loader-logo {
    width: 120px;
    max-width: 60%;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-in-out forwards;
    opacity: 0;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeIn 1.4s ease-in-out forwards;
    opacity: 0;
    -webkit-animation: fadeIn 1.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .loader-logo {
        width: 80px;
    }

    .loader-text {
        font-size: 1rem;
    }
}

/* ============================================= */

/* Navbar */
/* Base Navbar Style */
/* Navbar Base */
.navbar {
    background-color: #111;
    color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.navbar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 0 24px; */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logoSpan {
    color: #d62828;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: -3px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

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

.nav-link.active {
    color: #d62828;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 61px;
        right: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }
}



/* =================================== */

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero .btn {
    background-color: #d62828;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border-radius: 5px;
    font-size: 1rem;
}

.hero .btn:hover {
    background-color: #a71d2a;
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Phones (≤480px) */
@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

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

    .hero .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ==================================== */
/* About Section */
.about-us {
    padding: 80px 20px;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
        /* Show image first on mobile */
    }

    .about-btn {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 70px 10px;
    }

    .about-content h2 {
        font-size: 1.7rem;
    }

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

    .about-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* =========================== */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 200px;
    transition: transform 0.7s ease;
    -webkit-transition: transform 0.7s ease;
    -moz-transition: transform 0.7s ease;
    -ms-transition: transform 0.7s ease;
    -o-transition: transform 0.7s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: transform 0.7s ease;
    -webkit-transition: transform 0.7s ease;
    -moz-transition: transform 0.7s ease;
    -ms-transition: transform 0.7s ease;
    -o-transition: transform 0.7s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 10px;
    pointer-events: none;
}

.stat-box p {
    color: #666;
    font-size: 1rem;
    pointer-events: none;
}

.stat-box:hover h3 {
    color: #d62828;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.stat-box:hover p {
    color: #000;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-container {
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
        padding: 25px 10px;
    }

    .stat-box h3 {
        font-size: 1.7rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }

}

/* =================================== */

/* Menu Section */
.menu-section {
    padding: 60px 30px;
    text-align: center;
    background-color: #f8f8f8;
}

.menu-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* ===========>>Using FlexBox: */
/* START Flexbox Styling >> If you need to center the last row
cards without usign grid & JS for it */

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    /* Flex-grow, flex-shrink, and base width */
    flex: 1 1 350px;
    /* Optional: limit the maximum width of each card */
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

/* End ----- Flex style */

.menu-card:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin: 15px 0 5px;
    color: #d62828;
}

.menu-card p {
    padding: 0 15px;
    font-size: 0.95rem;
    color: #666;
}

.price {
    display: block;
    padding: 10px 0 20px;
    font-weight: bold;
    color: #222;
}

@media (max-width: 768px) {

    .menu-section {
        padding: 40px 10px;
    }

    .menu-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .menu-card {
        max-width: 90%;
    }

    .menu-card img {
        height: 140px;
    }

    .menu-card h3 {
        font-size: 1.2rem;
        margin: 10px 0 5px;
    }

    .menu-card p {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .price {
        padding: 5px 0 15px;
        font-size: 1rem;
    }
}

/*=========================================*/

/* Testimonials Section */

.testimonials {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* Ensure only one slide is visible */

.testimonial-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}


.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    border: 3px solid #eee;
    margin-left: auto;
    margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #444;
    width: 40px;
    height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 30px;
    color: #d62828;
}

.swiper-pagination {
    position: relative;
    margin-top: 50px;
    /* Adds space between cards and bullets */
}

.swiper-pagination-bullet {
    background: #888;
    opacity: 1;
    transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #d62828;
    /* Highlight active bullet */
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 10px;
    }

    .testimonials h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .swiper {
        padding: 0 10px;
    }

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

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-card h4 {
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
        margin: 0 5px;
    }

    .swiper-button-next {
        right: -5px;
    }

    .swiper-button-prev {
        left: -5px;
    }

    .swiper-pagination {
        margin-top: 30px;
    }
}

/* ====================================== */
/* Contact Section */
/* === Contact Us Section === */
.contact-us {
    padding: 80px 20px;
    background: #f7f7f7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-us h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.contact-us h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #e63946;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

/* Grid layout: Map and Form */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* === Google Map Styling === */
.map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* === Contact Form === */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    /* border: 1px solid #ccc; */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;

    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #e63946;
    /* border-color: #e63946; */
    outline: none;
}

.contact-form textarea {
    min-height: 130px;
    resize: none;
}

.contact-form button {
    background-color: #e63946;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #d62828;
}

/* === Responsive Typography & Padding === */
@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-us {
        padding: 40px 10px;
    }

    .contact-us h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .contact-form button {
        font-size: 0.9rem;
        padding: 10px 5px;
    }

    .map iframe {
        min-height: 280px;
    }
}

/* ====================================== */
/* Footer */
.footer {
    background-color: #111;
    color: #eee;
    padding: 40px 20px 10px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 250px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.footer p,
.footer li,
.footer a {
    color: #ccc;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ====================================== */