/* ---- Hero Section ---- */
.patna-hero {
    position: relative;
    min-height: 560px;
    background: linear-gradient(135deg, #041208 0%, #0d401c 45%, #1c6932 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.patna-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/makhana-banner2.jpg") center center / cover
        no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.patna-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.patna-hero-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(248, 195, 44, 0.35);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.patna-hero-particles span:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
    top: 80%;
}
.patna-hero-particles span:nth-child(2) {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
    top: 70%;
    width: 5px;
    height: 5px;
}
.patna-hero-particles span:nth-child(3) {
    left: 50%;
    animation-duration: 9s;
    animation-delay: 1s;
    top: 90%;
    width: 12px;
    height: 12px;
}
.patna-hero-particles span:nth-child(4) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 3s;
    top: 85%;
    width: 6px;
    height: 6px;
}
.patna-hero-particles span:nth-child(5) {
    left: 85%;
    animation-duration: 7s;
    animation-delay: 0.5s;
    top: 75%;
    width: 10px;
    height: 10px;
}
.patna-hero-particles span:nth-child(6) {
    left: 40%;
    animation-duration: 13s;
    animation-delay: 4s;
    top: 95%;
    width: 4px;
    height: 4px;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-300px) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-600px) scale(0.8);
        opacity: 0;
    }
}

.patna-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 195, 44, 0.15);
    border: 1px solid rgba(248, 195, 44, 0.4);
    color: #f8c32c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.city-badge i {
    font-size: 14px;
}

.patna-hero h1 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.patna-hero h1 .highlight {
    background: linear-gradient(90deg, #f8c32c, #e8a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.patna-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-action-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f8c32c, #e8a800);
    color: #0d401c;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(248, 195, 44, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(248, 195, 44, 0.5);
    color: #0d401c;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.patna-hero-image-side {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.hero-img-ring {
    position: relative;
    width: 380px;
    height: 380px;
    max-width: 100%;
}

.ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(248, 195, 44, 0.3);
    animation: rotateSlow 20s linear infinite;
}

.ring-inner {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-main {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(248, 195, 44, 0.3);
    box-shadow:
        0 0 60px rgba(13, 64, 28, 0.6),
        0 0 0 8px rgba(248, 195, 44, 0.08);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: rgba(13, 64, 28, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(248, 195, 44, 0.25);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatBox 4s ease-in-out infinite;
}

.hero-float-card-1 {
    bottom: 50px;
    left: -20px;
    animation-delay: 0s;
}

.hero-float-card-2 {
    top: 50px;
    right: -20px;
    animation-delay: 2s;
}

.hero-float-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(248, 195, 44, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8c32c;
    font-size: 17px;
}

.hero-float-card .card-text strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-float-card .card-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatBox {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ---- Breadcrumb ---- */
.patna-breadcrumb {
    background: #f3f0eb;
    padding: 14px 0;
    border-bottom: 1px solid #e9e4df;
}

.patna-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
}

.patna-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #6e7673;
}

.patna-breadcrumb .breadcrumb-item a {
    color: #0d401c;
    text-decoration: none;
    transition: color 0.2s;
}

.patna-breadcrumb .breadcrumb-item a:hover {
    color: #f8c32c;
}

.patna-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: #aaa;
}

.patna-breadcrumb .breadcrumb-item.active {
    color: #0d401c;
    font-weight: 600;
}

/* ---- Stats Strip ---- */
.stats-strip {
    background: linear-gradient(135deg, #0d401c, #1c6932);
    padding: 28px 0;
    box-shadow: 0 4px 20px rgba(13, 64, 28, 0.2);
}

.stat-box {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-box .stat-number {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #f8c32c;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.stat-box .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ---- Section Shared ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1c6932;
    margin-bottom: 12px;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #f8c32c, #0d401c);
    border-radius: 10px;
}

.section-main-title {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #072010;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-main-title span {
    color: #1c6932;
}

.section-desc {
    font-size: 16px;
    color: #6e7673;
    line-height: 1.75;
    max-width: 600px;
}

/* ---- Why Patna Makhana Section ---- */
.why-patna-section {
    background: #ffffff;
    padding: 90px 0;
}

.why-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.why-feature-card {
    background: #f3f0eb;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 64, 28, 0.04),
        rgba(248, 195, 44, 0.06)
    );
    opacity: 0;
    transition: opacity 0.35s;
}

.why-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(28, 105, 50, 0.2);
    box-shadow: 0 16px 40px rgba(13, 64, 28, 0.12);
    background: #ffffff;
}

