/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Devanagari", sans-serif;

    background: #fffaf0;

    color: #3d2925;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}



/* =====================================================
   COLORS
===================================================== */

:root {

    --maroon: #8c0d17;

    --dark-maroon: #680810;

    --gold: #c89435;

    --light-gold: #e8d2a2;

    --cream: #fff9ed;

    --text: #332522;

}



/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    min-height: 35px;

    background: var(--maroon);

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 6px 3.5%;

    font-size: 12px;
}


.top-left {

    color: #f3d18a;

    display: flex;

    align-items: center;

    gap: 7px;
}


.top-right {

    display: flex;

    align-items: center;

    gap: 25px;
}


.follow {

    display: flex;

    align-items: center;

    gap: 8px;
}


.follow a {

    width: 20px;

    height: 20px;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;
}


.top-phone {

    display: flex;

    align-items: center;

    gap: 5px;
}


.top-phone i {

    color: #f2cf82;

    margin-right: 4px;
}



/* =====================================================
   HEADER
===================================================== */

.header {

    height: 84px;

    background: #fffdf8;

    border-bottom: 1px solid #e5d9c7;

    position: relative;

    z-index: 100;
}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}



/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 13px;
}


.logo-symbol {

    width: 64px;

    height: 64px;

    border-radius: 50%;

    border: 2px solid var(--gold);

    outline: 1px solid #d5b36f;

    outline-offset: -6px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: Georgia, serif;

    font-size: 34px;

    color: var(--maroon);

    position: relative;
}


.logo-symbol::before {

    content: "";

    position: absolute;

    width: 52px;

    height: 52px;

    border: 1px solid var(--gold);

    border-radius: 50%;
}


.logo-content h1 {

    color: var(--maroon);

    font-size: 29px;

    line-height: 30px;

    font-weight: 800;
}


.logo-content span {

    font-family: Arial, sans-serif;

    font-size: 14px;

    color: #333;

    display: block;

    margin-top: 2px;
}



/* NAV */

.navigation {

    display: flex;

    align-items: center;

    gap: 25px;

    height: 100%;
}


.navigation a {

    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #282321;

    height: 100%;

    display: flex;

    align-items: center;

    position: relative;
}


.navigation a::after {

    content: "";

    position: absolute;

    bottom: 18px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--maroon);

    transition: .3s;
}


.navigation a:hover::after,
.navigation a.active::after {

    width: 100%;
}


.navigation a.active {

    color: var(--maroon);
}



/* HEADER BUTTONS */

.header-buttons {

    display: flex;

    align-items: center;

    gap: 10px;
}


.login-btn,
.register-btn {

    padding: 9px 18px;

    border-radius: 5px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    transition: .3s;
}


.login-btn {

    border: 1px solid var(--maroon);

    color: var(--maroon);

    background: white;
}


.register-btn {

    background: var(--maroon);

    color: white;

    border: 1px solid var(--maroon);
}


.login-btn:hover {

    background: var(--maroon);

    color: white;
}


.register-btn:hover {

    background: var(--dark-maroon);
}



/* MOBILE MENU */

.mobile-menu {

    display: none;

    border: 0;

    background: transparent;

    color: var(--maroon);

    font-size: 27px;

    cursor: pointer;
}



/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 400px;

    background: #fff8eb;

    overflow: hidden;
}


.hero-container {

    min-height: 400px;

    display: flex;

    position: relative;
}


.hero-content {

    width: 48%;

    padding-top: 50px;

    position: relative;

    z-index: 5;
}


.hero-content h2 {

    font-size: 38px;

    line-height: 1.4;

    font-weight: 800;

    color: #2d2421;
}


.hero-content h2 span {

    color: var(--maroon);
}


.hero-description {

    margin-top: 7px;

    font-size: 19px;

    color: #3c302d;
}



/* HERO STATS */

.hero-stats {

    display: flex;

    gap: 17px;

    margin-top: 35px;
}


.hero-stat {

    display: flex;

    align-items: center;

    gap: 7px;
}


.round-icon {

    width: 38px;

    height: 38px;

    border: 1px solid #d5b36c;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-size: 15px;
}


.hero-stat strong {

    display: block;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 17px;
}


.hero-stat small {

    display: block;

    font-size: 9px;

    color: #574a45;
}



/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 28px;
}


.hero-register,
.hero-find {

    padding: 12px 22px;

    border-radius: 5px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 9px;

    transition: .3s;
}


.hero-register {

    background: var(--maroon);

    color: white;
}


.hero-find {

    border: 1px solid var(--gold);

    color: #8c661f;

    background: white;
}


.hero-register:hover {

    background: var(--dark-maroon);

    transform: translateY(-2px);
}


.hero-find:hover {

    background: #fff2d8;

    transform: translateY(-2px);
}



/* HERO IMAGE */

.hero-image {

    width: 55%;

    position: absolute;

    right: -4%;

    top: 0;

    height: 100%;
}


.hero-image::before {

    content: "";

    position: absolute;

    left: -120px;

    top: 0;

    width: 220px;

    height: 100%;

    z-index: 2;

    background: linear-gradient(
        90deg,
        #fff8eb 5%,
        rgba(255,248,235,.8) 35%,
        transparent 100%
    );
}


.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;
}



/* =====================================================
   SEARCH SECTION
===================================================== */

.search-section {

    margin-top: -1px;

    position: relative;

    z-index: 10;
}


.search-box {

    background: var(--maroon);

    border-radius: 16px;

    padding: 14px 38px 25px;

    box-shadow: 0 8px 25px rgba(80,10,10,.12);
}


.search-heading {

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 16px;

    margin-bottom: 12px;
}


.search-heading h2 {

    font-size: 20px;

    font-weight: 700;
}


.search-heading span {

    color: #dfb35e;

    font-size: 25px;
}



/* FORM */

.search-form {

    background: #fffdf9;

    border-radius: 12px;

    padding: 12px;

    display: grid;

    grid-template-columns:
        1.1fr 1.3fr
        1.1fr 1.1fr
        1.1fr 1.1fr
        1.1fr 1.2fr;

    gap: 12px;
}


.form-group label {

    display: block;

    font-size: 11px;

    margin: 0 0 5px 2px;

    color: #403531;
}


.form-group select {

    width: 100%;

    height: 35px;

    border: 1px solid #ded8d0;

    border-radius: 6px;

    padding: 0 10px;

    background: white;

    color: #423b38;

    font-size: 11px;

    outline: none;
}


.form-group select:focus {

    border-color: var(--gold);
}



/* AGE */

.age-select {

    display: flex;

    align-items: center;

    gap: 6px;
}


.age-select select {

    flex: 1;
}


.age-select span {

    font-size: 11px;
}



/* SEARCH BUTTON */

.search-button-wrapper {

    display: flex;

    align-items: end;
}


.search-submit {

    width: 100%;

    height: 35px;

    border: 0;

    border-radius: 6px;

    background: #d3942d;

    color: white;

    cursor: pointer;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;
}


.search-submit:hover {

    background: #b87919;

    transform: translateY(-1px);
}



/* =====================================================
   COUNTER SECTION
===================================================== */

.counter-section {

    padding: 22px 0;
}


.counter-container {

    min-height: 110px;

    border: 1px solid #e4d0a6;

    border-radius: 14px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #fffdf8;
}


.counter-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    position: relative;
}


.counter-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    height: 65%;

    width: 1px;

    background: #ded2bc;
}


.counter-icon {

    width: 60px;

    height: 60px;

    border: 1px solid #d2b36c;

    border-radius: 50%;

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;
}


.counter-item strong {

    display: block;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 25px;
}


.counter-item span {

    display: block;

    color: #4b3e3a;

    font-size: 11px;
}



/* =====================================================
   CONTENT SECTION
===================================================== */

.content-section {

    padding: 0 0 25px;
}


.content-grid {
    display: block;
    width: 100%;
}

.why-us {
    width: 100%;
    margin-bottom: 30px;
}

.success-section {
    width: 100%;
    margin-top: 10px;
}



/* SECTION TITLES */

.section-title h2,
.success-title h2 {

    color: var(--maroon);

    font-size: 21px;

    font-weight: 800;
}


.section-title span,
.success-title span {

    display: block;

    width: 45px;

    height: 2px;

    background: var(--gold);

    margin-top: 6px;
}



/* WHY GRID */

.why-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 9px 15px;

    margin-top: 17px;
}


.why-item {

    display: flex;

    gap: 10px;

    padding: 10px 4px;

    border-bottom: 1px solid #eee3d3;
}


.why-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    color: var(--gold);

    font-size: 19px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.why-item h3 {

    color: #4a2c25;

    font-size: 11px;

    margin-bottom: 4px;
}


.why-item p {

    font-size: 9px;

    line-height: 1.5;

    color: #6b5c56;
}



/* =====================================================
   SUCCESS
===================================================== */

.success-title {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 10px;
}


.success-title > div {

    display: flex;

    flex-direction: column;
}


.success-title a {

    border: 1px solid var(--maroon);

    border-radius: 5px;

    padding: 5px 14px;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 11px;
}


.stories {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}


.story-card {

    background: #fff;

    border: 1px solid #e1d7c9;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 3px 8px rgba(60,30,20,.04);

    transition: .3s;
}


.story-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 8px 20px rgba(60,30,20,.1);
}


.story-image {

    height: 150px;

    position: relative;

    overflow: hidden;
}


.story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.quote {

    position: absolute;

    top: 7px;

    left: 7px;

    width: 29px;

    height: 29px;

    border-radius: 4px;

    background: white;

    color: var(--maroon);

    z-index: 3;

    font-size: 28px;

    line-height: 32px;

    text-align: center;
}


.story-content {

    padding: 9px 10px 12px;
}


