/* --- GLOBAL RESET & FONT STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER STYLES --- */
header {
    background-color: #fff;
}

/* Top Bar (Orange) */
.top-bar {
    background-color: #FF6600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 0.85em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.top-left span {
    margin-right: 20px;
}

.top-right select {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
    cursor: pointer;
}

.capital-city-select {
    display: flex;
    align-items: center;
}

.capital-city-select i {
    margin-right: 5px;
}

.capital-city-select select {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 2px 5px;
    border-radius: 3px;
    cursor: pointer;
}

/* Main Header/Logo and Primary Navigation */
.main-header {
    border-bottom: 1px solid #eee;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 20px;
}

.main-nav .menu-toggle {
    display: none;
    /* Hide the menu icon by default on desktop */
}            

.logo img {
    max-height: 50px;
    width: auto;
}

.primary-nav ul {
    display: flex;
    gap: 25px;
}

.primary-nav a {
    color: #555;
    font-size: 16px;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.primary-nav a:hover {
    color: #ff6600;
}

/* Secondary Service Navigation */
.secondary-nav {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.secondary-nav .container ul {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 15px;
}

.secondary-nav a {
    display: block;
    color: #555;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.secondary-nav a i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    color: #555;
    transition: color 0.3s;
}

/* Active Service Link Styling */
.secondary-nav a.active {
    color: #ff6600;
    border-bottom: 3px solid #ff6600;
    margin-bottom: -3px;
    font-weight: bold;
}

.secondary-nav a.active i {
    color: #ff6600;
}

/* Hover effect */
.secondary-nav a:not(.active):hover {
    color: #ff6600;
}

.secondary-nav a:not(.active):hover i {
    color: #ff6600;
}

/* Decorative Border (Scalloped Edge) */
.decorative-border {
    height: 10px;
    background: repeating-linear-gradient(45deg,
            #f0f0f0,
            #f0f0f0 2px,
            #fff 2px,
            #fff 4px);
    border-bottom: 1px solid #eee;
}

/* --- HERO BANNER STYLES (THE MAIN SECTION WITH BG IMAGE) --- */
.hero-banner {
    /* background-image: url('frontend/assets/images/main-banner.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    background-blend-mode: multiply;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Navigation Bar (Now inside .hero-banner) */
.logo {
    padding: 0px 40px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 70px;
    flex-grow: 1;
}

/* Alignment logic to push lists away from the center logo */
.main-nav ul:first-of-type {
    justify-content: flex-end;
    padding-right: 30px;
}

.main-nav ul:last-of-type {
    justify-content: flex-start;
    padding-left: 30px;
}

.main-nav ul li a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.main-nav ul li a:hover {
    color: #FF6600;
}

.logo {
    text-align: center;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-top: -5px;
}

/* Hero Content (Heading and Button) */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 3.5em;
    color: #FF6600;
    margin-bottom: 30px;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
}

/* Find a Guru Button */
.find-guru-btn {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.find-guru-btn:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* --- HERO SERVICES SECTION (The Floating Boxes) --- */
.hero-services {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.hero-services h2 {
    font-size: 2em;
    color: #FF6600;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Grid for Service Rows */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 5%;
}

.services-grid.second-row {
    max-width: 900px;
    margin: 0 auto 0 auto;
}

.service-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    background-color: white;
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #FF6600;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    font-size: 1.5em;
    color: white;
    box-shadow: inset 0 0 0 4px white, 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-item span {
    display: block;
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
}

.fw-semibold {
    font-weight: 500 !important;
}

/* --- PUJA DETAIL & BOOKING PAGE STYLES --- */
.detail-page-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 0 60px;
}

/* Left Column: Content/Description */
.puja-description-content {
    /* flex: 2; */
    flex: 1;
}

.puja-image-hero {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.puja-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.puja-title {
    font-size: 36px;
    font-weight: 700;
    color: #C3242B;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

.puja-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Bulleted/Highlighted Points */
.important-points h3,
.benefits h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.important-points {
    margin-bottom: 20px;
}

.important-points ul,
.benefits ul {
    list-style: disc;
    margin-left: 20px;
    color: #555;
}

.important-points ul li,
.benefits ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.important-points ul li strong,
.benefits ul li strong {
    color: #ff6600;
    font-weight: 600;
}

.final-callout {
    background-color: #f7f7f7;
    padding: 20px;
    border-left: 4px solid #ff6600;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    font-style: italic;
    color: #555;
}

/* Right Column: Booking Form */
.puja-booking-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-top: 25px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

/* Specific styles for half-width inputs */
.form-group.half-width {
    flex: 1 1 calc(50% - 7.5px);
}

label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    font-family: Poppins;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ff6600;
    outline: none;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Payment Section */
.payment-amount-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
}

.payment-amount-box strong {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #C3242B;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.terms-checkbox input {
    margin-top: 4px;
    width: auto;
}

.terms-checkbox a {
    color: #ff6600;
    font-weight: 500;
}

/* Payment Buttons */
.payment-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.payment-button:hover {
    opacity: 0.9;
}

.paypal-button {
    background-color: #ff6600;
    color: #fff;
}

.card-button {
    background-color: #333;
    color: #fff;
}

/* --- SERVICE DETAIL PAGE STYLES --- */
.detail-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.detail-header-info h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 5px;
}

.detail-header-info p {
    font-size: 16px;
    color: #555;
}

.social-share a {
    color: #555;
    margin-left: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-share a:hover {
    color: #ff6600;
}

.social-share .heart-icon {
    color: #ff6600;
}

/* Hero Image Banner for Service Detail */
.hero-banner-new {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-banner-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styling for Service Detail */
.detail-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #ff6600;
}

.detail-section:last-child {
    margin-bottom: 50px;
}

/* --- SECTION TITLE STYLING FOR SERVICE DETAIL --- */
.detail-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 15px;
}

/* Thin horizontal line below the title */
.detail-section h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ff6600;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Short, thick orange accent line below the title */
.detail-section h2::before {
    content: '';
    display: block;
    width: 15%;
    max-width: 100px;
    height: 4px;
    background-color: #ff6600;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* About Us specific for Service Detail */
.about-content-new {
    line-height: 1.7;
    color: #555;
    padding-top: 15px;
}

/* Location and Contact Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    padding-top: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 2px;
    font-size: 14px;
}

.info-item span {
    color: #555;
    font-size: 16px;
    font-weight: 400;
}

/* Contact Information (2 columns) */
.contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Service Details - Tags/Pills */
.service-details-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 15px;
}

.service-category {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-category strong {
    font-weight: 600;
    color: #ff6600;
    min-width: 100px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    padding: 8px 15px;
    border: 1px solid #f59453;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    background: #f59453;
    color: white;
}

.service-tag:hover {
    background-color: #fff0e6;
}

/* --- ONLINE PUJA PAGE STYLES --- */
.page-header {
    text-align: center;
    padding: 60px 0 20px;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 40px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.step-item {
    flex: 1 1 180px;
    position: relative;
    text-align: left;
    padding: 5px;
    max-width: 200px;
}

/* Step Card Styling */
.step-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px 15px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Number Circle */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 3px solid #f9f9f9;
    z-index: 10;
}

.step-card strong {
    display: block;
    color: #ff6600;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* Horizontal Divider */
.horizontal-divider {
    border-top: 1px solid #ccc;
    width: 80%;
    margin: 40px auto;
}

/* Puja List Styling */
.puja-list-heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-top: 20px;
}

/* NEW PUJA GRID STYLES (for online puja page) */
.puja-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.puja-card-new {
    display: flex;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.puja-card-new:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.puja-image-new {
    flex: 0 0 150px;
    height: 150px;
    overflow: hidden;
}

.puja-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.puja-details-new {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.puja-details-new .title-nepali {
    font-size: 18px;
    font-weight: 700;
    color: #C3242B;
    margin-bottom: 2px;
}

.puja-details-new .title-english {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.puja-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.puja-price {
    font-size: 22px;
    font-weight: 700;
    color: #ff6600;
}

.book-button {
    background-color: #ff6600;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #e65c00;
}

.book-button i {
    margin-left: 5px;
    font-size: 14px;
}

/* --- MAIN CONTENT AND LISTINGS STYLES --- */
.main-content {
    padding: 30px 0;
}

.main-content h2 {
    font-size: 2.5em;
    font-weight: 600;
    color: #ff6600;
    margin-bottom: 30px;
    /* border-left: 5px solid #ff6600; */
    padding-left: 10px;
}

.service-listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.card-image {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    font-size: 18px;
    color: #ff6600;
    margin-bottom: 5px;
}

.card-content .location {
    font-size: 14px;
    color: #ff6600;
    margin-bottom: 10px;
}

.card-content .phone {
    font-size: 16px;
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-content .phone i {
    margin-right: 5px;
}

.view-details-btn {
    display: inline-block;
    width: 80%;
    padding: 10px 0;
    color: #ff6600;
    border: 1px solid #ff6600;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.view-details-btn:hover {
    background-color: #ff6600;
    color: #ffffff;
}

/* --- PAGINATION DESIGN --- */
.pagination-container {
    text-align: center;
    margin-top: 40px;
}

.pagination {
    display: inline-flex;
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-left: 1px solid #ddd;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 400;
}

/* Remove border for the first item */
.pagination li:first-child a,
.pagination li:first-child span {
    border-left: none;
}

.pagination li:hover a {
    background-color: #eee;
    color: #ff6600;
}

/* Active Page Styling */
.pagination li.active a {
    background-color: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
    font-weight: 600;
    pointer-events: none;
}

/* --- ABOUT SECTION STYLES --- */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 8%;
    margin: 0 auto;
    gap: 50px;
}

.about-content {
    flex: 1;
    max-width: 700px;
    text-align: left;
}

.about-content h2 {
    font-size: 2.5em;
    color: #FF6600;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-content h3 {
    font-size: 2.2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.know-more-btn {
    background-color: transparent;
    color: #FF6600;
    border: 1px solid #FF6600;
    padding: 10px 30px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: #FF6600;
    color: white;
}

.about-illustration {
    flex-shrink: 0;
    max-width: 500px;
}

.about-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ONLINE PUJA SERVICES SECTION STYLES (Orange Background) --- */
.puja-services-section {
    background-color: #ffa762;
    padding: 80px 5%;
    color: white;
    text-align: center;
}

.puja-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.puja-header h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin: 0;
}

.puja-tagline {
    font-size: 1em;
    margin-top: 5px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 1400px;
    margin: 5px auto 40px;
}

.puja-services-section .view-all-btn {
    background-color: white;
    color: #FF6600;
    border: none;
    padding: 8px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.puja-services-section .view-all-btn:hover {
    background-color: #eee;
}

/* ORIGINAL PUJA CARDS (for homepage carousel) */
.puja-cards-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.puja-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.puja-card:hover {
    transform: translateY(-5px);
}

.puja-img-wrapper {
    height: 150px;
    overflow: hidden;
}

.puja-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.puja-card span {
    display: block;
    color: #FF6600;
    font-weight: 600;
    padding: 15px 10px;
    font-size: 0.95em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 50%;
    color: white;
    border: 1px solid #d7d7d7;
}

.dot.active {
    background-color: #FF6600;
}

/* --- VERIFIED GURUS SECTION STYLES --- */
.guru-listings-section {
    padding: 80px 5%;
    background-color: #ebebeb;
    text-align: center;
}

.venue-listings-section {
    padding: 80px 5%;
    background-color: #ffa762;
    text-align: center;
}

.guru-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.guru-titles {
    text-align: left;
}

.guru-titles h2 {
    font-size: 2.2em;
    color: #FF6600;
    font-weight: 600;
    margin-bottom: 5px;
}

.guru-titles p {
    color: #555;
    margin-top: 0;
}

/* venues */
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.venue-titles {
    text-align: left;
}

.venue-titles h2 {
    font-size: 2.2em;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.venue-titles p {
    color: white;
    margin-top: 0;
}

.guru-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.guru-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.guru-card:hover {
    transform: translateY(-5px);
}

.guru-image-hand,
.guru-image-pandit {
    height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}

.guru-image-hand img,
.guru-image-pandit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guru-info h4 {
    font-size: 1.4em;
    color: #333;
    margin: 0 0 5px;
}

.guru-info p {
    color: #999;
    font-size: 0.9em;
    margin: 0 0 15px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info span {
    color: #555;
    font-size: 0.95em;
    font-weight: 500;
}

.contact-info i {
    color: #FF6600;
    margin-right: 5px;
}

.view-details-btn {
    background-color: transparent;
    color: #FF6600;
    border: 1px solid #FF6600;
    padding: 8px 30px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: #FF6600;
    color: white;
}

.view-all-btn {
    background-color: transparent;
    color: #FF6600;
    border: 1px solid #FF6600;
    padding: 10px 30px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* --- BLOG SECTION STYLES --- */
.blog-section {
    padding: 80px 5%;
    background-color: #f8f8f8;
    text-align: center;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.blog-titles {
    text-align: left;
}

.blog-titles h2 {
    font-size: 2.2em;
    color: #FF6600;
    font-weight: 700;
    margin-bottom: 5px;
}

.blog-titles p {
    color: #555;
    margin-top: 0;
}

.blog-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-cards-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrapper {
    height: 180px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3em;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
}

.blog-content p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    color: #FF6600;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e65c00;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8em;
}

.blog-meta {
    font-size: 0.8em;
    color: #999;
    display: flex;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* --- VALUE PROPOSITION & CALENDAR SECTION STYLES --- */
.value-proposition-section {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.value-proposition-section .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.value-proposition-section h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
}

.value-proposition-section .orange-text {
    color: #FF6600;
}

/* Dots from the carousel in the image, now placed above the title */
.title-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.title-bar .dot {
    height: 8px;
    width: 8px;
    background-color: #FF6600;
    border-radius: 50%;
    opacity: 0.3;
}

.title-bar .dot.active {
    opacity: 1;
}

.main-content-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
}

/* --- CALENDAR STYLES (Left Column) --- */
.calendar-container {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 380px;
    flex-shrink: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ddd;
}

.calendar-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.patro-badge {
    background-color: #FF6600;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: 600;
}

.control-select {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f7f7f7;
    cursor: pointer;
    font-size: 0.9em;
    font-family: inherit;
}

#today-btn {
    background-color: #fff;
    color: #FF6600;
    font-weight: 600;
}

.calendar-header-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.nepali-calendar {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.nepali-calendar thead th {
    color: #555;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.nepali-calendar tbody td {
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    border: 1px solid #f0f0f0;
}

.nepali-calendar tbody td.day-number {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.7em;
    color: #999;
}

.nepali-calendar tbody td .main-date {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    display: block;
    margin-top: 10px;
}

.nepali-calendar tbody td.disabled {
    color: #ccc;
    cursor: default;
    background-color: #f9f9f9;
}

.nepali-calendar tbody td.red-text {
    color: #C3242B !important;
}

.nepali-calendar tbody td.current-date {
    background-color: #6A9F2F;
    color: white;
    border-radius: 5px;
}

.nepali-calendar tbody td.current-date .main-date,
.nepali-calendar tbody td.current-date.red-text {
    color: white !important;
}

.nepali-calendar tbody td.current-date .day-number {
    color: rgba(255, 255, 255, 0.8) !important;
}

.calendar-footer-meta {
    font-size: 0.8em;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.calendar-footer-meta .source-link {
    color: #FF6600;
    font-weight: 600;
}

/* --- VALUE PROPOSITIONS STYLES (Right Column) --- */
.value-propositions {
    flex: 1;
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 20px;
}

.vp-item {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.vp-item h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.vp-item p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
}

/* --- FOOTER STYLES --- */
footer {
    background-color: #C3242B;
    color: white;
    padding-top: 80px;
    font-size: 0.95em;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.3em;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-column p,
.footer-column address {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li i {
    color: #FF6600;
    margin-right: 10px;
    font-size: 0.8em;
}

/* Get In Touch specific styles */
.footer-column .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-column .social-icons a {
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-column .social-icons a:hover {
    color: #FF6600;
}

.footer-bottom {
    background-color: #B21F25;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.payment-icons img {
    height: 25px;
    margin-left: 10px;
    filter: brightness(1.2);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
    .hero-banner {
        height: 850px;
    }
}

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }

    .main-nav ul:first-of-type {
        padding-right: 15px;
    }

    .main-nav ul:last-of-type {
        padding-left: 15px;
    }

    .about-section {
        flex-direction: column;
        padding: 60px 5%;
        text-align: center;
    }

    .about-content,
    .about-illustration {
        max-width: 100%;
    }

    .about-content {
        text-align: center;
    }

    .puja-cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .puja-card {
        width: 45%;
        margin-bottom: 20px;
    }

    .guru-cards-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .guru-card {
        width: 45%;
        max-width: 350px;
    }

    .blog-cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blog-cards-container-new {
        grid-template-columns: 1fr 1fr;
    }

    .blog-card {
        width: 45%;
        margin-bottom: 30px;
    }

    .footer-column {
        min-width: 45%;
    }

    .service-listings {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .secondary-nav .container ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .secondary-nav a {
        padding: 8px 12px;
    }

    .main-content-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .calendar-container {
        width: 100%;
        max-width: 450px;
    }

    .value-propositions {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .value-proposition-section h1 {
        font-size: 2.2em;
    }

    /* Online Puja Responsive */
    .page-header h1 {
        font-size: 32px;
    }

    .steps-container {
        gap: 15px;
    }

    .step-item {
        flex: 1 1 30%;
    }

    .puja-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Service Detail Responsive */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    /* Puja Detail & Booking Responsive */
    .detail-page-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .puja-description-content {
        order: 2;
    }

    .puja-booking-form {
        order: 1;
        max-width: 100%;
        padding: 25px;
    }

    .puja-image-hero {
        height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    /* Stack top bar and navigation */
    .top-bar {
        flex-direction: column;
        padding: 8px 5%;
    }

    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .main-nav {
        flex-direction: row;
        gap: 10px;
        padding: 15px 5%;
        width: 100%;
    }
    
    .logo {
        padding: 0;
    }


    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
       .main-nav .nav-left-items {
        display: none;
    }

    .main-nav .menu-toggle {
        display: block;
    }

    .main-nav ul:first-of-type,
    .main-nav ul:last-of-type {
        justify-content: center;
        padding: 0;
        margin-bottom: 10px;
    }

    /* Wrap service boxes */
    .services-grid {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .services-grid.second-row {
        max-width: 100%;
    }

    .service-item {
        flex: unset;
        width: 45%;
        max-width: 200px;
    }

    .puja-header,
    .guru-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .puja-services-section .view-all-btn,
    .guru-listings-section .view-all-btn {
        margin-top: 15px;
    }

    .puja-card {
        width: 100%;
        max-width: 300px;
    }

    .guru-card {
        width: 100%;
        max-width: 300px;
    }

    .blog-header,
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .blog-header .view-all-btn {
        margin-top: 20px;
    }

    .blog-cards-container {
        flex-direction: column;
        align-items: center;
    }

     .blog-cards-container-new {
        grid-template-columns: 1fr;
    }

    .blog-card {
        width: 90%;
        max-width: 400px;
    }

    .footer-top {
        padding: 40px 5%;
    }

    .footer-column {
        min-width: 100%;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 5%;
    }

    .payment-icons {
        margin-top: 10px;
    }

    .main-header .container {
        flex-direction: row;
        align-items: center;
        padding: 10px 15px;
    }         

    .primary-nav {
        display: none;
    }

    .service-listings {
        grid-template-columns: repeat(2, 1fr);
    }

    .secondary-nav .container ul {
        justify-content: space-around;
        padding: 0 5px;
    }

    .secondary-nav a {
        padding: 5px 8px;
        font-size: 12px;
    }

    .secondary-nav a i {
        font-size: 20px;
    }

    /* Online Puja Mobile Styles */
    .page-header {
        padding: 30px 0 10px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .steps-container {
        justify-content: space-between;
        padding: 0 10px;
    }

    .step-item {
        flex: 1 1 45%;
        margin-bottom: 25px;
    }

    .puja-list-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .puja-grid-new {
        grid-template-columns: 1fr;
    }

    .puja-card-new {
        flex-direction: column;
    }

    .puja-image-new {
        flex: none;
        width: 100%;
        height: 180px;
    }

    /* Service Detail Mobile Styles */
    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .detail-header-info h1 {
        font-size: 28px;
    }

    .hero-banner-new {
        height: 200px;
    }

    .info-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-category strong {
        min-width: 100%;
    }

    .detail-section {
        padding: 20px;
    }

    /* Puja Detail & Booking Mobile Styles */
    .puja-title {
        font-size: 28px;
        margin-top: 10px;
    }

    .puja-image-hero {
        height: 180px;
    }

    .form-group.half-width {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .value-propositions {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .vp-item {
        padding: 15px;
    }

    .value-proposition-section h1 {
        font-size: 1.8em;
    }
    
      .top-left {
        flex-direction: column;
    }
    
     .top-bar .container {
            flex-direction: column;
            align-items: center;
        }   
        
        .venue-header {
            flex-direction: column;
        }          
        
        .blog-titles {
            text-align: center;
        } 
        
        .guru-titles{
            text-align: center;
        }  
        
        .venue-titles {
            text-align: center;
            margin-bottom:3px;        
        }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    /* Stack services vertically */
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
        max-width: 300px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 15px 20px;
    }

    .service-item span {
        text-align: left;
    }

    .icon-circle {
        margin: 0;
    }

    .service-listings {
        grid-template-columns: 1fr;
    }

    .secondary-nav .container ul {
        justify-content: space-between;
    }

    .secondary-nav li {
        min-width: 28%;
    }

    .pagination li a,
    .pagination li span {
        padding: 8px 10px;
        font-size: 13px;
    }

    .pagination li a i {
        display: none;
    }

    .pagination li:first-child a:after {
        content: 'Prev';
        margin-left: 5px;
    }

    .pagination li:last-child a:before {
        content: 'Next';
        margin-right: 5px;
    }

    /* Online Puja Very Small Mobile */
    .steps-container {
        justify-content: space-between;
    }

    .step-item {
        min-width: 28%;
    }
}


/* --- Help & Support Page Custom Styles (Without CSS Variables) --- */

.main-content-help {
    position: relative;
    padding-bottom: 50px;
    background-color: #f7f7f7;
    /* Light grey background */
}

/* 1. Decorative Top Pattern */
.decorative-pattern-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #ff3333;
    /* Red color from the pattern */
    /* Note: The exact zig-zag pattern in the image would require a background image or complex SVG. */
}

.help-support-container {
    padding-top: 40px;
}

/* 2. Page Titles and Layout */
.main-content-help .page-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    /* Secondary/Text color */
    margin-bottom: 5px;
}

.main-content-help .tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.help-section-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Column Configuration */
.left-column {
    flex: 3;
}

.right-column {
    flex: 2;
}

/* 3. Search Bar */
.search-box {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;

}

.search-box input {
    font-family: Poppins;
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    outline: none;
    width: 80%;
}

.search-button {
    background-color: #ff6600;
    /* Primary Orange */
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #e55c00;
    /* Darker Orange for hover */
}

.search-button i {
    margin-right: 8px;
}

/* 4. Quick FAQs Buttons */
.quick-faqs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.quick-faqs button {
    background-color: #ffffff;
    color: #999;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.quick-faqs button:hover {
    color: #ff6600;
    /* Primary Orange */
    border-color: #ff6600;
}

/* 5. FAQ Categories */
.faq-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.category-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 500;
    color: #333333;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #ff6600;
    /* Primary Orange border */
    padding-left: 15px;
}

.category-card i {
    margin-right: 15px;
    color: #ff6600;
    /* Primary Orange */
    font-size: 1.2rem;
}

/* 6. Donate Section */
.donate-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.donate-section h2 {
    font-size: 1.8rem;
    color: #ff6600;
    /* Primary Orange */
    margin-bottom: 5px;
}

.donate-section p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.donation-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    background-color: #fff;
    color: #ff6600;
    border: 1px solid #ff6600;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.amount-btn.active {
    background-color: #ff6600;
    /* Primary Orange */
    color: #ffffff;
}

.amount-btn:hover:not(.active) {
    background-color: #ffe8d8;
}

.enter-amount-input {
    font-family: Poppins;
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    min-width: 120px;
}

.full-width-input {
    font-family: Poppins;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    outline: none;
}

.donate-button {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.donate-button:hover {
    background-color: #e55c00;
}

/* 7. Contact Form (Ask Us) */
.contact-form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    font-family: Poppins;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6600;
}

/* ReCAPTCHA Mockup */
.recaptcha-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 25px;
}

.g-recaptcha-mock {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    background-color: #f9f9f9;
}

.g-recaptcha-mock label {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #444;
}

.g-recaptcha-mock input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: #444;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.recaptcha-logo img {
    height: 30px;
    /* Placeholder image height */
    width: 30px;
    /* Placeholder image width */
    margin-bottom: 2px;
}

.recaptcha-placeholder small.recaptcha-terms {
    font-size: 0.75rem;
    color: #999;
}

.submit-button {
    width: 150px;
    padding: 12px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #e55c00;
}

/* --- MEDIA QUERIES (Responsiveness) --- */
@media (max-width: 992px) {
    .help-section-wrapper {
        flex-direction: column;
    }

    .left-column {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }
}