.why-feature-card:hover::before {
    opacity: 1;
}

.why-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d401c, #1c6932);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #f8c32c;
    transition: all 0.35s;
    box-shadow: 0 8px 20px rgba(13, 64, 28, 0.25);
}

.why-feature-card:hover .why-feature-icon {
    background: linear-gradient(135deg, #f8c32c, #e8a800);
    color: #0d401c;
    box-shadow: 0 8px 20px rgba(248, 195, 44, 0.4);
    transform: rotate(5deg) scale(1.05);
}

.why-feature-card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #072010;
    margin-bottom: 10px;
}

.why-feature-card p {
    font-size: 14px;
    color: #6e7673;
    line-height: 1.65;
    margin: 0;
}

/* ---- Products Section ---- */
.patna-products-section {
    background: linear-gradient(180deg, #f3f0eb 0%, #ffffff 100%);
    padding: 90px 0;
}

.product-card-patna {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 64, 28, 0.08);
    transition: all 0.35s ease;
    border: 1px solid #e9e4df;
    height: 100%;
}

.product-card-patna:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 64, 28, 0.15);
    border-color: rgba(28, 105, 50, 0.2);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-patna:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #0d401c, #1c6932);
    color: #f8c32c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.product-card-body {
    padding: 24px;
}

.product-card-body h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #072010;
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 14px;
    color: #6e7673;
    line-height: 1.65;
    margin-bottom: 18px;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-tag {
    background: rgba(13, 64, 28, 0.07);
    color: #0d401c;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(13, 64, 28, 0.12);
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1c6932;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s ease;
    border-top: 1px solid #f0ece6;
    padding-top: 16px;
    margin-top: 4px;
}

.product-cta:hover {
    color: #f8c32c;
    gap: 14px;
}

/* ---- How It Works Section ---- */
.how-it-works {
    background: linear-gradient(135deg, #0d401c, #1c6932);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.how-it-works::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(248, 195, 44, 0.05);
}

.how-it-works .section-label {
    color: #f8c32c;
}
.how-it-works .section-label::before {
    background: linear-gradient(90deg, #f8c32c, rgba(255, 255, 255, 0.3));
}
.how-it-works .section-main-title {
    color: #ffffff;
}
.how-it-works .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.step-card {
    position: relative;
    text-align: center;
    padding: 36px 20px;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(248, 195, 44, 0.15);
    border: 2px solid rgba(248, 195, 44, 0.4);
    color: #f8c32c;
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.step-card:hover .step-number {
    background: #f8c32c;
    color: #0d401c;
    transform: scale(1.1);
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f8c32c;
    transition: all 0.35s;
}

.step-card:hover .step-icon {
    background: rgba(248, 195, 44, 0.15);
    transform: rotate(-5deg) scale(1.05);
}

.step-card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(248, 195, 44, 0.5), transparent);
    z-index: 0;
}

/* ---- Patna Info Section ---- */
.patna-info-section {
    background: #ffffff;
    padding: 90px 0;
}

.info-highlight-card {
    background: linear-gradient(135deg, #f3f0eb, #ffffff);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid #e9e4df;
    position: relative;
    overflow: hidden;
}

.info-highlight-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(13, 64, 28, 0.04);
}

.info-img-stack {
    position: relative;
    height: 420px;
}

.info-img-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 64, 28, 0.15);
}

.info-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(13, 64, 28, 0.2);
}

.info-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #f8c32c, #e8a800);
    color: #0d401c;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 6px 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(248, 195, 44, 0.4);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ece6;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li .info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d401c, #1c6932);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8c32c;
    font-size: 14px;
    margin-top: 2px;
}

.info-list li .info-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #072010;
    margin-bottom: 3px;
}

.info-list li .info-text span {
    font-size: 14px;
    color: #6e7673;
    line-height: 1.55;
}

/* ---- Benefits Section ---- */
.benefits-section {
    background: #f3f0eb;
    padding: 90px 0;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9e4df;
}