.story-content p {

    font-size: 10px;

    line-height: 1.5;

    color: #514641;

    min-height: 42px;
}


.story-content strong {

    display: block;

    color: var(--maroon);

    font-size: 11px;

    margin-top: 5px;
}


.story-content small {

    font-size: 9px;

    color: #766b66;
}



/* DOTS */

.slider-dots {

    display: flex;

    justify-content: center;

    gap: 6px;

    margin-top: 12px;
}


.slider-dots span {

    width: 7px;

    height: 7px;

    background: #d1c5b7;

    border-radius: 50%;
}


.slider-dots span.active {

    background: var(--maroon);
}



/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 5px 0 25px;
}


.cta-container {

    min-height: 95px;

    border-radius: 14px;

    background: var(--maroon);

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 45px;
}


.cta-content h2 {

    font-size: 20px;

    line-height: 1.5;
}


.cta-content p {

    margin-top: 4px;

    font-size: 12px;

    color: #f2dcb3;
}


.cta-button {

    background: #d4942c;

    color: white;

    padding: 13px 20px;

    border-radius: 6px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    white-space: nowrap;

    transition: .3s;
}


.cta-button:hover {

    background: #bd7c1b;

    transform: translateY(-2px);
}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 25px 0;

    background: #fffaf0;

    border-top: 1px solid #eadbc4;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.2fr
        .9fr
        1fr
        1.3fr;

    gap: 30px;
}



/* FOOTER LOGO */

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;
}


.logo-symbol.small {

    width: 53px;

    height: 53px;

    font-size: 28px;
}


.footer-logo h2 {

    color: var(--maroon);

    font-size: 23px;
}


.footer-logo span {

    font-family: Arial, sans-serif;

    font-size: 12px;

    color: #333;
}


.footer-about p {

    font-size: 10px;

    line-height: 1.7;

    max-width: 250px;
}



/* SOCIAL */

.social-icons {

    display: flex;

    gap: 7px;

    margin-top: 14px;
}


.social-icons a {

    width: 26px;

    height: 26px;

    background: var(--maroon);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;
}



/* FOOTER COLUMNS */

.footer-column {

    border-left: 1px solid #e2d3bb;

    padding-left: 25px;
}


.footer-column h3 {

    color: var(--maroon);

    font-size: 13px;

    margin-bottom: 13px;
}


.footer-column > a {

    display: block;

    font-size: 10px;

    margin-bottom: 7px;

    color: #352c29;

    transition: .2s;
}


.footer-column > a:hover {

    color: var(--maroon);

    padding-left: 3px;
}


.contact-column p {

    display: flex;

    gap: 8px;

    font-size: 10px;

    line-height: 1.6;

    margin-bottom: 9px;
}


.contact-column i {

    color: var(--maroon);

    margin-top: 3px;

    width: 13px;
}



/* =====================================================
   COPYRIGHT
===================================================== */

.copyright {

    background: #680810;

    color: white;

    padding: 12px 0;

    font-family: Arial, sans-serif;

    font-size: 10px;
}


