/* ====================== RESET & BASE ====================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #000000;
    word-wrap: break-word;
    margin-top: 0;
}

p {
    line-height: 25px;
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}

a {
    text-decoration: none !important;
    outline: 0;
    color: #424291;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ====================== HEADER ====================== */
header {
    background: #193c84;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}

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

.logo {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}

.logo a {
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* ====================== BANNER ====================== */
.banner-box {
    width: 100%;
}

.banner {
    width: 100%;
    height: auto;
}

/* ====================== CONTENT CONTAINERS ====================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-colr {
    background: #ffffff;
    padding: 25px;
    border: 2px solid #000000;
    margin-bottom: 25px;
    color: #000;
}

/* ====================== GALLERY ====================== */
.pic-border {
    border: 2px solid #fff;
    background: #424291;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.pic-txt {
    background: #424291;
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding: 10px 8px;
    border-top: 2px solid #fd275a;
}

/* ====================== PRICE TABLE ====================== */
.price-table-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 1rem;
}

.price-table th,
.price-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1.05rem;
}

.price-table th {
    background-color: #424291;
    color: #fff;
}

.price-table tbody tr:nth-child(2n) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ====================== FAQ ====================== */
.faq {
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
}

.faq__title {
    font-size: clamp(1.4rem, 2.5vw + 0.6rem, 2.2rem);
    margin-bottom: 20px;
    text-align: center;
}

.faq__list {
    display: grid;
    gap: 8px;
}

details.faq__item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

summary.faq__q {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    font-weight: 500;
    font-size: 18px;
}

summary.faq__q::-webkit-details-marker,
summary.faq__q::marker {
    display: none;
}

.faq__icon {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #999;
    font-size: 18px;
    transition: transform 0.2s ease;
}

details[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__a {
    padding: 0 18px 18px 18px;
    color: #444;
}

/* ====================== TABS (Choose Type & Locations) ====================== */
.tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.tab {
    flex: 1 1 300px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-height: 520px;
    overflow-y: auto;
}

.headname {
    background: #fd275a;
    padding: 12px 15px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1;
}

.tab ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.tab ul li {
    margin-bottom: 8px;
    padding: 6px 15px;
    color: #161616;
    border-bottom: 1px solid #fd275a;
}

.styled-arrow {
    color: #fd275a;
    margin-right: 8px;
}

/* ====================== FOOTER ====================== */
.footer-main {
    background-color: #424291;
    padding: 25px 15px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #fff;
}

.footer-main p,
.footer-main p a {
    color: #fff;
}

footer {
    background: #000;
    color: #fff;
    padding-top: 40px;
}

.footer-grids ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-grids ul li {
    margin-bottom: 10px;
}

.footer-grids ul li a {
    color: #d1c3c0;
}

.f_heading {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.copyright {
    background: #131c24;
    border-top: 1px solid #202f3c;
    padding: 20px 0;
    text-align: center;
    color: #d1c3c0;
    font-size: 14px;
}

/* ====================== FLOATING CALL BAR ====================== */
.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.lcol, .rcol {
    float: left;
    width: 50%;
    text-align: center;
    padding: 12px 0;
}

.lcol {
    background-color: #fd275a;
}

.rcol {
    background-color: #08ab2b;
}

.lcol a, .rcol a {
    color: #ffffff;
    font-weight: bold;
    display: block;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #8B0C0C;
        width: 220px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .col-sm-3 {
        width: 50% !important;
        padding: 8px !important;
    }
}

@media (max-width: 600px) {
    .tab-container {
        flex-direction: column;
    }

    .price-table th,
    .price-table td {
        font-size: 0.95rem;
        padding: 10px 6px;
    }
}

@media (max-width: 480px) {
    h1, h2 {
        font-size: 23px !important;
    }
    h3 {
        font-size: 21px !important;
    }
}