.benefit-card:hover {
    box-shadow: 0 12px 35px rgba(13, 64, 28, 0.1);
    transform: translateY(-4px);
    border-color: rgba(28, 105, 50, 0.2);
}

.benefit-icon-wrap {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8c32c22, #f8c32c44);
    border: 1px solid rgba(248, 195, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0d401c;
}

.benefit-content h5 {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #072010;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: #6e7673;
    line-height: 1.6;
    margin: 0;
}

/* ---- CTA Section ---- */
.patna-cta-section {
    background: linear-gradient(135deg, #072010, #0d401c);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.patna-cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(248, 195, 44, 0.05);
}

.patna-cta-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-inner h2 span {
    color: #f8c32c;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: #ffffff;
    padding: 90px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, #f3f0eb, #ffffff);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e9e4df;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 64, 28, 0.1);
    border-color: rgba(28, 105, 50, 0.2);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    line-height: 1;
    color: rgba(13, 64, 28, 0.08);
    font-family: Georgia, serif;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f8c32c;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: #6e7673;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d401c, #1c6932);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8c32c;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #072010;
}

.author-info span {
    font-size: 13px;
    color: #6e7673;
}

/* ---- FAQ Section ---- */
.faq-section {
    background: #f3f0eb;
    padding: 90px 0;
}

.faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid #e9e4df;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #ffffff;
    color: #072010;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(
        135deg,
        rgba(13, 64, 28, 0.04),
        rgba(248, 195, 44, 0.06)
    );
    color: #0d401c;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #0d401c;
    transform: none !important;
    transition: content 0.2s;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
}

.faq-accordion .accordion-body {
    padding: 4px 24px 22px;
    font-size: 15px;
    color: #6e7673;
    line-height: 1.7;
}

/* ---- Contact Info Strip ---- */
.contact-strip {
    background: linear-gradient(135deg, #f8c32c, #e8a800);
    padding: 30px 0;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-strip-text h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0d401c;
    margin-bottom: 4px;
}

.contact-strip-text p {
    font-size: 14px;
    color: rgba(13, 64, 28, 0.7);
    margin: 0;
}

.contact-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d401c;
    color: #f8c32c;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.strip-btn:hover {
    background: transparent;
    border-color: #0d401c;
    color: #0d401c;
}

.strip-btn-outline {
    background: transparent;
    border: 2px solid rgba(13, 64, 28, 0.4);
    color: #0d401c;
}

.strip-btn-outline:hover {
    background: #0d401c;
    color: #f8c32c;
    border-color: #0d401c;
}

/* ---- Footer ---- */
footer {
    background: linear-gradient(135deg, #041208, #072010);
}

footer .footer-brand h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #f8c32c;
    margin-bottom: 14px;
}

footer .footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

footer .footer-heading {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(248, 195, 44, 0.25);
    position: relative;
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links li {
    margin-bottom: 10px;
}

footer .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer-links a::before {
    content: "›";
    color: #f8c32c;
    font-size: 16px;
}

footer .footer-links a:hover {
    color: #f8c32c;
    padding-left: 4px;
}

footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

footer .footer-contact-item:last-child {
    border-bottom: none;
}

footer .footer-contact-item .contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(248, 195, 44, 0.15);
    border: 1px solid rgba(248, 195, 44, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8c32c;
    font-size: 14px;
}

footer .footer-contact-item .contact-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

footer .footer-contact-item .contact-text a,
footer .footer-contact-item .contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}

footer .footer-contact-item .contact-text a:hover {
    color: #f8c32c;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

footer .footer-bottom a {
    color: #f8c32c;
    text-decoration: none;
}

footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

footer .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

footer .social-icon:hover {
    background: rgba(248, 195, 44, 0.15);
    border-color: rgba(248, 195, 44, 0.3);
    color: #f8c32c;
    transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .patna-hero-image-side {
        display: none;
    }
    .stat-box:not(:last-child)::after {
        display: none;
    }
    .stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .info-img-stack {
        height: 280px;
        margin-bottom: 30px;
    }
    .hero-img-ring {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-action-btns {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .contact-strip-inner {
        flex-direction: column;
        text-align: center;
    }
    .contact-strip-actions {
        justify-content: center;
    }
    .why-feature-grid {
        grid-template-columns: 1fr;
    }
}
