/* style.css */
:root {
    --primary-color: #6a1a24; /* Maroon */
    --secondary-color: #d8a044; /* Gold */
    --bg-color-light: #faf4eb; /* Light beige */
    --bg-color-dark: #3a1c1d;
    --bg-color-dark-medium: #f5ede0;
    --text-dark: #222222;
    --text-light: #ffffff;
    --font-primary: "Readex Pro", sans-serif;
    --font-secondary: "Readex Pro", sans-serif;
}

html,
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--primary-color);
}

.text-primary-custom {
    color: var(--primary-color);
}
.text-secondary-custom {
    color: var(--secondary-color);
}
.bg-primary-custom {
    background-color: var(--primary-color);
}
.bg-secondary-custom {
    background-color: var(--secondary-color);
}
.bg-light-custom {
    background-color: var(--bg-color-light);
}
.bg-dark-custom {
    background-color: var(--bg-color-dark);
}

/* Top Bar */
.top-bar {
    background-color: #6a1a24;
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.85rem;
}
.top-contact span {
    margin-right: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.top-contact i {
    color: #d19a33;
    margin-right: 8px;
}
.top-social a {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 0.95rem;
    transition: 0.3s;
}
.top-social a:hover {
    color: #d19a33;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand img {
    height: 50px;
}
.navbar-nav .nav-link {
    font-weight: normal;
    color: #6a1a24 !important;
    margin: 0 7px;
    font-size: 16px;
    text-transform: none;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d19a33 !important;
}
.btn-header {
    background-color: #6a1a24;
    color: var(--text-light) !important;
    padding: 12px 30px !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    display: inline-block;
    margin-left: 10px;
}
.btn-header:hover {
    background-color: #d19a33;
    color: var(--text-dark) !important;
}
.btn-custom {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    transition: 0.3s;
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 600;
}
.btn-custom:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: 0.3s;
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 600;
}
.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 700px;
    background: url("../images/default.png") no-repeat center center/cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(65, 15, 20, 0.45); /* Deep maroon overlay */
}
.hero-divider {
    position: relative;
    width: 150px;
    height: 1px;
    background-color: #d19a33;
    margin: 0 auto 25px;
}
.hero-divider::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background-color: #d19a33;
}
.hero-subtitle {
    color: #d19a33;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero-title span {
    color: #d19a33;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.hero-desc * {
    color: #fff !important;
}
.btn-hero {
    background-color: #d19a33;
    color: #222;
    padding: 18px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    transition: 0.3s;
    margin-bottom: 40px;
}
.btn-hero:hover {
    background-color: var(--text-light);
    color: #6a1a24;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    color: var(--text-light);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats-wrapper {
    background-color: var(--primary-color);
    /* border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color); */
}
.hero-stats {
    padding: 25px 0;
    color: var(--text-light);
}
.stat-item {
    text-align: center;
    padding: 15px;
}
.stat-item h3 {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.stat-item p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Generic Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    margin-bottom: 20px;
}
.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: var(--secondary-color);
}
.section-title h2::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
}
.section-subtitle {
    color: #d19a33;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--text-light);
}
.about-images {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}
.about-img-main {
    width: 80%;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.about-images::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    border: 3px solid #d19a33;
    z-index: 1;
}
.about-badge {
    position: absolute;
    bottom: 40px;
    right: 12%;
    background-color: #ffffff;
    padding: 20px 25px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #d19a33;
}
.about-badge h3 {
    font-size: 2.8rem;
    font-family: var(--font-secondary);
    color: #6a1a24;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}
.about-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
}
.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}
.about-content h2 span {
    color: #6a1a24;
}
.about-text-lead {
    font-size: 1.15rem;
    color: #444;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
    border-left: 0px solid #d19a33;
    padding-left: 20px;
}
.about-text-regular {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
}
.about-feature-item .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(209, 154, 51, 0.1);
    border: 1px solid rgba(209, 154, 51, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d19a33;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}