.copyright-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.copyright a {

    margin: 0 8px;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .navigation {

        gap: 14px;
    }

    .navigation a {

        font-size: 12px;
    }

    .hero-content h2 {

        font-size: 34px;
    }

    .hero-stats {

        gap: 9px;
    }

    .hero-stat strong {

        font-size: 14px;
    }

    .search-form {

        grid-template-columns:
            repeat(4, 1fr);
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .navigation{
        display: none;
    }
    .header-buttons {

        display: flex;
    }

    .mobile-menu {

        display: block;
    }


    .navigation.mobile-open {

        display: flex;

        position: absolute;

        top: 84px;

        left: 0;

        width: 100%;

        height: auto;

        background: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 15px 5%;

        gap: 0;

        box-shadow: 0 8px 20px rgba(0,0,0,.1);
    }


    .navigation.mobile-open a {

        width: 100%;

        height: 45px;

        border-bottom: 1px solid #eee;

        justify-content: flex-start;
    }


    .navigation.mobile-open a::after {

        display: none;
    }


    .hero-content {

        width: 52%;
    }


    .hero-image {

        width: 57%;

        right: -9%;
    }


    .hero-content h2 {

        font-size: 29px;
    }


    .hero-description {

        font-size: 15px;
    }


    .hero-stats {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .search-form {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .content-grid {

        grid-template-columns: 1fr;
    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .top-bar {

        font-size: 9px;

        padding: 7px 15px;
    }


    .top-right {

        display: none;
    }


    .header {

        height: 75px;
    }


    .logo-symbol {

        width: 50px;

        height: 50px;

        font-size: 26px;
    }


    .logo-symbol::before {

        width: 40px;

        height: 40px;
    }


    .logo-content h1 {

        font-size: 22px;

        line-height: 23px;
    }


    .logo-content span {

        font-size: 10px;
    }


    .navigation.mobile-open {

        top: 75px;
    }



    /* HERO */

    .hero {

        min-height: 610px;
    }


    .hero-container {

        min-height: 610px;

        display: block;
    }


    .hero-content {

        width: 100%;

        padding: 25px 5% 0;

        position: relative;

        z-index: 5;
    }


    .hero-content h2 {

        font-size: 27px;

        line-height: 1.35;
    }


    .hero-description {

        font-size: 14px;
    }


    .hero-stats {

        width: 70%;

        margin-top: 15px;

        gap: 8px;
    }


    .round-icon {

        width: 32px;

        height: 32px;

        font-size: 12px;
    }


    .hero-stat strong {

        font-size: 12px;
    }


    .hero-stat small {

        font-size: 8px;
    }


    .hero-buttons {

        margin-top: 15px;

        gap: 8px;
    }


    .hero-register,
    .hero-find {

        padding: 10px 12px;

        font-size: 11px;
    }


    .hero-image {

        width: 100%;

        height: 60%;

        right: 0;

        bottom: 0;

        top: auto;
    }


    .hero-image::before {

        left: 0;

        top: -80px;

        width: 100%;

        height: 150px;

        background: linear-gradient(
            180deg,
            #fff8eb,
            transparent
        );
    }



    /* SEARCH */

    .search-box {

        padding: 12px;

        border-radius: 12px;
    }


    .search-heading h2 {

        font-size: 15px;
    }


    .search-heading {

        gap: 7px;
    }


    .search-heading span {

        font-size: 17px;
    }


    .search-form {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;
    }


    .form-group label {

        font-size: 9px;
    }


    .form-group select {

        font-size: 9px;

        height: 34px;
    }



    /* COUNTERS */

    .counter-section {

        padding: 15px 0;
    }


    .counter-container {

        grid-template-columns: repeat(2, 1fr);

        min-height: auto;
    }


    .counter-item {

        padding: 15px 5px;

        gap: 7px;
    }


    .counter-item:not(:last-child)::after {

        display: none;
    }


    .counter-icon {

        width: 42px;

        height: 42px;

        font-size: 17px;
    }


    .counter-item strong {

        font-size: 17px;
    }


    .counter-item span {

        font-size: 8px;
    }



    /* WHY */

    .why-grid {

        grid-template-columns: 1fr 1fr;
    }


    .why-item h3 {

        font-size: 9px;
    }


    .why-item p {

        font-size: 8px;
    }


/* =====================================================
   SUCCESS STORIES MOBILE - ONE CARD VIEW
===================================================== */

@media (max-width: 600px) {

    .success-section {
        width: 100%;
        margin-top: 20px;
        overflow: hidden;
    }


    .success-title {
        align-items: center;
        margin-bottom: 15px;
    }


    .success-title h2 {
        font-size: 20px;
    }


    .success-title a {
        padding: 6px 12px;
        font-size: 10px;
    }


    .stories-wrapper {
        width: 100%;
        overflow: hidden;
    }


    .stories {

        display: flex;

        width: 100%;

        overflow-x: auto;

        gap: 12px;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        scrollbar-width: none;

        padding-bottom: 5px;
    }


    .stories::-webkit-scrollbar {
        display: none;
    }


    .story-card {

        min-width: 100%;

        width: 100%;

        scroll-snap-align: start;

        flex-shrink: 0;

        border-radius: 10px;
    }


    .story-image {
        height: 230px;
    }


    .story-content {
        padding: 12px;
    }


    .story-content p {

        font-size: 11px;

        min-height: auto;

        line-height: 1.6;
    }


    .story-content strong {

        font-size: 12px;

        margin-top: 7px;
    }


    .story-content small {
        font-size: 10px;
    }


    .quote {

        width: 32px;

        height: 32px;

        font-size: 28px;

        line-height: 36px;
    }


    .slider-dots {
        margin-top: 15px;
    }

}
    /* CTA */

    .cta-container {

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }


    .cta-content h2 {

        font-size: 16px;
    }


    .cta-button {

        font-size: 11px;

        padding: 10px 15px;
    }



    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .footer-column {

        border-left: 0;

        border-top: 1px solid #e2d3bb;

        padding: 15px 0 0;
    }


    .copyright-inner {

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .hero-content h2 {

        font-size: 24px;
    }


    .hero-stats {

        width: 78%;
    }


    .hero-register,
    .hero-find {

        padding: 9px 8px;

        font-size: 10px;
    }


    .search-form {

        gap: 6px;
    }


    .why-grid {

        gap: 5px;
    }

}


/*about */
/* ==============================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==============================
   BODY
================================ */

body {
    font-family: "Poppins", sans-serif;
    background: #eef4ff;
    color: #444;
}


/* ==============================
   ABOUT SECTION
================================ */

.about-section {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 30px;
}


/* ==============================
   MAIN CONTAINER
================================ */

.about-container {
    width: 100%;
    max-width: 1215px;

    background: #ffffff;

    border-radius: 20px;

    padding: 70px 20px 70px 20px;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;

    box-shadow: 0 18px 40px rgba(30, 55, 90, 0.15);
}


/* ==============================
   IMAGE
================================ */

.about-image {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-right: 20px;
}

.about-image img {
    width: 100%;
    max-width: 496px;
    height: 280px;

    object-fit: cover;

    border-radius: 18px;

    display: block;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* ==============================
   CONTENT
================================ */

.about-content {
    padding: 0 40px 0 20px;
}


/* ==============================
   HEADING
================================ */

.about-content h2 {
    font-size: 34px;
    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 10px;
}


/* ABOUT */
.about-title {
    color: #254bb5;
}


/* MARATHI TITLE */
.marathi-title {
    color: #e83939;

    font-family: "Noto Sans Devanagari", sans-serif;

    margin-left: 5px;
}


/* ==============================
   TITLE LINE
================================ */

.title-line {
    width: 81px;
    height: 4px;

    background: #254bb5;

    border-radius: 10px;

    margin-bottom: 38px;
}


/* ==============================
   SUB HEADING
================================ */

.about-content h3 {
    color: #254bb5;

    font-size: 21px;
    font-weight: 600;

    margin-bottom: 10px;

    line-height: 1.5;
}


/* HEARTS */

.heart {
    font-size: 18px;
    margin-left: 3px;
}


/* ==============================
   PARAGRAPH
================================ */

.about-content p {
    font-size: 17px;

    line-height: 1.9;

    text-align: justify;

    margin-bottom: 27px;

    color: #505050;

    font-weight: 400;
}


/* ==============================
   RED TEXT
================================ */

.highlight-red {
    color: #ed3939;

    font-family: "Noto Sans Devanagari", sans-serif;

    font-weight: 500;
}


/* ==============================
   BLUE TEXT
================================ */

.highlight-blue {
    color: #254bb5;

    font-weight: 600;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 1000px) {

    .about-container {
        grid-template-columns: 1fr;

        padding: 50px 35px;
    }

    .about-image {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-image img {
        max-width: 600px;
        height: 320px;
    }

    .about-content {
        padding: 0;
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .about-section {
        padding: 25px 15px;
    }

    .about-container {
        padding: 30px 20px 35px;

        border-radius: 15px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: 220px;

        border-radius: 14px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .marathi-title {
        display: inline;
    }

    .title-line {
        margin-bottom: 25px;
    }

    .about-content h3 {
        font-size: 17px;
    }

    .about-content p {
        font-size: 15px;

        line-height: 1.8;

        text-align: left;

        margin-bottom: 22px;
    }

}


/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .about-content h2 {
        font-size: 22px;
    }

    .about-content h3 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14px;
    }

}


/* search*/

/* =========================================
   FIND YOUR MATCH SECTION
========================================= */

.match-section {
    width: 100%;
    padding: 55px 30px 70px;
    background: #fffaf0;
}


/* =========================================
   HEADING
========================================= */

.match-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 45px;
}

.match-heading h2 {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 30px;
    font-weight: 600;

    color: #7c111b;

    letter-spacing: 1px;
}

.heading-line {
    width: 100px;
    height: 2px;

    background: #c8943d;

    position: relative;
}


/* small red line */

.heading-line::after {
    content: "";

    position: absolute;

    width: 45px;
    height: 2px;

    background: #9b1722;

    top: 5px;
}


/* =========================================
   MAIN CARD
========================================= */

.match-card {
    width: 100%;
    max-width: 1200px;

    margin: auto;

    background: #ffffff;

    border: 1px solid #ead7b1;

    border-radius: 22px;

    padding: 30px 38px 35px;

    box-shadow:
        0 12px 30px rgba(92, 54, 10, 0.10);
}


/* =========================================
   CARD TITLE
========================================= */

.match-card-title {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 30px;
}

.match-card-title h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 600;

    color: #7c111b;
}

.match-card-title span {
    color: #c8943d;

    font-size: 18px;
}


/* =========================================
   FORM GRID
========================================= */

.match-form {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px 28px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    width: 100%;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #6f1018;

    font-size: 14px;

    font-weight: 600;
}


/* =========================================
   SELECT
========================================= */

.form-group select {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #ddc89e;

    border-radius: 8px;

    background: #fffdf8;

    color: #333;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    outline: none;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* SELECT HOVER */

.form-group select:hover {
    border-color: #c8943d;

    background: #fffaf0;
}


/* SELECT FOCUS */

.form-group select:focus {
    border-color: #8d151f;

    box-shadow: 0 0 0 3px rgba(141, 21, 31, 0.08);
}


/* =========================================
   SEARCH BUTTON
========================================= */

.search-button-area {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


.match-search-btn {
    min-width: 190px;

    height: 52px;

    padding: 0 28px;

    border: none;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #8b111b,
        #a91b26
    );

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 7px 16px rgba(139, 17, 27, 0.22);

    transition: all 0.3s ease;
}


/* SEARCH ICON */

.match-search-btn span {
    font-size: 22px;

    margin-right: 7px;

    vertical-align: -2px;
}


/* BUTTON HOVER */

.match-search-btn:hover {
    background: linear-gradient(
        135deg,
        #c8943d,
        #a97825
    );

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(168, 120, 37, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .match-form {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .match-section {
        padding: 40px 15px 50px;
    }

    .match-heading {
        margin-bottom: 30px;

        gap: 8px;
    }

    .match-heading h2 {
        font-size: 21px;
    }

    .heading-line {
        width: 45px;
    }

    .match-card {
        padding: 25px 18px 30px;

        border-radius: 16px;
    }

    .match-card-title h3 {
        font-size: 16px;
    }

    .match-form {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .form-group select {
        height: 48px;
    }

    .search-button-area {
        margin-top: 28px;
    }

    .match-search-btn {
        width: 100%;
    }

}

/* membership*/

/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================================
   BODY
================================ */

body {
    font-family: "Noto Sans Devanagari", sans-serif;

    background: #eef4ff;

    color: #382b25;
}


/* ================================
   MAIN SECTION
================================ */

.plan-section {
    width: 100%;

    padding: 25px 20px 60px;
}


/* ================================
   WHITE CARD
================================ */

.plan-wrapper {
    width: 100%;
    max-width: 970px;

    margin: auto;

    padding: 20px 25px 40px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(30, 50, 80, 0.14);

    border: 1px solid #eadfc8;
}


/* ================================
   HEADER
================================ */

.bureau-header {
    text-align: center;

    margin-bottom: 22px;
}


.bureau-header h1 {
    font-size: 40px;

    font-weight: 800;

    color: #d19a3a;

    margin-bottom: 2px;
}


.bureau-header h1 span {
    color: #7e111b;
}


.bureau-header p {
    font-size: 15px;

    color: #7e111b;

    font-weight: 600;
}


.header-line {
    width: 100%;

    height: 3px;

    background: #7e111b;

    margin: 10px 0;
}


.header-desc {
    max-width: 720px;

    margin: auto;

    color: #443833 !important;

    font-size: 14px !important;

    line-height: 1.7;

    font-weight: 500 !important;
}


/* ================================
   PLAN BOX
================================ */

.plan-box {
    width: 100%;

    margin-top: 15px;

    border: 2px solid #7e111b;

    border-radius: 16px;

    overflow: hidden;

    background: #fffdf8;
}


/* ================================
   PLAN HEADING
================================ */

.plan-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 18px;

    background: #fff3d7;

    border-bottom: 2px solid #c9973e;
}


.plan-label {
    background: #7e111b;

    color: #ffffff;

    padding: 7px 20px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 700;
}


.plan-name {
    background: #c9973e;

    color: #ffffff;

    padding: 7px 30px;

    border-radius: 25px;

    font-size: 22px;

    font-weight: 800;

    box-shadow: 0 3px 7px rgba(0,0,0,0.12);
}


/* ================================
   PLAN 1 PRICE
================================ */

.price-list {
    padding: 12px 35px 5px;
}


.price-row {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    min-height: 43px;

    margin-bottom: 5px;

    border-radius: 7px;

    overflow: hidden;

    background: #7e111b;

    color: #ffffff;
}


.price-row strong {
    text-align: right;

    padding-right: 5px;

    font-size: 21px;
}


.price-row span {
    text-align: center;

    font-size: 16px;
}


.price-row b {
    background: #fff3d7;

    color: #7e111b;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;
}


/* ================================
   DURATION
================================ */

.duration {
    width: 160px;

    margin: 10px auto;

    padding: 7px;

    text-align: center;

    border-radius: 30px;

    background: #f8e7bd;

    border: 1px solid #c9973e;

    color: #7e111b;

    font-size: 13px;
}


.duration strong {
    display: block;

    font-size: 17px;
}


/* ================================
   PLAN POINTS
================================ */

.points {
    padding: 5px 30px 18px;
}


.points p {
    font-size: 14px;

    line-height: 1.8;

    color: #403632;

    margin: 4px 0;
}


/* ================================
   PLAN 2 / 3 PRICE
================================ */

.middle-price {
    margin: 15px 35px;

    padding: 10px 18px;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-radius: 7px;

    background: #7e111b;

    color: #ffffff;

    border: 1px solid #c9973e;
}


.middle-price strong {
    font-size: 25px;
}


.middle-price span {
    font-size: 15px;
}


.middle-price b {
    font-size: 17px;

    color: #f8e7bd;
}


.middle-price small {
    font-size: 12px;

    color: #ffffff;

    padding-left: 10px;

    border-left: 1px solid rgba(255,255,255,0.5);
}


/* ================================
   HOVER
================================ */

.plan-box {
    transition: 0.3s ease;
}


.plan-box:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(126, 17, 27, 0.12);
}


/* ================================
   TABLET
================================ */

@media (max-width: 700px) {

    .plan-wrapper {
        padding: 18px 15px 30px;
    }


    .bureau-header h1 {
        font-size: 30px;
    }


    .plan-heading {
        flex-direction: column;

        gap: 10px;
    }


    .plan-name {
        font-size: 19px;
    }


    .price-list {
        padding: 12px 15px 5px;
    }


    .points {
        padding: 5px 18px 18px;
    }


    .middle-price {
        margin: 15px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 500px) {

    .plan-section {
        padding: 15px 10px 40px;
    }


    .plan-wrapper {
        padding: 15px 10px 25px;

        border-radius: 12px;
    }


    .bureau-header h1 {
        font-size: 24px;
    }


    .bureau-header p {
        font-size: 13px;
    }


    .header-desc {
        font-size: 12px !important;
    }


    .price-list {
        padding: 10px;
    }


    .price-row {
        grid-template-columns: 1fr 1fr 1fr;
    }


    .price-row strong {
        font-size: 16px;
    }


    .price-row span {
        font-size: 13px;
    }


    .price-row b {
        font-size: 13px;
    }


    .points p {
        font-size: 12px;

        line-height: 1.7;
    }


    .middle-price {
        flex-wrap: wrap;

        gap: 7px;

        margin: 12px;
    }


    .middle-price strong {
        font-size: 21px;
    }


    .middle-price small {
        width: 100%;

        text-align: center;

        border-left: none;

        padding: 5px 0 0;
    }

}





/*sign in*/

/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =====================================
   BODY
===================================== */

body {
    font-family: "Poppins", sans-serif;

    background: #fffaf0;

    color: #3d2925;
}


/* =====================================
   LOGIN SECTION
===================================== */

.login-section {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 50px 20px;

    background:
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #f8edd7 100%
        );
}


/* =====================================
   LOGIN CARD
===================================== */

.login-card {

    width: 100%;

    max-width: 900px;

    min-height: 500px;

    display: grid;

    grid-template-columns: 40% 60%;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #ead7ad;

    box-shadow:
        0 18px 45px rgba(89, 31, 25, 0.15);
}


/* =====================================
   LEFT PANEL
===================================== */

.login-left {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 40px 30px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #74101a,
            #951d27
        );
}


/* GOLD DECORATION */

.login-left::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border: 1px solid rgba(201, 151, 62, 0.45);

    border-radius: 50%;

    top: -80px;

    left: -70px;
}


.login-left::after {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    border: 1px solid rgba(201, 151, 62, 0.35);

    border-radius: 50%;

    bottom: -60px;

    right: -45px;
}


/* =====================================
   LOGIN ICON
===================================== */

.login-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c9973e;

    color: #ffffff;

    font-size: 38px;

    margin-bottom: 22px;

    border: 5px solid rgba(255,255,255,0.2);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.2);
}


/* =====================================
   LEFT HEADING
===================================== */

.login-left h1 {

    font-size: 31px;

    font-weight: 700;

    margin-bottom: 8px;
}


.login-subtitle {

    color: #f4dca8;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 12px;
}


.login-description {

    max-width: 270px;

    font-size: 14px;

    line-height: 1.8;

    color: #ffffff;
}


/* =====================================
   FORM SIDE
===================================== */

.login-form {

    padding: 48px 55px;

    background: #ffffff;
}


/* =====================================
   FORM HEADING
===================================== */

.form-heading {

    margin-bottom: 30px;
}


.form-heading h2 {

    font-size: 30px;

    color: #74101a;

    font-weight: 700;

    margin-bottom: 7px;
}


.form-heading p {

    color: #806f65;

    font-size: 14px;
}


/* =====================================
   HEADING LINE
===================================== */

.heading-line {

    width: 65px;

    height: 3px;

    background: #c9973e;

    border-radius: 5px;

    margin-bottom: 8px;
}


/* =====================================
   FORM GROUP
===================================== */

.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-size: 14px;

    font-weight: 600;

    color: #4a3530;

    margin-bottom: 8px;
}


.form-group label span {

    color: #a91c28;
}


/* =====================================
   INPUT & SELECT
===================================== */

.form-group input,
.form-group select {

    width: 100%;

    height: 48px;

    padding: 0 15px;

    border: 1px solid #dccba8;

    border-radius: 7px;

    outline: none;

    background: #fffdf8;

    color: #3d2925;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    transition: 0.3s;
}


.form-group input::placeholder {

    color: #a69b92;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus {

    border-color: #8d151f;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(141, 21, 31, 0.08);
}


/* =====================================
   LOGIN OPTIONS
===================================== */

.login-options {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: -5px;

    margin-bottom: 22px;

    font-size: 12px;
}


.remember {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #75675f;
}


.remember input {

    accent-color: #8d151f;

    cursor: pointer;
}


.login-options a {

    color: #8d151f;

    text-decoration: none;

    font-weight: 600;
}


.login-options a:hover {

    color: #c9973e;

    text-decoration: underline;
}


/* =====================================
   LOGIN BUTTON
===================================== */

.login-btn {

    width: 100%;

    height: 50px;

    border: none;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #7d1019,
            #a91c28
        );

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(125, 16, 25, 0.22);

    transition: 0.3s;
}


.login-btn span {

    margin-left: 8px;

    font-size: 20px;
}


.login-btn:hover {

    background:
        linear-gradient(
            135deg,
            #c9973e,
            #a97928
        );

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(170, 125, 42, 0.25);
}


/* =====================================
   REGISTER TEXT
===================================== */

.register-text {

    text-align: center;

    margin-top: 22px;

    font-size: 13px;

    color: #75675f;
}


.register-text a {

    color: #8d151f;

    font-weight: 700;

    text-decoration: none;

    margin-left: 4px;
}


.register-text a:hover {

    color: #c9973e;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 750px) {

    .login-card {

        grid-template-columns: 1fr;

        max-width: 550px;
    }


    .login-left {

        min-height: 230px;

        padding: 30px 20px;
    }


    .login-icon {

        width: 60px;

        height: 60px;

        font-size: 30px;

        margin-bottom: 12px;
    }


    .login-left h1 {

        font-size: 26px;
    }


    .login-description {

        display: none;
    }


    .login-form {

        padding: 35px 35px 40px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 500px) {

    .login-section {

        padding: 20px 12px;
    }


    .login-card {

        border-radius: 15px;
    }


    .login-left {

        min-height: 190px;

        padding: 25px 15px;
    }


    .login-left h1 {

        font-size: 23px;
    }


    .login-subtitle {

        font-size: 16px;
    }


    .login-form {

        padding: 28px 20px 30px;
    }


    .form-heading h2 {

        font-size: 25px;
    }


    .form-group {

        margin-bottom: 17px;
    }


    .login-options {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    .login-btn {

        height: 48px;
    }

}




/*contact*/


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fffaf0;
    color: #3b2521;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {

    width: 100%;

    padding: 80px 6%;

    background:
        linear-gradient(
            135deg,
            #fffaf0,
            #f8f0df
        );
}


/* =========================================
   MAIN CONTAINER
========================================= */

.contact-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 50px;

    align-items: stretch;
}


/* =========================================
   SECTION LABEL
========================================= */

.section-label {

    display: inline-block;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #7d1019;
}


.gold-line {

    width: 70px;

    height: 3px;

    background: #c9973e;

    margin: 8px 0 22px;

    border-radius: 5px;
}


/* =========================================
   LEFT SIDE
========================================= */

.contact-info {

    padding: 20px 10px;
}


.contact-info h2 {

    font-size: 42px;

    line-height: 1.2;

    color: #5e0b12;

    margin-bottom: 25px;

    font-weight: 700;
}


.contact-info h2 span {

    display: block;

    color: #c9973e;
}


.contact-intro {

    font-size: 15px;

    line-height: 1.8;

    color: #604b45;

    margin-bottom: 18px;

    max-width: 540px;
}


/* =========================================
   CONTACT BOX
========================================= */

.contact-box {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid #ead8b5;

    max-width: 540px;
}


.contact-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #7d1019;

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;

    border: 4px solid #f0dfb9;

    box-shadow: 0 5px 12px rgba(125, 16, 25, 0.15);
}


