/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
    padding:0px 40px;

}

.header-inner {
    height: 90px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* SHRINK ON SCROLL */
.site-header.scrolled .header-inner {
    height: 65px;
}

/* ================= LOGO ================= */
.logo img {
    height: 75px;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
    height: 50px;

}

/* ================= NAV ================= */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ================= NAV LINKS ================= */
.nav a {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e10600;
    transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #e10600;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* CALL */
.nav a.call::after {
    display: none;
}

/* ================= DROPDOWN ================= */
.nav-item {
    position: relative;
}

/* SERVICES TOGGLE WITH ARROW */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ARROW */
.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* ROTATE ARROW WHEN OPEN */
.dropdown-menu.show ~ .dropdown-toggle::after,
.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

/* DESKTOP DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    min-width: 260px;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* SHOW ON HOVER (DESKTOP) */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

.dropdown-menu a:hover {
    color: #e10600;
    background: #f8f8f8;
}
/* Parent Services active */
.nav .dropdown-toggle.active {
    color: red;
    text-decoration: underline;
}

/* Active dropdown item */
.dropdown-menu a.active {
    color: red;
    font-weight: 600;
    text-decoration: underline;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 25px;
}

.menu-toggle span {
    height: 3px;
    width: 26px;
    background: #000;
    margin: 4px 0;
}

/* ================= CONTENT OFFSET ================= */
.content {
    padding-top: 110px;
}

/* ===================================================
   TABLET (<= 1024px)
=================================================== */
@media (max-width: 1024px) {
    .header-inner {
        padding: 0 25px;
    }

    .nav {
        gap: 20px;
    }
}

/* ===================================================
   MOBILE & TABLET (<= 768px)
=================================================== */
@media (max-width: 768px) {

    .site-header{
        padding:0px;
    }
    .menu-toggle {
        display: flex;
        border: none;
        background-color: white;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        border-top: 1px solid #e5e5e5;
    }

    .nav.active {
        display: flex;
    }

    /* ALL LINKS LEFT */
    .nav a {
        width: 100%;
        padding: 16px 25px;
        text-align: left;
    }

    /* SERVICES ALIGN LEFT */
    .nav-item {
        width: 100%;
        text-align: left;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    /* ACCORDION DROPDOWN */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s ease;
        margin-top: 6px;
    }

    .dropdown-menu.show {
        max-height: 500px; /* accordion height */
    }

    /* DROPDOWN ITEMS INDENT */
    .dropdown-menu a {
        padding: 14px 25px 14px 45px;
        font-size: 14px;
    }

    .header-inner {
        height: 80px;
    }

    .site-header.scrolled .header-inner {
        height: 60px;
    }

    .logo img {
        height: 42px;
    }

    .site-header.scrolled .logo img {
        height: 34px;
    }
}


/* hero */
.hero {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 70vh;
    background: url("images/hero.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* hero */
.hero1 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero1.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* hero */
.hero2 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero2.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}


/* hero */
.hero3 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero3.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* hero */
.hero4 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero4.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* hero */
.hero5 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero5.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* hero */
.hero6 {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 75vh;
    background: url("images/hero6.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* changed from flex-end to center */
    padding: 0; /* remove padding-right */
    color: #fff;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.85) 100%
    );
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 420px;
}
/* CONTENT */
.hero-content h1 {
font-size: 45px;
width: 100%;

}
/* LOGO */
.hero-logo {
    max-width: 220px;
    margin-top: 40px;
}

/* HEADING */
.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #e51e1e; /* blue from logo */
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #f31e1e;
    color: #fff;
    padding: 16px 34px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #c01515;
}

@media (max-width: 1024px) {
    .hero {
        padding: 0; /* no need for right padding */
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-logo {
        max-width: 180px;
    }
}
/* info section  */
/* Container */
.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Each item */
.info-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Alternate sides */
.info-item.reverse {
    flex-direction: row-reverse;
}

/* Text */
.info-text {
    flex: 1;
}

/* Image */
.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Headings */
.info-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #e51e1e;
}

/* Paragraphs */
.info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Buttons */
.info-text .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #e51e1e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.info-text .btn:hover {
    background: #c01515;
}

/* Section 1: Why Jim's - icons on left */
.info-item.why-jims {
    gap: 60px;
}

.info-item.why-jims .info-icons {
    flex: 1;
}

.info-item.why-jims .info-icons ul {
    list-style: none;
    padding: 0;
}

.info-item.why-jims .info-icons li {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item.why-jims .info-icons li::before {
    content: "✔️"; /* You can replace with icons if needed */
    margin-right: 10px;
}

/* Responsive for tablets & mobiles */
@media (max-width: 992px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item.reverse {
        flex-direction: column;
    }

    .info-image, .info-text, .info-icons {
        width: 100%;
    }

    .info-image img {
        max-width: 100%;
        margin-top: 20px;
    }

    .info-item.why-jims .info-icons li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .info-text h2 {
        font-size: 24px;
    }

    .info-text p {
        font-size: 14px;
    }
}
/* ================= Section Items ================= */
.section-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;          /* space between text and image */
    margin: 40px 0;
    flex-wrap: wrap;     /* allows responsive stacking */
}

/* Reverse layout: image on right */
.section-reverse {
    flex-direction: row; /* text first, image second */
}

/* ================= Section Text ================= */
.section-text {
    flex: 0 0 70%;      /* text takes 80% width */
    font-family: 'Arial', sans-serif;
    color: #333;        /* dark text color */
    line-height: 1.7;   /* better readability */
}

/* Heading style */
.section-text h2 {
    font-size: 2rem;    /* large and prominent */
    font-weight: 700;
    color: #1a202c;     /* slightly darker than paragraph */
    margin-bottom: 20px;
    position: relative;
}

/* Optional: underline/accent line under heading */
.section-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f97316; /* accent color */
    margin-top: 8px;
    border-radius: 2px;
}

