:root {
    --primary-color: #781200;
    --primary-hover: #992600;
    --bg-color: #fff9f0;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e0d3c1;
    --card-bg: #fffcf8;
    --footer-bg: #78120091;;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}
.pbc{
  background-color: var(--primary-color);
}
body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.section-title {
    font-family: var(--font-heading);
    color: #4a2c11;
}

/* Custom Buttons */
.btn-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.text-highlight {
    color: var(--primary-color);
}

/* Navbar */
.custom-navbar {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(74, 44, 17, 0.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.logo-subtext {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    margin: 0 10px;
    font-family: var(--font-body);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.notification-icon {
    color: var(--primary-color);
    font-size: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
}

/* A fade gradient over hero bg is removed to show the rich golden background of banner.webp */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content .row {
    align-items: center;
}
.hero-sub-section {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 6;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
}

.hero-sub-section {
    z-index: 6;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.hero-title {
    font-weight: 700;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #151515;
    font-weight: 800;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 32px rgba(74, 44, 17, 0.18), 0 1.5px 4px rgba(74, 44, 17, 0.08);
    position: relative;
    overflow: hidden;
    animation: heroFormSlideIn 0.7s ease-out;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #781200, #f39c12, #781200);
    border-radius: 16px 16px 0 0;
}

@keyframes heroFormSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-form-header {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.hero-form-header i {
    font-size: 22px;
    color: #f39c12;
}

.hero-form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.input-icon-wrapper:focus-within i {
    opacity: 1;
}

.hero-input {
    padding: 12px 16px 12px 40px !important;
    border: 1.5px solid var(--border-color);
    border-radius: 10px !important;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.hero-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(120, 18, 0, 0.1);
    background: #fff;
}

.hero-input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.btn-hero-submit {
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #781200, #a03000);
    border: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(120, 18, 0, 0.3);
}

.btn-hero-submit:hover {
    background: linear-gradient(135deg, #992600, #c04000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 18, 0, 0.4);
}

.hero-form-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
}

.hero-form-note i {
    font-size: 10px;
}

/* Mobile adjustments for hero form */
@media (max-width: 991px) {
    .hero-form-card {
        margin-top: 30px;
    }
}

/* Quick Services */
.quick-services {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-services-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.service-icon-box {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-icon-box:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
    background-color: #fff0e6;
    border: 2px solid transparent;
}

.icon-orange {
    color: #f39c12;
    border-color: #fce3b8;
}

.icon-green {
    color: #27ae60;
    background-color: #eafaf1;
    border-color: #a3e4d7;
}

.icon-blue {
    color: #2980b9;
    background-color: #ebf5fb;
    border-color: #aed6f1;
}

.icon-pink {
    color: #e74c3c;
    background-color: #fdedec;
    border-color: #f5b7b1;
}

.icon-purple {
    color: #8e44ad;
    background-color: #f4ecf8;
    border-color: #d7bde2;
}

.icon-red {
    color: #c0392b;
    background-color: #fadbd8;
    border-color: #f1948a;
}

.service-icon-box span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '◆';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25%;
    width: 50%;
    height: 1px;
    background-color: var(--primary-color);
}

/* Info Section (Why / How) */
.feature-item {
    padding: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff0e6;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    border: 1px dashed var(--primary-color);
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-muted);
}

.vertical-divider {
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    position: relative;
}

.vertical-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: -5px;
    color: var(--border-color);
    background: var(--bg-color);
}

.steps-container {
    padding-left: 20px;
}

.step-item {
    margin-bottom: 25px;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
    background: var(--bg-color);
}

.step-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -25px;
    width: 1px;
    border-left: 1px dashed var(--border-color);
}

.step-item:last-child::before {
    display: none;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Side Cards */
.blessing-card,
.question-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.blessing-card {
    background-image: url('assests/images/ChatGPT Image May 26, 2026, 08_52_34 PM.webp');
    background-size: cover;
    background-position: center;
    /* Overlay to make text visible */
    box-shadow: inset 0 0 0 1000px rgba(255, 252, 248, 0.9);
}

.blessing-card img {
    height: 120px;
    object-fit: contain;
}

.blessing-card h4 {
    font-size: 16px;
    line-height: 1.4;
}

.mantra {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

.question-card h4 {
    font-size: 18px;
    color: var(--primary-color);
}

.question-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Our Services Section */
.bg-light-custom {
    background-color: #fdfaf5;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.service-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    font-size: 14px;
}

/* Trusted Astrologers */
.astro-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.astro-card:hover {
    transform: translateY(-5px);
}

.astro-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.astro-name {
    font-size: 16px;
    font-weight: 700;
}

.astro-type {
    font-size: 12px;
    color: var(--text-muted);
}

.astro-rating {
    font-size: 12px;
}

.astro-link {
    color: var(--primary-color);
    font-size: 18px;
    padding: 10px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--bg-color);
    overflow: hidden;
}

.testimonial-box {
    background: rgba(255, 230, 204, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 50px 30px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.mandala-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-image: url('assests/images/ChatGPT Image May 26, 2026, 08_52_34 PM.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.mandala-bg.left {
    left: -50px;
}

.mandala-bg.right {
    right: -50px;
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #444;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-indicators-custom span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
}

.carousel-indicators-custom span.active {
    background-color: var(--primary-color);
}

/* Articles & Insights */
.view-all-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.article-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.article-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.article-date {
    font-size: 12px;
    color: var(--text-muted);
}

.article-link {
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-box {
    background: linear-gradient(135deg, #fff0dc 0%, #ffe4c4 100%);
    border-radius: 15px;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.newsletter-icon {
    width: 50px;
}

.newsletter-form {
    width: 100%;
    max-width: 400px;
    z-index: 1;
}

.newsletter-form .form-control {
    border-radius: 30px;
    padding: 12px 20px;
    padding-right: 50px;
    border: 1px solid #ddd;
}

.btn-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
}

.thank-you-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    padding: 1rem;
}

.thank-you-overlay.d-none {
    display: none;
}

.no-scroll {
    overflow: hidden !important;
}

.thank-you-card {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    padding: 2rem 2.25rem;
    text-align: center;
    position: relative;
}

.thank-you-card .close-thank-you {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.thank-you-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.thank-you-card h2 {
    color: #28a745;
}

.thank-you-card h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.thank-you-card .thank-you-message {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.om-bg {
    position: absolute;
    right: -20px;
    top: -20px;
    opacity: 0.2;
    z-index: 0;
}

.om-icon {
    width: 150px;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    background-image: url('assests/images/ChatGPT Image May 26, 2026, 08_52_34 PM.webp');
    background-size: cover;
    background-position: center;
    /* Overlay */
    box-shadow: inset 0 0 0 2000px rgba(139, 58, 26, 0.95);
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Panchang Card */
.panchang-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.panchang-bg {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    opacity: 0.2;
    z-index: 0;
}

.panchang-item {
    position: relative;
    z-index: 1;
}

.panchang-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
}

.panchang-item small {
    color: rgba(255, 255, 255, 0.7);
}

/* Page Hero Banner */
.page-hero-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: #4a2c11;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
    filter: blur(2px);
}
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 18, 0, 0.8) 0%, rgba(74, 44, 11, 0.9) 100%);
    z-index: 2;
}
.page-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-item a:hover {
    color: #f39c12;
}
.breadcrumb-item.active {
    color: #f39c12;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* About Us Styles */
.about-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}
.about-main-img {
    border: 3px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(74, 44, 17, 0.15);
}
.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #781200, #a03000);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(120, 18, 0, 0.3);
    text-align: center;
    border: 2px solid var(--border-color);
}
.experience-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.experience-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}
.about-text-block .section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}
.about-lead-text {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #4a2c11;
    line-height: 1.6;
}
.about-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about-stat-box i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.about-stat-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-stat-box span {
    font-size: 12px;
    color: var(--text-muted);
}
.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 35px 30px;
    transition: transform 0.3s;
}
.mission-card:hover {
    transform: translateY(-5px);
}
.mission-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #fff0e6;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}
.mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.mission-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}
.mission-list li {
    margin-bottom: 10px;
    font-size: 14px;
}
.mission-list li i {
    color: #27ae60;
}
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff0e6;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    border: 1px dashed var(--primary-color);
}
.about-astro-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-astro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.about-astro-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border-color);
}
.astro-speciality {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}
.astro-bio {
    font-size: 13px;
    color: var(--text-muted);
}
.cta-box {
    background: linear-gradient(135deg, #781200 0%, #4a2c11 100%);
    background-image: url('assests/images/ChatGPT Image May 26, 2026, 08_52_34 PM.webp');
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 2000px rgba(120, 18, 0, 0.9);
    border-radius: 20px;
    padding: 50px 30px;
    border: 1px solid var(--border-color);
}
.btn-custom-light {
    background: #fff;
    color: var(--primary-color);
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #fff;
}
.btn-custom-light:hover {
    background: var(--bg-color);
    color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-page-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}
.services-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 44, 17, 0.08);
}
.services-page-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.services-page-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-page-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #781200, #a03000);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(120, 18, 0, 0.3);
}
.services-page-body {
    padding: 25px;
}
.services-page-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.services-page-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}
.services-page-features li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.services-page-features li i {
    color: var(--primary-color);
}
.why-choose-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s;
}
.why-choose-card:hover {
    transform: translateY(-5px);
}
.why-choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff0e6;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px;
    border: 1.5px solid var(--primary-color);
}
.why-choose-card h5 {
    font-size: 16px;
    font-weight: 700;
}
.why-choose-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Us Styles */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-5px);
}
.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff0e6;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    border: 1px solid var(--border-color);
}
.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
}
.contact-info-card p {
    font-size: 13px;
    color: var(--text-muted);
}
.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.contact-info-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.contact-form-header {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.contact-side-wrap {
    display: flex;
    flex-direction: column;
}
.contact-hours-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}
.contact-hours-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.hours-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(74, 44, 17, 0.1);
    padding-bottom: 5px;
}
.hours-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.contact-whatsapp-card {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 15px;
    padding: 30px;
}
.contact-whatsapp-card i {
    font-size: 40px;
    color: #2e7d32;
    margin-bottom: 15px;
}
.btn-whatsapp {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-whatsapp:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
    color: white;
    transform: translateY(-2px);
}