.contact-box h4 {

    color: #7d1019;

    font-size: 17px;

    margin-bottom: 4px;
}


.contact-box p {

    color: #604b45;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   SOCIAL
========================================= */

.social-section {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;
}


.social-section span {

    color: #7d1019;

    font-weight: 600;

    margin-right: 8px;
}


.social-section a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #7d1019;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}


.social-section a:hover {

    background: #c9973e;

    transform: translateY(-3px);
}


/* =========================================
   RIGHT FORM CARD
========================================= */

.contact-form-card {

    position: relative;

    background: #ffffff;

    padding: 42px;

    border-radius: 22px;

    border: 1px solid #e6d3a9;

    box-shadow:
        0 15px 40px rgba(94, 11, 18, 0.12);

    overflow: hidden;
}


/* GOLD TOP BORDER */

.contact-form-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 6px;

    background:
        linear-gradient(
            90deg,
            #7d1019,
            #c9973e,
            #7d1019
        );
}


/* =========================================
   FORM HEADING
========================================= */

.form-top h2 {

    font-size: 36px;

    line-height: 1.2;

    color: #5e0b12;

    margin-bottom: 12px;
}


.form-top h2 span {

    color: #c9973e;
}


.form-top p {

    color: #705f57;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* =========================================
   INPUT ROW
========================================= */

.input-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.input-group {

    margin-bottom: 18px;
}


.input-group label {

    display: block;

    font-size: 13px;

    font-weight: 600;

    color: #4c3731;

    margin-bottom: 7px;
}


/* =========================================
   INPUT BOX
========================================= */

.input-box {

    height: 50px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 14px;

    background: #fffdf8;

    border: 1px solid #ddcba5;

    border-radius: 8px;

    transition: 0.3s;
}


.input-box i {

    color: #a7792d;

    font-size: 14px;
}


.input-box input {

    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-family: "Poppins", sans-serif;

    color: #3b2521;

    font-size: 13px;
}


.input-box input::placeholder {

    color: #a59a91;
}


.input-box:focus-within {

    border-color: #7d1019;

    box-shadow:
        0 0 0 3px rgba(125, 16, 25, 0.07);
}


/* =========================================
   TEXTAREA
========================================= */

.textarea-box {

    min-height: 130px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    background: #fffdf8;

    border: 1px solid #ddcba5;

    border-radius: 8px;

    transition: 0.3s;
}


.textarea-box i {

    color: #a7792d;

    margin-top: 3px;
}


.textarea-box textarea {

    width: 100%;

    min-height: 100px;

    border: none;

    outline: none;

    resize: vertical;

    background: transparent;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    color: #3b2521;
}


.textarea-box textarea::placeholder {

    color: #a59a91;
}


.textarea-box:focus-within {

    border-color: #7d1019;

    box-shadow:
        0 0 0 3px rgba(125, 16, 25, 0.07);
}


/* =========================================
   SEND BUTTON
========================================= */

.send-btn {

    width: 100%;

    height: 52px;

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #7d1019,
            #a91c28
        );

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    box-shadow:
        0 8px 18px rgba(125, 16, 25, 0.20);

    transition: 0.3s;
}