/* Paragraph style */
.section-text p {
    font-size: 1rem;
    color: #555;        /* softer than heading */
    margin-bottom: 15px;
}

/* Optional: first-letter highlight */
.section-text p::first-letter {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f97316;
}

/* ================= Section Image ================= */
.section-image {
    flex: 0 0 25%;      /* image takes 20% width */
    display: flex;
    justify-content: flex-end; /* align image to right */
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .section-item {
        flex-direction: column;
    }
    .section-text,
    .section-image {
        flex: 1 1 100%;   /* full width on small screens */
    }
    .section-image {
        justify-content: center;
        margin-top: 20px;
    }
    .section-text h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .section-text p {
        font-size: 0.95rem;
        text-align: justify;
    }
}
/* ================= Footer ================= */
.site-footer {
    /* border-top: 2px solid red; */
    background-color: #211e1e; /* dark background */
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 45%; /* roughly half width */
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #f22222; /* link blue */
}

.footer-column ul li a {
    text-decoration: none;
    color: #ff0000;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f97316; /* hover accent */
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        flex: 1 1 100%;
        /* text-align: center; */
        margin-bottom: 20px;
    }
}

/* ================= INCLUSIONS SECTION ================= */
.inclusions {
    padding: 70px 8% 0px;
    background: #fff;
}

.inclusions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* Box */
.inclusion-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.inclusion-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* List */
.inclusion-box ul {
    list-style: none;
    padding: 0;
}

.inclusion-box ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

/* Blue check icon */
.inclusion-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .inclusions {
        padding: 50px 6% 10px;
    }

    .inclusions-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inclusion-box img {
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .inclusions {
        padding: 40px 4% 10px;
    }

    .inclusion-box img {
        height: 220px;
    }

    .inclusion-box h3 {
        font-size: 16px;
    }

    .inclusion-box ul li {
        font-size: 14px;
    }
}
/* ================= PRICING SECTION ================= */
.pricing {
    padding: 70px 8%;
    background: #fff;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #ddd;
}

/* Card */
.price-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

/* Vertical divider */
.price-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #ddd;
}

/* Image */
.price-card img {
    max-width: 220px;
    width: 100%;
    margin-bottom: 15px;
}

/* Text */
.price-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 34px;
    color: #e0002a;
    font-weight: bold;
}

/* ================= BOOKINGS INFO ================= */
.booking-info {
    margin-top: 40px;
}

.booking-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-info p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 1000px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .pricing {
        padding: 50px 6%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .price-card {
        border-bottom: 1px solid #ddd;
    }

    .price-card::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pricing {
        padding: 40px 4%;
    }

    .price-card img {
        max-width: 180px;
    }

    .price-card h3 {
        font-size: 28px;
    }

    .booking-info h2 {
        font-size: 20px;
    }

    .booking-info p {
        font-size: 14px;
    }
}
/* pricing with old  */
.price {
    font-size: 45px;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: bold;
 
    padding-bottom: 12px;
    text-align: center;
}

.price .old {
    color: #aaa;
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 24px;
}
.banner {
    height: 150px;
    text-align: center;
    align-items: center;
    background-color: #ff0000;
    display: flex;
    justify-content: center;
}

.banner h2 {   
    color: white;
    font-weight: bold;
    font-size: 24px;
}



/* INTERIOR CSS */


.details-wrapper {
    display: flex;
    gap: 120px;
    padding: 40px 8%;
    background: #fff;
}

/* ================= GALLERY ================= */
.gallery {
    display: flex;
    gap: 14px;
}

/* ========== THUMBNAILS (LEFT) ========== */
.thumbs {
    width: 80px;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
}