.about-feature-item:hover .icon-box {
    background-color: #d19a33;
    color: var(--text-dark);
}
.about-feature-item h5 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}
.about-feature-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Our Journey */
.journey-section {
    background-color: var(--text-light);
    padding: 100px 0;
}
.timeline {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}
.timeline::after {
    content: "";
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item.left {
    left: 0;
}
.timeline-item.right {
    left: 50%;
}
.timeline-item::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--text-light);
    border: 4px solid var(--secondary-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.right::after {
    left: -12px;
}
.timeline-content {
    padding: 30px;
    background-color: var(--bg-color-light);
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.timeline-year {
    position: absolute;
    top: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.left .timeline-year {
    right: -100px;
}
.right .timeline-year {
    left: -100px;
}

/* Unions We Are Proud Of */
.unions-section {
    padding: 100px 0;
    background-color: #f2eadc;
}
.unions-section .section-title h2 span {
    color: #6a1a24;
}
.union-card {
    background-color: var(--text-light);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.union-img-wrapper {
    position: relative;
    height: 280px;
}
.union-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.union-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 25px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}
.union-meta {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.union-names {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(216, 160, 68, 0.9);
    color: var(--text-dark);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}
.union-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.union-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}
.union-quote {
    background-color: var(--bg-color-light);
    padding: 25px 20px 20px;
    position: relative;
    border-left: 2px solid var(--secondary-color);
    margin-top: auto;
}
.quote-icon-small {
    color: var(--secondary-color);
    font-size: 1rem;
    position: absolute;
    top: 25px;
    left: 20px;
}
.union-quote p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
    margin: 0 0 15px 25px;
    font-weight: 500;
}
.quote-author {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-left: 25px;
}
.btn-primary-square {
    background-color: #6a1a24;
    color: var(--text-light);
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}
.btn-primary-square:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}
.union-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.union-card .badge {
    background-color: rgba(216, 160, 68, 0.1);
    color: var(--secondary-color);
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--secondary-color);
}

/* Built on Trust */
.trust-section {
    background-color: #6a1a24;
    color: var(--text-light);
    padding: 100px 0;
}
.trust-image-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    margin-left: 20px;
}
.trust-image-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary-color);
    z-index: 1;
    opacity: 0.6;
}
.trust-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}
.trust-content {
    padding: 0 20px;
}
.trust-section .section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}
.trust-section h2 {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 35px;
    color: var(--text-light);
}
.trust-section h2 span {
    color: var(--secondary-color);
}
.trust-blockquote {
    border-left: 2px solid var(--secondary-color);
    padding-left: 25px;
    margin-bottom: 35px;
}
.trust-blockquote p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}
.trust-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}
.trust-author h5 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.trust-author .role {
    color: var(--secondary-color);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}
.trust-author .exp {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Process Chevrons */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-color-light);
}
.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-top: 40px;
    gap: 15px;
}
.process-step-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.process-step-chevron {
    background-color: #6a1a24;
    color: var(--text-light);
    padding: 18px 0;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    clip-path: polygon(
        0 0,
        calc(100% - 25px) 0,
        100% 50%,
        calc(100% - 25px) 100%,
        0 100%,
        25px 50%
    );
}
.process-step-col:first-child .process-step-chevron {
    clip-path: polygon(
        0 0,
        calc(100% - 25px) 0,
        100% 50%,
        calc(100% - 25px) 100%,
        0 100%
    );
}
.process-step-col:last-child .process-step-chevron {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25px 50%);
}

/* colors for chevrons */
.process-step-col:nth-child(1) .process-step-chevron {
    background-color: #6c232e;
}
.process-step-col:nth-child(2) .process-step-chevron {
    background-color: #8c363d;
}
.process-step-col:nth-child(3) .process-step-chevron {
    background-color: #b56c30;
}
.process-step-col:nth-child(4) .process-step-chevron {
    background-color: #d19a33;
}