.send-btn:hover {

    background:
        linear-gradient(
            135deg,
            #c9973e,
            #a97928
        );

    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    .contact-container {

        grid-template-columns: 1fr;

        gap: 30px;

        max-width: 700px;
    }


    .contact-info h2 {

        font-size: 35px;
    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-section {

        padding: 45px 15px;
    }


    .contact-info {

        padding: 10px 5px;
    }


    .contact-info h2 {

        font-size: 29px;
    }


    .contact-form-card {

        padding: 28px 20px;

        border-radius: 16px;
    }


    .form-top h2 {

        font-size: 29px;
    }


    .input-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-box {

        align-items: flex-start;
    }


    .social-section {

        flex-wrap: wrap;
    }

}




/*    find profile    */

        /* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================
   LATEST GROOM SECTION
========================================= */

.latest-grooms {
    width: 100%;
    max-width: 100%;
    
    padding: 40px 25px 50px;

    background: #fff9ec;

    position: relative;

    overflow: hidden;
}


/* Decorative Circle */

.latest-grooms::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(201, 154, 61, 0.18);

    border-radius: 50%;

    top: -120px;
    left: -80px;

    pointer-events: none;
}


.latest-grooms::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(201, 154, 61, 0.15);

    border-radius: 50%;

    bottom: -160px;
    right: -100px;

    pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.groom-heading {
    width: 100%;
    max-width: 1170px;

    margin: 0 auto 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 18px;

    border-bottom: 1px solid #d8b66a;

    position: relative;

    z-index: 2;
}


/* Heading Content */

.heading-content {
    min-width: 0;
}


/* Small Title */

.small-title {
    margin: 0 0 2px;

    color: #c99a3d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Main Heading */

.groom-heading h2 {
    margin: 0;

    color: #8f1717;

    font-size: 27px;

    font-weight: 800;

    line-height: 1.3;
}


/* Subtitle */

.heading-subtitle {
    margin: 3px 0 0;

    color: #76544b;

    font-size: 12px;
}


/* Decoration */

.heading-decoration {
    display: flex;

    align-items: center;

    gap: 4px;

    margin-bottom: 2px;

    color: #c99a3d;
}


.heading-decoration span {
    font-size: 9px;
}


.heading-decoration span:nth-child(2) {
    font-size: 16px;
}


/* =========================================
   VIEW ALL
========================================= */

.view-all-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 11px 19px;

    background: #8f1717;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    border: 1px solid #8f1717;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s ease;
}


.view-all-btn span {
    font-size: 16px;
}


.view-all-btn:hover {
    background: #c99a3d;

    border-color: #c99a3d;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   GROOM CONTAINER
========================================= */

.groom-container {
    width: 100%;
    max-width: 1170px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    position: relative;

    z-index: 2;
}


/* =========================================
   CARD
========================================= */

.groom-card {
    width: 100%;
    min-width: 0;

    position: relative;

    background: #ffffff;

    padding: 9px 10px 14px;

    border-radius: 14px;

    border: 1px solid #dfc68b;

    box-shadow:
        0 6px 18px rgba(80, 35, 20, 0.08);

    overflow: hidden;

    transition: 0.3s ease;
}


/* Top Gold Line */

.groom-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(
        90deg,
        #8f1717,
        #c99a3d,
        #8f1717
    );
}


.groom-card:hover {
    transform: translateY(-6px);

    border-color: #c99a3d;

    box-shadow:
        0 14px 28px rgba(80, 35, 20, 0.14);
}


/* =========================================
   CARD TOP
========================================= */

.card-top {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 4px 0 7px;
}


/* Verified */

.verified-badge {
    display: inline-flex;

    align-items: center;

    background: #fff6dc;

    color: #9a711f;

    border: 1px solid #e3c77d;

    padding: 4px 8px;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 700;
}


/* Heart */

.heart {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff5f2;

    color: #8f1717;

    font-size: 18px;

    cursor: pointer;

    flex-shrink: 0;

    transition: 0.3s ease;
}


.heart:hover {
    background: #8f1717;

    color: #ffffff;
}


/* =========================================
   PROFILE IMAGE
========================================= */

.profile-image {
    width: 100%;

    height: 155px;

    overflow: hidden;

    border-radius: 10px;

    border: 2px solid #c99a3d;

    background: #f7ead0;

    position: relative;
}


.profile-image::after {
    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 7px;

    pointer-events: none;
}


.profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.45s ease;
}


.groom-card:hover .profile-image img {
    transform: scale(1.06);
}


/* =========================================
   NAME
========================================= */

.groom-card h3 {
    width: 100%;

    margin: 9px 0 4px;

    text-align: center;

    color: #8f1717;

    font-size: 17px;

    font-weight: 800;

    line-height: 1.3;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================
   REGISTRATION
========================================= */

.reg-badge {
    text-align: center;

    color: #6d4c43;

    font-size: 10px;

    margin-bottom: 8px;
}


.reg-badge strong {
    color: #8f1717;
}


/* =========================================
   DETAILS
========================================= */

.groom-details {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 0 3px;
}


.detail-item {
    width: 100%;

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 31px;

    padding-bottom: 4px;

    border-bottom: 1px dashed #e5d4af;
}


.detail-icon {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff6dd;

    border: 1px solid #e2c67c;

    font-size: 11px;
}


.detail-item div {
    min-width: 0;

    display: flex;

    flex-direction: column;
}


.detail-item small {
    color: #927a6d;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    line-height: 11px;
}


.detail-item strong {
    color: #3b1712;

    font-size: 11px;

    line-height: 15px;

    font-weight: 700;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================
   VIEW PROFILE BUTTON
========================================= */

.profile-btn {
    width: 82%;

    margin: 11px auto 0;

    padding: 9px 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    background: #8f1717;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    transition: 0.3s ease;
}


.profile-btn span {
    font-size: 14px;
}


.profile-btn:hover {
    background: #c99a3d;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .groom-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        max-width: 760px;
    }

    .groom-heading {
        max-width: 760px;
    }

    .profile-image {
        height: 180px;
    }
}


/* =========================================
   MOBILE
   2 CARDS IN ONE ROW
========================================= */

@media (max-width: 600px) {

    /* Remove horizontal scroll */

    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }


    .latest-grooms {
        width: 100%;
        max-width: 100%;

        padding: 30px 8px 40px;

        overflow: hidden;
    }


    /* Header */

    .groom-heading {
        width: 100%;

        flex-direction: column;

        text-align: center;

        gap: 12px;

        margin-bottom: 20px;

        padding-bottom: 15px;
    }


    .heading-content {
        width: 100%;
    }


    .small-title {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .groom-heading h2 {
        font-size: 21px;

        line-height: 1.25;
    }


    .heading-subtitle {
        font-size: 10px;

        margin-top: 3px;
    }


    .view-all-btn {
        width: 170px;

        padding: 9px 12px;

        font-size: 10px;
    }


    /* =====================================
       IMPORTANT:
       MOBILE = 2 CARDS
    ===================================== */

    .groom-container {
        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    /* Card */

    .groom-card {
        width: 100%;

        min-width: 0;

        padding: 7px 6px 10px;

        border-radius: 10px;

        box-shadow:
            0 4px 12px rgba(80, 35, 20, 0.08);
    }


    /* Card top */

    .card-top {
        margin: 3px 0 5px;
    }


    .verified-badge {
        padding: 3px 5px;

        font-size: 7px;
    }


    .heart {
        width: 23px;
        height: 23px;

        font-size: 15px;
    }


    /* =====================================
       MOBILE IMAGE
    ===================================== */

    .profile-image {
        width: 100%;

        height: 125px;

        border-width: 2px;

        border-radius: 8px;
    }


    .profile-image::after {
        inset: 3px;

        border-radius: 5px;
    }


    /* Name */

    .groom-card h3 {
        margin: 7px 0 3px;

        font-size: 13px;
    }


    /* Registration */

    .reg-badge {
        font-size: 7px;

        margin-bottom: 6px;
    }


    /* Details */

    .groom-details {
        gap: 3px;

        padding: 0 1px;
    }


    .detail-item {
        gap: 5px;

        min-height: 26px;

        padding-bottom: 3px;
    }


    .detail-icon {
        width: 21px;
        height: 21px;

        font-size: 9px;
    }


    .detail-item small {
        font-size: 6px;

        line-height: 8px;

        letter-spacing: 0.3px;
    }


    .detail-item strong {
        font-size: 8px;

        line-height: 11px;
    }


    /* Button */

    .profile-btn {
        width: 90%;

        margin: 8px auto 0;

        padding: 7px 4px;

        font-size: 7px;

        gap: 3px;

        border-radius: 5px;
    }


    .profile-btn span {
        font-size: 11px;
    }
}


/* =========================================
   VERY SMALL MOBILE
   2 CARDS STILL
========================================= */

@media (max-width: 380px) {

    .latest-grooms {
        padding-left: 6px;
        padding-right: 6px;
    }


    .groom-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .profile-image {
        height: 115px;
    }


    .groom-card h3 {
        font-size: 12px;
    }


    .detail-item strong {
        font-size: 7.5px;
    }


    .profile-btn {
        font-size: 6.5px;
    }
}







/**    success_stories */

/* =========================================
   GOOGLE FONT & RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
    background: #f8f5ef;
    color: #292929;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================
   ROOT COLORS
========================================= */

:root {

    --primary: #7d0b12;

    --primary-dark: #56070c;

    --secondary: #a51c25;

    --gold: #c9952e;

    --gold-light: #e6bc63;

    --cream: #f8f5ef;

    --white: #ffffff;

    --text-dark: #2b2525;

    --text-light: #777;

}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: 90%;

    max-width: 1250px;

    margin: auto;

}


/* =========================================
   HERO SECTION
========================================= */

.success-hero {

    position: relative;

    min-height: 340px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(91, 8, 13, 0.93),
            rgba(121, 10, 17, 0.94)
        );

    overflow: hidden;

}