.mobile-action-bar {
    display: none;
    position: fixed;
    inset: auto 0 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0.5rem 0.75rem;
}

.mobile-action-bar .mobile-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 0.5rem);
    margin: 0 0.25rem;
    padding: 0.8rem 0.5rem;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-action-bar .mobile-action-btn i {
    margin-right: 0.45rem;
    font-size: 1.05rem;
}

.mobile-action-bar .mobile-action-btn:hover {
    transform: translateY(-2px);
}

.mobile-action-bar .btn-call {
    background: #f35912;
}

.mobile-action-bar .btn-whatsapp {
    background: #10cd55;
}

.mobile-action-bar .btn-chat {
    background: #0d6efd;
    display: none !important;
}

@media (max-width: 767.98px) {
    .mobile-action-bar {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .mobile-action-bar {
        display: none !important;
    }
}

.contact-social-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}
.contact-social-card h4 {
    font-size: 18px;
    font-weight: 700;
}
.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-circle:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.map-wrapper {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Pricing Table Styles */
.pricing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 44, 17, 0.08);
}
.pricing-popular {
    border: 2px solid var(--primary-color);
    background: var(--card-bg);
    transform: scale(1.03);
}
@media (max-width: 991px) {
    .pricing-popular {
        transform: scale(1);
    }
}
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #781200, #a03000);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(120, 18, 0, 0.3);
}
.pricing-header h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.pricing-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}
.pricing-price {
    margin: 25px 0;
    color: var(--primary-color);
    font-family: var(--font-heading);
}
.price-currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: 5px;
}
.price-amount {
    font-size: 40px;
    font-weight: 700;
}
.price-period {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.pricing-features li {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-main);
}
.pricing-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}
.pricing-features li i.fa-check {
    color: #27ae60;
}
.pricing-features li i.fa-xmark {
    color: #c0392b;
}
.btn-custom-outline {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}
.btn-custom-outline:hover {
    background: var(--primary-color);
    color: white;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--card-bg);
}
.faq-item .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #4a2c11;
    background: var(--card-bg);
    box-shadow: none !important;
    padding: 18px 24px;
}
.faq-item .accordion-button:not(.collapsed) {
    background: #fff0e6;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}
.faq-item .accordion-body {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    background: #fff;
}

/* Service Detail Layout Styles */
.service-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.service-detail-hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.service-detail-lead {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #4a2c11;
    line-height: 1.6;
    margin-bottom: 25px;
}
.service-feature-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: start;
    height: 100%;
    transition: transform 0.3s;
}
.service-feature-box:hover {
    transform: translateY(-3px);
}
.service-feature-box i {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}
.service-feature-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(120, 18, 0, 0.03) 100%);
}