.thumbs img.active,
.thumbs img:hover {
    border-color: #ff0000;
}

/* scrollbar */
.thumbs::-webkit-scrollbar {
    width: 5px;
}
.thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* ========== MAIN IMAGE ========== */
.main-image {
    position: relative;
}

.main-image img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

/* arrows */
.nav2 {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 5;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ========== DOTS AT BOTTOM ========== */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    top: 100%;
}

.dot {
    width: 9px;
    height: 9px;
    background: rgba(198, 198, 198, 0.7);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ff0000;
}

/* ================= INCLUSIONS ================= */

.inclusionss h3 {
    color: #d40000;
    
    margin-bottom: 14px;
}

.inclusionss ul {
    list-style: none;
}

.inclusionss ul li {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    line-height: 1.2;
}

.inclusionss ul li::before {
    content: "✔";
    color: #d40000;
    font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .details-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .main-image img {
        width: 100%;
        height: auto;
    }

    .gallery {
        flex-direction: column;
    }

    .thumbs {
        flex-direction: row;
        display: none;
    }
    .nav2{
        visibility: hidden;
        /* margin-top: 100px; */
    }
    .dots{
        top: 105%;
    }
}



/* SECTION */
.service-inclusions {
    padding: 80px 5%;
    background: #fff;
}

/* LAYOUT */
.service-inclusions-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.service-inclusions-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* CONTENT */
.service-inclusions-content h3 {
    font-size: 22px;
    color: #cc0000;
    margin-bottom: 20px;
}

/* LIST */
.service-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-inclusions-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

/* BLUE CHECK */
.service-inclusions-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #cc0000;
    font-weight: bold;
}

/* TABLET */
@media (max-width: 900px) {
    .service-inclusions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-inclusions-content h3 {
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .service-inclusions {
        padding: 50px 20px;
    }

    .service-inclusions-list li {
        font-size: 14px;
    }
}


/* INFO SECTION */
.info-section {
    padding: 80px 5%;
    background: #ffffff;
}

.info-container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.info-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* CONTENT */
.info-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
    text-align: center;
}

/* TABLET */
@media (max-width: 900px) {
    .info-title {
        font-size: 24px;
    }

    .info-content p {
        font-size: 14.5px;
        text-align: left;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .info-section {
        padding: 50px 20px;
    }

    .info-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .info-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ================= FAQ SECTION ================= */
.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Title */
.faq-title {
    text-align: center;
    color: #d20000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* FAQ Item */
.faq-item {
    border-top: 1px solid #e6e6e6;
}

.faq-item:last-child {
    border-bottom: 1px solid #e6e6e6;
}

/* Question Row */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* Plus / Minus Icon */
.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: #9a9a9a;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 0 22px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    color: #d20000;
    transform: rotate(180deg);
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
    .faq-section {
        margin: 60px auto;
    }

    .faq-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .faq-question span:first-child {
        font-size: 14px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .faq-section {
        margin: 50px auto;
        padding: 0 15px;
    }

    .faq-title {
        font-size: 18px;
    }

    .faq-question {
        padding: 16px 0;
    }

    .faq-question span:first-child {
        font-size: 14px;
        line-height: 1.4;
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* form  */
/* ================= FORM WRAPPER ================= */
.form-wrapper {
    background: #ffffff;
    max-width: 900px;
    margin: auto;
    padding: 35px;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 6px solid #c40000;
}

/* ================= TITLE ================= */
.form-title {
    color: #c40000;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ================= GRID ================= */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

/* ================= INPUTS ================= */
input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
    background: #fff;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

/* Focus */
input:focus,
textarea:focus {
    outline: none;
    border-color: #c40000;
    box-shadow: 0 0 0 3px rgba(196,0,0,0.12);
}

/* ================= TEXTAREA ================= */
textarea {
    resize: none;
    height: 110px;
}
.submit-btn {
    margin: 30px auto 0;
    background: #c40000;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #a80000;
    transform: translateY(-1px);
}


/* ================= POPUP OVERLAY ================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ================= POPUP BOX ================= */
.popup-box {
    background: #ffffff;
    padding: 30px 25px;
    width: 340px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-top: 5px solid #c40000;
}

.popup-box h3 {
    color: #c40000;
    margin-bottom: 10px;
    font-size: 20px;
}

.popup-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 22px;
}

/* ================= POPUP BUTTON ================= */
.popup-box button {
    background: #c40000;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-box button:hover {
    background: #a80000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .submit-btn {
        width: 100%;
        float: none;
    }
}

    
    /* ================= LOADER ================= */
.loader-overlay{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.loader-box{
    text-align:center;
}

.loader-box img{
    width:80px;
    margin-bottom:15px;
}

.loader-box p{
    font-size:16px;
    font-weight:600;
    color:#c00000;
}