/* Background Pattern */

.success-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    top: -250px;

    left: -150px;

}


.success-hero::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    bottom: -280px;

    right: -100px;

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.small-title {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold-light);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 18px;

}


.success-hero h1 {

    color: white;

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 15px;

}


.success-hero h1 span {

    color: var(--gold-light);

}


.success-hero p {

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;

}


.hero-line {

    width: 100px;

    height: 3px;

    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );

    margin: 25px auto 0;

}


/* =========================================
   SUCCESS SECTION
========================================= */

.success-section {

    padding: 90px 0;

    background:
        radial-gradient(
            circle at top left,
            #fffdf9,
            #f7f1e7
        );

}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;

}


.heading-top {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.section-heading h2 {

    font-size: 36px;

    color: var(--text-dark);

    margin-bottom: 14px;

}


.section-heading h2 span {

    color: var(--primary);

}


.section-heading p {

    color: var(--text-light);

    line-height: 1.8;

    font-size: 15px;

}


/* =========================================
   STORY GRID
========================================= */

.story-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


/* =========================================
   STORY CARD
========================================= */

.story-card {

    position: relative;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(201,149,46,0.25);

    box-shadow:
        0 10px 30px rgba(74, 25, 25, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.story-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(91, 8, 13, 0.16);

}


/* =========================================
   IMAGE
========================================= */

.story-image {

    position: relative;

    height: 330px;

    overflow: hidden;

    background: #eee;

}


.story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.story-card:hover .story-image img {

    transform: scale(1.07);

}


.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(83, 5, 10, 0.4),
            transparent 50%
        );

}


/* =========================================
   SUCCESS BADGE
========================================= */

.success-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 6px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.2);

}


.success-badge i {

    color: var(--gold-light);

}


/* =========================================
   STORY CONTENT
========================================= */

.story-content {

    padding: 28px 25px 25px;

    position: relative;

}


/* Ring Icon */

.couple-icon {

    width: 52px;

    height: 52px;

    background: #fff9ed;

    border: 1px solid var(--gold-light);

    color: var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    margin-top: -55px;

    position: relative;

    z-index: 2;

    margin-bottom: 18px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08);

}


.story-content h3 {

    font-size: 22px;

    color: var(--primary);

    margin-bottom: 10px;

    font-weight: 700;

}


/* =========================================
   LOCATION
========================================= */

.location {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #777;

    font-size: 14px;

}


.location i {

    color: var(--secondary);

}


/* =========================================
   DIVIDER
========================================= */

.divider {

    width: 100%;

    height: 1px;

    background: linear-gradient(
        to right,
        var(--gold-light),
        transparent
    );

    margin: 18px 0;

}


/* =========================================
   DESCRIPTION
========================================= */

.story-content p {

    color: #777;

    font-size: 14px;

    line-height: 1.8;

    min-height: 100px;

}


/* =========================================
   BUTTON
========================================= */

.story-btn {

    margin-top: 15px;

    border: none;

    background: transparent;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: 0.3s;

}


.story-btn i {

    transition: 0.3s;

}


.story-btn:hover {

    color: var(--gold);

}


.story-btn:hover i {

    transform: translateX(6px);

}


/* =========================================
   CTA SECTION
========================================= */

.success-cta {

    width: 90%;

    max-width: 1250px;

    margin: 0 auto 80px;

    padding: 35px 45px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary),
            #9e171f
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    box-shadow:
        0 15px 35px rgba(91,8,13,0.2);

}


.cta-content {

    display: flex;

    align-items: center;

    gap: 20px;

}


.cta-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.3);

    color: var(--gold-light);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}


.cta-content h2 {

    color: white;

    font-size: 25px;

    margin-bottom: 6px;

}


.cta-content p {

    color: rgba(255,255,255,0.75);

    font-size: 14px;

}


.register-btn {

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #e0a83d
        );

    color: white;

    padding: 15px 28px;

    border-radius: 8px;

    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s;

}


.register-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.2);

}


.register-btn i {

    margin-right: 8px;

}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1024px) {

    .story-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {


    .success-hero {

        min-height: 280px;

        padding: 60px 20px;

    }


    .success-hero h1 {

        font-size: 34px;

    }


    .success-hero p {

        font-size: 14px;

    }


    .success-section {

        padding: 60px 0;

    }


    .section-heading {

        margin-bottom: 40px;

    }


    .section-heading h2 {

        font-size: 28px;

    }


    /* MOBILE MEIN SIRF 1 CARD */

    .story-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .story-image {

        height: 380px;

    }


    .story-card {

        width: 100%;

    }


    .success-cta {

        flex-direction: column;

        text-align: center;

        padding: 35px 20px;

    }


    .cta-content {

        flex-direction: column;

    }


    .register-btn {

        width: 100%;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {


    .container {

        width: 92%;

    }


    .success-hero h1 {

        font-size: 29px;

    }


    .small-title {

        font-size: 11px;

    }


    .section-heading h2 {

        font-size: 25px;

    }


    .section-heading p {

        font-size: 13px;

    }


    .story-image {

        height: 330px;

    }


    .story-content {

        padding: 25px 20px;

    }


    .story-content h3 {

        font-size: 20px;

    }


    .story-content p {

        min-height: auto;

    }


    .cta-content h2 {

        font-size: 22px;

    }


    .cta-content p {

        font-size: 13px;

        line-height: 1.7;

    }

}

/* =====================================================
   DYNAMIC SITE LOGO
===================================================== */

.site-logo {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.footer-site-logo {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 65px;
    object-fit: contain;
}

.site-main {
    min-height: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo > div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 150px;
        max-height: 60px;
    }

    .footer-site-logo {
        max-width: 150px;
        max-height: 55px;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    background: #fffaf1;
    border-top: 1px solid #eadfcf;
    padding: 50px 0 35px;
}

.footer-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;

    align-items: start;
}

.footer-column {
    border: 0;
    padding: 0;
    margin: 0;
}

.footer-column h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #9b0613;
}

.footer-column p {
    margin: 0 0 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

.footer-column a {
    color: #444;
    text-decoration: none;
}

.footer-column a:hover {
    color: #9b0613;
}

/* Quick links */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
}

/* Social icons */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8cdbd;
    border-radius: 50%;

    color: #9b0613;
    font-size: 16px;

    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #9b0613;
    color: #fff;
    border-color: #9b0613;
}


/* =========================
   COPYRIGHT
========================= */

.copyright {
    background: #79000a;
    color: #fff;
    padding: 14px 0;
}

.copyright-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright-inner span {
    font-size: 13px;
}

.copyright-inner a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.copyright-inner a:hover {
    text-decoration: underline;
}

.copyright-inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 600px) {

    .footer {
        padding: 35px 0 25px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-column:first-child {
        grid-column: auto;
    }

    .copyright-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

}
/* =====================================================
   AUTH-AWARE HEADER ACCOUNT CHIP
===================================================== */
.header-user {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    padding: 4px 2px;
    border-radius: 12px;
    transition: .2s ease;
}

.header-user:hover {
    color: var(--maroon);
}

.header-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 700 14px/1 Arial, sans-serif;
    flex: 0 0 40px;
}