.thank-you-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.thank-you-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10cd55 0%, #0ba84e 100%);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    margin: 0 auto;
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.thank-you-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-detail-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.thank-you-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.thank-you-detail-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.thank-you-detail-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.thank-you-detail-box p {
    color: var(--text-muted);
    margin: 0;
}

.thank-you-detail-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thank-you-detail-box a:hover {
    color: var(--primary-hover);
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 30px 20px;
    }

    .thank-you-title {
        font-size: 28px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}
}
.service-feature-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}
.service-benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}
.service-benefit-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
}
.service-benefit-list li i {
    color: #27ae60;
    margin-top: 4px;
    margin-right: 8px;
}
.service-process {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}
.service-process::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 1px;
    border-left: 1px dashed var(--border-color);
}
.service-process-step {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: start;
}
.service-process-step:last-child {
    margin-bottom: 0;
}
.process-step-num {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-process-step h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    padding-left: 15px;
}
.service-process-step p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    padding-left: 15px;
}
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-book-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.sidebar-book-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.sidebar-services-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}
.sidebar-services-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.sidebar-services-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.sidebar-services-list li {
    margin-bottom: 12px;
}
.sidebar-services-list li:last-child {
    margin-bottom: 0;
}
.sidebar-services-list a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}
.sidebar-services-list a:hover {
    background: #fff;
    border-color: var(--border-color);
    color: var(--primary-color);
    padding-left: 18px;
}
.sidebar-help-card {
    background: #fff0e6;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}
.sidebar-help-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}
.sidebar-help-card p {
    font-size: 13px;
    color: var(--text-muted);
}