.process-step-content {
    padding-right: 20px;
}
.process-step-content h4 {
    color: #6a1a24;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.process-step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Features */
.features-section {
    padding: 100px 0;
    background-color: var(--text-light);
}
.feature-box {
    background-color: var(--bg-color-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
    border: 1px solid transparent;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}
.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}
.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* People / Communities */
.people-section {
    padding: 120px 0;
    background-color: var(--bg-color-light);
}
.people-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.gujarati-highlight-box {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(106, 26, 36, 0.08);
    position: relative;
    border-top: 5px solid var(--secondary-color);
}
.highlight-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(209, 154, 51, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}
.gujarati-highlight-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.gujarati-highlight-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.highlight-tags span {
    background-color: var(--bg-color-light);
    color: #444;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}
.highlight-tags span i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* New Testimonial Design */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-color-light); /* Solid white like image */
}
.testimonials-section h2 {
    color: var(--text-dark);
}
.testimonial-swiper {
    padding: 40px 20px 80px;
}
.swiper-slide {
    height: auto;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
}
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.testimonial-card-new {
    background: var(--text-light);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.swiper-slide-active .testimonial-card-new {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.quote-icon-new {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3.5rem;
    color: #ccc;
    transition: all 0.4s ease;
}
.swiper-slide-active .quote-icon-new {
    color: var(--secondary-color);
}
.testimonial-image-new {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    background-color: #f1f1f1;
    opacity: 0.8;
    transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-image-new {
    opacity: 1;
}
.testimonial-text-new {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 25px;
    font-weight: 500;
    transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-text-new {
    color: #333;
}
.testimonial-stars {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 1rem;
    transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-stars {
    color: var(--secondary-color);
}
.testimonial-name-new {
    font-weight: 700;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-name-new {
    color: var(--text-dark);
}
.testimonial-title-new {
    font-size: 0.85rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-title-new {
    color: #888;
}

/* Custom Nav/Pagination for Swiper */
.custom-swiper-nav {
    background-color: rgba(209, 154, 51, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.custom-swiper-nav:hover {
    background-color: var(--secondary-color);
    color: #fff;
}
.custom-swiper-nav::after {
    font-size: 1.2rem;
    font-weight: bold;
}
.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--bg-color-dark-medium);
}
.blog-section .section-title h2 span {
    color: #6a1a24;
}
.blog-card {
    background-color: var(--text-light);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.blog-img-wrapper {
    position: relative;
    height: 250px;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #d19a33;
    color: #222;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    color: #d19a33;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}
.blog-title a:hover {
    color: #6a1a24;
}
.blog-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}
.blog-card .read-more {
    color: #d19a33;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}
.blog-card .read-more i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: 0.3s;
}
.blog-card .read-more:hover i {
    transform: translateX(5px);
}
.btn-outline-square {
    background-color: transparent;
    color: #6a1a24;
    padding: 15px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid #6a1a24;
    border-radius: 0;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-square:hover {
    background-color: #6a1a24;
    color: var(--text-light);
}

/* FAQ & Contact */
.faq-contact-section {
    padding: 100px 0;
    background-color: var(--text-light);
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.accordion-button {
    background-color: var(--bg-color-light);
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    padding: 25px;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
}
.contact-info-box {
    background-color: var(--bg-color-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}
.contact-item-content h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.contact-item-content p {
    margin: 0;
    color: #666;
}
.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
}
.custom-form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #776e65;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.custom-form-control {
    background-color: var(--bg-color-light);
    border: 1px solid #eadecf;
    border-radius: 0;
    padding: 15px 18px;
    color: #555;
}
.custom-form-control::placeholder {
    color: #999;
}
.custom-form-control:focus {
    background-color: var(--bg-color-light);
    border-color: var(--secondary-color);
    box-shadow: none;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(216, 160, 68, 0.25);
}

/* Footer */
.footer {
    background-color: var(--bg-color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}
.footer-logo {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}
.footer p {
    line-height: 1.8;
}
.footer h5 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1.3rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}
.social-icons {
    margin-top: 25px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 1.2rem;
}
.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    p,
    .about-text-regular,
    .text-muted,
    .about-content,
    .union-desc,
    .accordion-button,
    .accordion-body {
        font-size: 1.3rem !important;
        line-height: 1.8 !important;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc,
    .hero-desc * {
        font-size: 1.3rem !important;
    }
    .stat-item p {
        font-size: 1rem !important;
    }
    .about-images {
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
    }
    .about-images::before {
        display: none;
    }
    .about-img-main {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .about-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -10px;
        width: 90%;
        justify-content: center;
        padding: 15px;
    }
    .process-steps-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .process-step-col {
        text-align: center;
    }
    .process-step-content h4 {
        font-size: 1.6rem !important;
        margin-bottom: 15px;
    }
    .process-step-content p {
        font-size: 1.4rem !important;
    }
    .process-step-chevron {
        margin: 0 auto 15px auto;
        clip-path: none !important;
        border-radius: 50% !important;
        background-color: transparent !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        padding: 0 !important;
    }
    .process-step-col:nth-child(1) .process-step-chevron {
        border: 2px solid #6c232e;
        color: #6c232e !important;
    }
    .process-step-col:nth-child(2) .process-step-chevron {
        border: 2px solid #8c363d;
        color: #8c363d !important;
    }
    .process-step-col:nth-child(3) .process-step-chevron {
        border: 2px solid #b56c30;
        color: #b56c30 !important;
    }
    .process-step-col:nth-child(4) .process-step-chevron {
        border: 2px solid #d19a33;
        color: #d19a33 !important;
    }
    .process-step-content {
        padding-right: 0;
    }
    .timeline::after {
        left: 40px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 25px;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item::after {
        left: 28px !important;
    }
    .left .timeline-year,
    .right .timeline-year {
        left: 90px;
        top: -10px;
        position: relative;
        display: block;
        margin-bottom: 10px;
    }
    .trust-content {
        padding: 40px 20px;
    }
    .about-content p,
    .about-text-lead,
    .about-text-regular,
    .founder-quote p {
        font-size: 1.3rem !important;
        line-height: 1.8 !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 70px) !important;
        min-height: 550px;
        padding: 0 !important;
        align-items: flex-end !important;
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 25%,
            #160e0d 65%,
            #160e0d 100%
        ) !important;
    }
    .hero-section .container {
        padding-bottom: 50px !important;
        padding-top: 40px !important;
    }
    .hero-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px;
        background-color: #6a1a24;
        border-top: 2px solid #d8a044;
        z-index: 10;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .stat-item {
        margin-bottom: 20px;
    }
    .stat-item p {
        font-size: 0.9rem !important;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .process-step {
        margin-bottom: 50px;
    }
    .community-pill {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* SUCCESS STORIES PAGE */
.page-hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 100px 0;
}
.hero-super-title {
    color: var(--secondary-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}
.page-hero-section h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.page-hero-section h1 span {
    color: var(--secondary-color);
}
.hero-subtitle-text {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.success-stories-main {
    background-color: var(--bg-color-light);
}
.success-grid-controls {
    border-bottom: 1px solid #e0d8c9;
    padding-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.page-text {
    color: var(--primary-color);
    font-weight: 700;
}
.success-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.success-card-img {
    position: relative;
    height: 240px;
}
.success-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.success-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
.success-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--secondary-color);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 1px;
}
.success-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}
.date-loc {
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.success-names {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}
.success-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.success-snippet {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}
.success-quote {
    border-left: 2px solid var(--secondary-color);
    padding-left: 15px;
    margin-top: auto;
    position: relative;
}
.quote-mark {
    color: var(--secondary-color);
    font-size: 0.8rem;
    position: absolute;
    top: 0;
    left: -10px;
    background: #fff;
    padding: 2px 0;
}
.success-quote .quote-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}
.success-quote .quote-author {
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.success-footer {
    padding: 15px 30px;
    border-top: 1px solid #f9f9f9;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
}
.success-footer i {
    color: var(--secondary-color);
    margin-right: 5px;
}
.custom-pagination .pagination {
    gap: 10px;
}
.custom-pagination .page-link {
    border: none;
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 700;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.custom-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
}
.custom-pagination .page-item.disabled .page-link {
    color: #ddd;
    background-color: transparent;
    box-shadow: none;
}
.cta-bottom-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* BLOG DETAIL PAGE */
.article-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}
.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 26, 36, 0.85); /* Primary color overlay */
}
.blog-badge-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.article-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.article-meta {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.article-content p {
    margin-bottom: 25px;
}
.lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px !important;
}
.article-blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 30px 40px;
    background-color: var(--bg-color-light);
    position: relative;
    border-radius: 0 12px 12px 0;
}
.quote-icon-large {
    color: rgba(216, 160, 68, 0.2);
    font-size: 4rem;
    position: absolute;
    top: 20px;
    left: 20px;
}
.article-blockquote p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-style: italic;
    line-height: 1.6;
}
.article-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}
.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}
.article-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}
.tag {
    display: inline-block;
    background-color: #f1f1f1;
    color: #555;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}
.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color-light);
    color: var(--primary-color);
    margin-right: 10px;
    transition: 0.3s;
}
.article-share a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* LEGAL PAGES */
.legal-hero {
    background-color: var(--primary-color);
    padding: 60px 0;
    border-bottom: 5px solid var(--secondary-color);
}
.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.legal-content-sec {
    background-color: #fff;
}
.legal-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}
.legal-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}
.legal-content ul {
    padding-left: 20px;
}
.legal-content li {
    margin-bottom: 10px;
}

/* THANK YOU PAGE */
.thank-you-hero {
    background-color: var(--primary-color);
    padding: 80px 0 100px;
    color: #fff;
    text-align: center;
}
.ty-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}
.ty-super-title {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.ty-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.ty-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.ty-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
    position: relative;
}
.ty-divider::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
}
.ty-next-title {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.ty-step-box {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 40px 20px;
    height: 100%;
    border-radius: 4px;
}
.ty-step-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
}
.ty-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.ty-step-desc {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.6;
}

.thank-you-bottom {
    background-color: var(--bg-color-light);
    padding: 80px 0;
    text-align: center;
}
.ty-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.ty-quote {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.ty-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.ty-author-title {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-whatsapp:hover {
    background-color: #1ebe59;
    color: #fff;
}
.btn-primary-dark {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-right: 15px;
}
.btn-primary-dark:hover {
    background-color: #55151c;
    color: #fff;
}
.ty-small-text {
    font-size: 0.75rem;
    color: #888;
    margin-top: 25px;
}