.header-user-meta {
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.header-user-meta strong {
    font: 600 13px/1.2 Arial, sans-serif;
    color: #312824;
}

.header-user-meta small {
    margin-top: 3px;
    font: 11px/1.2 Arial, sans-serif;
    color: #8a7a71;
}

@media (max-width: 850px) {
    .header-user-meta {
        display: none;
    }

    .header-user-avatar {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media (max-width: 600px) {
    .header-user-avatar {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 13px;
    }
}

/* Membership database-driven plans */
.db-plan-list{display:grid;gap:10px;margin:8px 18px 18px}.db-plan-card{border:1px solid #ead3a3;border-radius:12px;background:#fffaf1;padding:10px 12px}.db-plan-card .price-row{display:grid;grid-template-columns:1.25fr .5fr 1fr;align-items:center;gap:8px;margin:0}.db-plan-card .price-row strong{background:#8d101b;color:#fff;padding:9px 12px;border-radius:7px;text-align:center;font-size:18px}.db-plan-card .price-row span{text-align:center;color:#7b6a61;font-size:12px}.db-plan-card .price-row b{text-align:center;color:#8d101b;font-size:14px}.db-plan-meta{display:flex;gap:14px;align-items:center;flex-wrap:wrap;padding:8px 2px 5px;color:#6b5b53;font-size:12px}.db-plan-meta strong{color:#3f302b}.plan-request-btn{display:inline-flex;align-items:center;justify-content:center;background:#8d101b;color:#fff;text-decoration:none;border-radius:7px;padding:9px 14px;font-size:12px;font-weight:700;margin-top:5px}.plan-request-btn:hover{background:#74101a}.subscription-confirm-modal{position:fixed;inset:0;background:rgba(34,19,16,.58);display:none;align-items:center;justify-content:center;padding:20px;z-index:10000}.subscription-confirm-modal.show{display:flex}.subscription-confirm-box{width:min(460px,100%);background:#fff;border-radius:16px;padding:28px;box-shadow:0 24px 70px rgba(0,0,0,.25);position:relative}.subscription-confirm-box h2{margin:0 0 9px;color:#7a0e18}.subscription-confirm-box p{color:#6b5d55;line-height:1.6}.subscription-confirm-close{position:absolute;right:12px;top:10px;border:0;background:#f7eee7;width:34px;height:34px;border-radius:50%;font-size:22px;color:#7a0e18;cursor:pointer}.subscription-confirm-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:22px}.subscription-confirm-actions button{border-radius:8px;padding:10px 16px;font-weight:700;cursor:pointer}.subscription-confirm-actions .secondary{background:#fff;border:1px solid #d9cfc7;color:#5f514a}.subscription-confirm-actions .primary{background:#8d101b;border:1px solid #8d101b;color:#fff}
@media(max-width:600px){.db-plan-card .price-row{grid-template-columns:1fr}.db-plan-card .price-row span,.db-plan-card .price-row b{text-align:left}.db-plan-card .price-row strong{font-size:16px}.subscription-confirm-box{padding:22px}}


/* Logged-in member header */
.header-member{display:flex;align-items:center;gap:10px;text-decoration:none;color:#3f302b}
.header-member-avatar{width:38px;height:38px;border-radius:50%;background:#c9973e;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;flex-shrink:0}
.header-member-details{display:flex;flex-direction:column;justify-content:center;line-height:1.15}
.header-member-details strong{display:block;font-size:13px;color:#3f302b;white-space:nowrap}
.header-member-details small{display:block;font-size:10px;color:#8c7b72;margin-top:3px}

/* =========================================
   DYNAMIC LATEST ACTIVE PROFILES SLIDER
   Added as an isolated enhancement so the
   existing profile-card design remains intact.
========================================= */

.latest-profiles-slider {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding: 2px 1px 8px;
}

.latest-profiles-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
}

.latest-profile-card {
    flex: 0 0 calc((1170px - 54px) / 4);
    max-width: calc((1170px - 54px) / 4);
    box-sizing: border-box;
}

.latest-profiles-empty {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 35px 20px;
    text-align: center;
    background: rgba(255,255,255,.65);
    border: 1px dashed #d8b66a;
    border-radius: 12px;
    color: #76544b;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .latest-profiles-slider,
    .latest-profiles-empty {
        max-width: 100%;
    }

    .latest-profile-card {
        flex-basis: calc((100vw - 130px) / 4);
        max-width: calc((100vw - 130px) / 4);
    }
}

@media (max-width: 1050px) {
    .latest-profile-card {
        flex-basis: calc((100vw - 68px) / 2);
        max-width: calc((100vw - 68px) / 2);
    }

    .latest-profiles-track {
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .latest-profiles-slider {
        padding: 2px 2px 8px;
    }

    .latest-profile-card {
        flex-basis: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .latest-profiles-track {
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .latest-profile-card {
        flex-basis: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }
}

/* Latest Profiles carousel controls - isolated from existing modules */
.latest-profiles-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}

.latest-profiles-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 12px auto 0;
    min-height: 16px;
}

.latest-profiles-dots.has-dots {
    display: flex;
}

.latest-profile-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    background: #d9c7a1;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}

.latest-profile-dot:hover {
    transform: scale(1.2);
}

.latest-profile-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: #9a0f18;
}

@media (max-width: 600px) {
    .latest-profiles-dots {
        margin-top: 10px;
    }

    .latest-profile-dot {
        width: 7px;
        height: 7px;
    }

    .latest-profile-dot.is-active {
        width: 20px;
    }
}

/* =========================================================
   SMART MEMBER SEARCH - SCOPED TO SEARCH PAGE ONLY
   Compact fixed-height controls + floating multi-select menus
========================================================= */
.smart-search-page {
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 46%, #fff8ec 100%);
    padding-top: 42px;
}

.smart-search-heading { margin-bottom: 28px; }
.smart-search-kicker {
    margin: 0 0 3px;
    color: #c8943d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
}
.smart-search-heading h2 { margin: 0; }

.smart-search-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 34px;
    background: #fff;
    border: 1px solid #ead7b1;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(92, 54, 10, .08);
    overflow: visible;
}

.smart-search-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: linear-gradient(90deg, #fff8e9, #fffdf9);
    border-bottom: 1px solid #f0dfbf;
    border-radius: 22px 22px 0 0;
}
.smart-search-intro > div { display: flex; align-items: center; gap: 14px; }
.smart-search-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: #9b1722; border: 1px solid #dfc487; flex: 0 0 40px;
}
.smart-search-intro h3 { margin: 0 0 4px; color: #7c111b; font-size: 18px; }
.smart-search-intro p { margin: 0; color: #7a6b61; font-size: 12px; }
.smart-search-count { white-space: nowrap; color: #7a6b61; font-size: 12px; }
.smart-search-count strong { color: #9b1722; font-size: 16px; }

.smart-search-form { padding: 22px 26px 24px; position: relative; }
.smart-search-main-row {
    display: grid;
    grid-template-columns: minmax(250px, 1.55fr) minmax(150px, .78fr) minmax(220px, 1.25fr) minmax(190px, 1fr) auto;
    gap: 14px;
    align-items: end;
}
.smart-search-field label,
.smart-multi > label {
    display: block;
    margin-bottom: 7px;
    color: #64483d;
    font-size: 11px;
    font-weight: 700;
}
.smart-field-note { color: #a27d55; font-size: 9px; font-weight: 600; }
.smart-search-field select,
.smart-search-field input {
    width: 100%; height: 48px;
    border: 1px solid #dfcfaf; border-radius: 10px;
    background: #fffdf9; color: #43352f; padding: 0 13px; outline: none;
    font: inherit; font-size: 12px; transition: border-color .2s, box-shadow .2s, background .2s;
}
.smart-search-field select:focus,
.smart-search-field input:focus {
    border-color: #a61a25; box-shadow: 0 0 0 3px rgba(166, 26, 37, .08); background: #fff;
}
.smart-search-input-wrap { position: relative; }
.smart-search-input-wrap > i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #b48430; pointer-events: none;
}
.smart-search-input-wrap input { padding-left: 38px; padding-right: 35px; }
.smart-search-clear {
    position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border: 0; border-radius: 50%;
    background: #f6eee1; color: #7c111b; cursor: pointer; line-height: 1;
}

.smart-search-range { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 7px; }
.smart-search-range span { color: #9b7f5a; font-weight: 700; }
.smart-search-submit,
.smart-search-apply {
    height: 48px; border: 0; border-radius: 10px; padding: 0 18px;
    color: #fff; background: linear-gradient(135deg, #8b111b, #a91b26);
    box-shadow: 0 8px 16px rgba(139, 17, 27, .18);
    font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.smart-search-submit:hover, .smart-search-apply:hover { transform: translateY(-1px); }

/* Custom multi-select -------------------------------------------------- */
.smart-multi { min-width: 0; position: relative; }
.smart-multi-control-wrap { position: relative; }
.smart-multi-control {
    width: 100%; height: 48px; padding: 5px 34px 5px 10px;
    border: 1px solid #dfcfaf; border-radius: 10px; background: #fffdf9;
    color: #43352f; display: flex; align-items: center; gap: 5px;
    cursor: pointer; text-align: left; font: inherit; font-size: 12px;
}
.smart-multi-control:hover, .smart-multi.is-open .smart-multi-control {
    border-color: #a61a25; background: #fff; box-shadow: 0 0 0 3px rgba(166,26,37,.06);
}
.smart-multi-selected {
    min-width: 0; flex: 1; display: flex; align-items: center; gap: 4px; overflow: hidden;
}
.smart-multi-summary { color: #72645b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.smart-multi-tag {
    display: inline-flex; align-items: center; gap: 4px; max-width: 100%;
    border: 1px solid #ead7b8; background: #fff6e6; color: #5f473d;
    border-radius: 999px; padding: 4px 5px 4px 8px; line-height: 1; white-space: nowrap;
}
.smart-multi-tag-text { max-width: 105px; overflow: hidden; text-overflow: ellipsis; }
.smart-multi-tag-remove {
    width: 18px; height: 18px; border: 0; border-radius: 50%;
    background: #8f111b; color: #fff; cursor: pointer; font-size: 13px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 18px;
}
.smart-multi-more {
    flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; padding: 5px 7px; background: #f2e6d3; color: #7c111b;
    font-size: 10px; font-weight: 700;
}
.smart-multi-chevron {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    color: #96704e; transition: transform .18s;
}
.smart-multi.is-open .smart-multi-chevron { transform: translateY(-50%) rotate(180deg); }
.smart-multi-menu {
    position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 1200;
    background: #fff; border: 1px solid #e3cfaa; border-radius: 12px;
    box-shadow: 0 18px 40px rgba(74, 39, 9, .18); padding: 10px;
}
.smart-multi-search { position: relative; margin-bottom: 8px; }
.smart-multi-search i {
    position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: #b48430;
}
.smart-multi-search input {
    width: 100%; height: 38px; box-sizing: border-box; border: 1px solid #ead7b9;
    border-radius: 8px; background: #fffaf2; padding: 0 10px 0 32px; outline: 0;
    color: #43352f; font: inherit; font-size: 11px;
}
.smart-multi-options { max-height: 230px; overflow-y: auto; padding-right: 3px; }
.smart-multi-item {
    min-height: 36px; display: flex; align-items: center; gap: 9px;
    padding: 5px 7px; border-radius: 8px; cursor: pointer; color: #544239; font-size: 11px;
}
.smart-multi-item:hover { background: #fff7e8; }
.smart-multi-item input { position: absolute; opacity: 0; pointer-events: none; }
.smart-multi-check {
    width: 17px; height: 17px; border: 1px solid #d6bd8f; border-radius: 5px;
    display: inline-flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 17px;
    background: #fff;
}
.smart-multi-item input:checked + .smart-multi-check { background: #8f111b; border-color: #8f111b; }
.smart-multi-item input:checked + .smart-multi-check i { opacity: 1; }
.smart-multi-check i { opacity: 0; font-size: 9px; }
.smart-multi-option-label { min-width: 0; }

/* Quick filter row ----------------------------------------------------- */
.smart-search-quick-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    margin-top: 17px; padding-top: 16px; border-top: 1px dashed #ead8b4;
}
.smart-search-quick-label { margin-right: 3px; color: #7c111b; font-size: 11px; font-weight: 700; }
.smart-chip, .smart-filter-toggle {
    min-height: 32px; display: inline-flex; align-items: center; gap: 5px;
    padding: 0 11px; border-radius: 999px; border: 1px solid #ead5ad;
    background: #fffaf0; color: #6c554b; font-size: 10px; font-weight: 600;
    text-decoration: none; cursor: pointer;
}
.smart-chip:hover, .smart-chip.is-active, .smart-filter-toggle:hover {
    background: #7c111b; color: #fff; border-color: #7c111b;
}
.smart-filter-toggle { margin-left: auto; background: #fff; }
.smart-filter-chevron { transition: transform .2s; }
.smart-search-page.advanced-open .smart-filter-chevron { transform: rotate(180deg); }

/* Advanced ------------------------------------------------------------ */
.smart-advanced-filters {
    margin-top: 18px; padding: 20px; background: #fffaf1;
    border: 1px solid #ead9b9; border-radius: 14px; position: relative;
}
.smart-advanced-head, .smart-advanced-actions {
    display: flex; align-items: center; justify-content: space-between; gap: 15px;
}
.smart-advanced-head strong { display: block; color: #7c111b; font-size: 14px; }
.smart-advanced-head span { display: block; margin-top: 3px; color: #7b6b60; font-size: 11px; }
.smart-close-advanced {
    width: 32px; height: 32px; border: 1px solid #ead6b4; border-radius: 50%;
    background: #fff; color: #7c111b; cursor: pointer; font-size: 19px;
}
.smart-advanced-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px;
}
.smart-advanced-actions { justify-content: flex-end; margin-top: 18px; }
.smart-reset { color: #7c111b; font-size: 11px; font-weight: 700; text-decoration: none; }

/* Results ------------------------------------------------------------- */
.smart-results-wrap { width: 100%; max-width: 1180px; margin: 0 auto; }
.smart-results-toolbar {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 14px;
}
.smart-results-title h2 { margin: 0 0 4px; color: #7c111b; font-size: 26px; }
.smart-results-title p:last-child { margin: 0; color: #847268; font-size: 12px; }
.smart-results-actions { display: flex; align-items: center; gap: 10px; }
.smart-sort { display: flex; align-items: center; gap: 7px; color: #725c4e; font-size: 11px; font-weight: 700; }
.smart-sort select {
    height: 36px; min-width: 126px; padding: 0 30px 0 10px; border: 1px solid #dfcfaf;
    border-radius: 8px; background: #fff; color: #4a3a33; font-size: 11px;
}
.smart-view-toggle { display: flex; border: 1px solid #dfcfaf; border-radius: 8px; overflow: hidden; background: #fff; }
.smart-view-toggle button { width: 36px; height: 36px; border: 0; background: #fff; color: #947c68; cursor: pointer; }
.smart-view-toggle button + button { border-left: 1px solid #ead9bc; }
.smart-view-toggle button.is-active { background: #7c111b; color: #fff; }
.smart-info-strip { margin-bottom: 18px; }
.smart-info-strip a { margin-left: auto; color: #7c111b; font-weight: 700; }
.smart-profile-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.smart-profile-card { min-width: 0; overflow: hidden; }
.smart-card-topline { display: flex; gap: 8px; justify-content: space-between; align-items: flex-start; }
.smart-card-topline h3 { flex: 1; min-width: 0; }
.smart-card-heart { color: #c57b71; font-size: 13px; }
.smart-card-meta { gap: 7px 10px; }
.smart-card-education { max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.smart-list-view { grid-template-columns: 1fr !important; }
.smart-list-view .smart-profile-card { display: grid !important; grid-template-columns: 210px 1fr; }
.smart-list-view .smart-profile-card[style*="display: none"] { display: none !important; }
.smart-list-view .public-profile-photo-wrap { min-height: 210px; height: 100%; }
.smart-list-view .public-profile-body { display: flex; flex-direction: column; justify-content: center; padding: 22px 24px; }
.smart-list-view .public-profile-action { max-width: 230px; margin-top: 18px; }
.smart-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 28px 0 6px; }
.smart-pagination button {
    min-width: 34px; height: 34px; padding: 0 8px; border: 1px solid #e3d0ac;
    border-radius: 8px; background: #fff; color: #7c111b; font-size: 11px; font-weight: 700; cursor: pointer;
}
.smart-pagination button.is-active, .smart-pagination button:hover:not(:disabled) { background: #7c111b; border-color: #7c111b; color: #fff; }
.smart-pagination button:disabled { opacity: .4; cursor: default; }
.smart-pagination-ellipsis { color: #9a826f; padding: 0 3px; }
.smart-empty-card { margin-top: 15px; }

@media (max-width: 1100px) {
    .smart-search-main-row { grid-template-columns: 1.3fr .8fr 1.1fr 1fr; }
    .smart-search-submit { grid-column: 1 / -1; width: 100%; }
    .smart-profile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .smart-search-main-row { grid-template-columns: repeat(2, 1fr); }
    .smart-search-name-field { grid-column: 1 / -1; }
    .smart-search-submit { grid-column: 1 / -1; }
    .smart-advanced-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .smart-profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .smart-results-toolbar { align-items: flex-start; flex-direction: column; }
    .smart-multi-menu { width: min(100%, 360px); }
}

@media (max-width: 600px) {
    .smart-search-page { padding: 32px 12px 46px; }
    .smart-search-heading { margin-bottom: 22px; }
    .smart-search-heading h2 { font-size: 21px; }
    .smart-search-shell { border-radius: 16px; }
    .smart-search-intro { align-items: flex-start; padding: 16px; border-radius: 16px 16px 0 0; }
    .smart-search-intro h3 { font-size: 15px; }
    .smart-search-intro p { max-width: 230px; line-height: 1.5; }
    .smart-search-count { font-size: 10px; }
    .smart-search-form { padding: 16px; }
    .smart-search-main-row { grid-template-columns: 1fr; }
    .smart-search-name-field, .smart-search-submit { grid-column: auto; }
    .smart-search-submit { width: 100%; }
    .smart-search-quick-row { align-items: flex-start; }
    .smart-search-quick-label { width: 100%; margin-bottom: 2px; }
    .smart-filter-toggle { margin-left: 0; }
    .smart-advanced-filters { padding: 14px; }
    .smart-advanced-grid { grid-template-columns: 1fr; }
    .smart-advanced-actions { align-items: stretch; flex-direction: column; }
    .smart-search-apply { width: 100%; }
    .smart-results-toolbar { gap: 14px; }
    .smart-results-title h2 { font-size: 21px; }
    .smart-results-actions { width: 100%; }
    .smart-sort { flex: 1; }
    .smart-sort select { width: 100%; }
    .smart-profile-grid { grid-template-columns: 1fr; gap: 14px; }
    .smart-list-view .smart-profile-card { grid-template-columns: 120px 1fr; }
    .smart-list-view .public-profile-photo-wrap { min-height: 170px; }
    .smart-list-view .public-profile-body { padding: 14px; }
    .smart-info-strip { font-size: 10px; line-height: 1.5; }

    .smart-multi-control { height: 50px; }
    .smart-multi-menu { position: fixed; left: 12px; right: 12px; top: 50%; transform: translateY(-50%); width: auto; max-height: min(60vh, 430px); }
    .smart-multi-options { max-height: min(40vh, 300px); }
    .smart-multi-tag-text { max-width: 92px; }
}

/* =========================================================
   HOME SEARCH - DYNAMIC MULTI-SELECT CONTROLS
   Scoped to the maroon homepage search box so other forms are untouched.
========================================================= */
.search-section .home-multi-control {
    height: 35px;
    border: 1px solid #ded8d0;
    border-radius: 6px;
    background: #fff;
    color: #423b38;
    padding: 0 32px 0 10px;
    font-size: 11px;
}
.search-section .home-multi-menu {
    min-width: 100%;
}
.search-section .home-multi-summary {
    font-size: 11px;
}
.search-section .home-multi-tag {
    font-size: 9px;
    padding: 3px 4px 3px 7px;
}
.search-section .home-multi-tag button {
    width: 15px;
    height: 15px;
    font-size: 10px;
}
.search-section .home-multi-count {
    font-size: 9px;
    padding: 4px 6px;
}
@media (max-width: 850px) {
    .search-section .home-multi-menu {
        position: absolute;
        max-height: 260px;
    }
}
