﻿/* =========================================
   SOCIETY HERO SECTION
========================================= */

.society-hero {
    position: relative;
    width: 100%;
    height: 430px;
    background:
    url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1920&auto=format&fit=crop')
    center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* OVERLAY */

.society-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(1,10,30,0.96) 0%,
        rgba(1,20,55,0.84) 38%,
        rgba(1,20,55,0.34) 68%,
        rgba(1,20,55,0.08) 100%
    );
}

/* CONTAINER */

.society-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.society-hero-wrapper {
    width: 100%;
}

/* CONTENT */

.society-hero-content {
    max-width: 560px;
    padding-top: 60px;
}

/* SUBTITLE */

.society-subtitle {
    display: inline-block;
    color: #d9a441;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* TITLE */

.society-hero-content h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* TEXT */

.society-hero-content p {
    color: rgba(255,255,255,0.80);
    font-size: 15px;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 28px;
}

/* =========================================
   BUTTONS
========================================= */

.society-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* BUTTON */

.society-btn-primary,
.society-btn-outline {
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

/* PRIMARY */

.society-btn-primary {
    background: #d9a441;
    color: #ffffff;
}

.society-btn-primary:hover {
    background: #c5902f;
}

/* OUTLINE */

.society-btn-outline {
    border: 1px solid rgba(255,255,255,0.28);
    color: #ffffff;
    background: rgba(255,255,255,0.03);
}

.society-btn-outline:hover {
    background: #ffffff;
    color: #03162f;
}

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

@media (max-width: 991px) {

    .society-hero {
        height: auto;
        padding: 120px 0 80px;
    }

}

@media (max-width: 767px) {

    .society-hero {
        padding: 110px 0 70px;
    }

    .society-hero .container {
        padding: 0 20px;
    }

    .society-hero-content {
        padding-top: 0;
    }

    .society-hero-content h1 {
        font-size: 34px;
    }

    .society-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .society-hero-btns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .society-btn-primary,
    .society-btn-outline {
        width: 100%;
        justify-content: center;
    }

}

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

.society-about-section {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.society-about-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.society-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

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

.society-about-image {
    width: 46%;
}

.society-about-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

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

.society-about-content {
    width: 54%;
}

/* SUBTITLE */

.society-about-subtitle {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* TITLE */

.society-about-content h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #111111;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* TEXT */

.society-about-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* =========================================
   FEATURES
========================================= */

.society-about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* ITEM */

.society-feature-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    transition: 0.4s ease;
}

.society-feature-item:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ICON */

.society-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
}

.society-feature-icon i {
    color: #0A43B8;
    font-size: 18px;
}

/* TITLE */

.society-feature-item h3 {
    font-size: 13px;
    line-height: 1.6;
    color: #111111;
    margin: 0;
    font-weight: 600;
}

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

@media (max-width: 991px) {

    .society-about-wrapper {
        flex-direction: column;
    }

    .society-about-image,
    .society-about-content {
        width: 100%;
    }

    .society-about-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .society-about-section {
        padding: 40px 0;
    }

    .society-about-section .container {
        padding: 0 20px;
    }

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

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

    .society-about-image img {
        height: 240px;
    }

    .society-about-features {
        gap: 12px;
    }

    .society-feature-item {
        padding: 16px 10px;
    }

    .society-feature-item h3 {
        font-size: 12px;
    }

}

/* =========================================
   SOCIETY SERVICES SECTION
========================================= */

.society-services-section {
    position: relative;
    padding: 45px 0;
    background: #f8fafc;
}

.society-services-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

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

.society-services-title {
    text-align: center;
    margin-bottom: 28px;
}

.society-services-title span {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.society-services-title h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.society-title-line {
    width: 45px;
    height: 3px;
    background: #0A43B8;
    border-radius: 30px;
    margin: auto;
}

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

.society-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

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

.society-service-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.4s ease;
}

.society-service-card:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* ICON */

.society-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 14px;
}

.society-service-icon i {
    color: #0A43B8;
    font-size: 20px;
}

/* TITLE */

.society-service-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */

.society-service-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

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

@media (max-width: 991px) {

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

}

@media (max-width: 767px) {

    .society-services-section {
        padding: 40px 0;
    }

    .society-services-section .container {
        padding: 0 20px;
    }

    .society-services-title h2 {
        font-size: 24px;
    }

    .society-services-grid {
        gap: 12px;
    }

    .society-service-card {
        padding: 18px 12px;
    }

    .society-service-icon {
        width: 46px;
        height: 46px;
    }

    .society-service-icon i {
        font-size: 18px;
    }

    .society-service-card h3 {
        font-size: 14px;
    }

    .society-service-card p {
        font-size: 12px;
        line-height: 1.6;
    }

}

/* =========================================
   TRUST + PROCESS SECTION
========================================= */

.society-trust-process-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* FULL WIDTH */

.society-trust-process-section .container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* WRAPPER */

.society-trust-process-wrapper {
    display: grid;
    grid-template-columns: 34% 66%;
}

/* =========================================
   LEFT TRUST BOX
========================================= */

.society-trust-box {
    background: #ffffff;
    padding: 42px 38px;
}

/* SMALL TITLE */

.society-small-title {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* HEADING */

.society-trust-box h2,
.society-process-box h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

/* TRUST HEADING */

.society-trust-box h2 {
    color: #111111;
}

/* LIST */

.society-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.society-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.society-trust-list li i {
    color: #0A43B8;
    margin-top: 4px;
    font-size: 15px;
}

/* =========================================
   RIGHT PROCESS BOX
========================================= */

.society-process-box {
    position: relative;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    padding: 42px 38px;
    overflow: hidden;
}

/* OVERLAY */

.society-process-overlay {
    position: absolute;
    inset: 0;
    background:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop')
    center center/cover no-repeat;
    opacity: 0.05;
}

/* CONTENT */

.society-process-box > * {
    position: relative;
    z-index: 2;
}

/* PROCESS TITLE */

.process-title {
    color: #4d7fff;
}

.society-process-box h2 {
    color: #ffffff;
}

/* =========================================
   PROCESS GRID
========================================= */

.society-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* LINE */

.society-process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.16);
}

/* ITEM */

.society-process-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* ICON */

.society-process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0A43B8;
    border: 4px solid #061b38;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
}

.society-process-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* NUMBER */

.society-process-item span {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* TITLE */

.society-process-item h3 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 700;
}

/* TEXT */

.society-process-item p {
    color: rgba(255,255,255,0.70);
    font-size: 12px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 150px;
}

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

@media (max-width: 1199px) {

    .society-trust-process-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .society-trust-box,
    .society-process-box {
        padding: 36px 20px;
    }

    .society-trust-box h2,
    .society-process-box h2 {
        font-size: 24px;
    }

    .society-trust-list li {
        font-size: 13px;
    }

    .society-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .society-process-grid::before {
        display: none;
    }

    .society-process-item h3 {
        font-size: 14px;
    }

    .society-process-item p {
        font-size: 11px;
    }

}

/* =========================================
   REQUIRED DOCUMENTS SECTION
========================================= */

.society-required-documents {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.society-required-documents .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

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

.society-required-title {
    text-align: center;
    margin-bottom: 28px;
}

.society-required-title span {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.society-required-title h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #111111;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

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

.society-required-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

/* ITEM */

.society-required-item {
    padding: 24px 18px;
    text-align: center;
    position: relative;
}

/* BORDER */

.society-required-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: #e9e9e9;
}

/* ICON */

.society-required-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 14px;
}

.society-required-icon i {
    color: #0A43B8;
    font-size: 20px;
}

/* TITLE */

.society-required-item h3 {
    font-size: 15px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */

.society-required-item p {
    font-size: 12px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

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

@media (max-width: 1199px) {

    .society-required-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .society-required-item:nth-child(3)::after {
        display: none;
    }

}

@media (max-width: 767px) {

    .society-required-documents {
        padding: 40px 0;
    }

    .society-required-documents .container {
        padding: 0 20px;
    }

    .society-required-title h2 {
        font-size: 24px;
    }

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

    .society-required-item {
        padding: 18px 12px;
    }

    .society-required-item::after {
        display: none;
    }

    .society-required-icon {
        width: 46px;
        height: 46px;
    }

    .society-required-icon i {
        font-size: 18px;
    }

    .society-required-item h3 {
        font-size: 13px;
    }

    .society-required-item p {
        font-size: 11px;
        line-height: 1.6;
    }

}

/* =========================================
   FAQ SECTION
========================================= */

.society-faq-section {
    position: relative;
    padding: 45px 0;
    background: #f5f7fb;
}

.society-faq-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.society-faq-wrapper {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    gap: 24px;
}

/* =========================================
   FAQ BOX
========================================= */

.society-faq-box {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 26px;
}

/* SUBTITLE */

.society-faq-subtitle {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* TITLE */

.society-faq-box h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   FAQ ITEM
========================================= */

.society-faq-item {
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
}

/* QUESTION BUTTON */

.society-faq-question {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e3e8f2;
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: 0.4s ease;
}

/* HOVER */

.society-faq-question:hover {
    border-color: #0A43B8;
}

/* QUESTION TEXT */

.society-faq-question span {
    font-size: 14px;
    line-height: 1.6;
    color: #111111;
    font-weight: 600;
    text-align: left;
}

/* ICON */

.society-faq-question i {
    color: #0A43B8;
    font-size: 14px;
    transition: 0.3s ease;
}

/* =========================================
   FAQ ANSWER
========================================= */

.society-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f7faff;
    border-left: 2px solid #0A43B8;
    border-right: 1px solid #dbe7ff;
    border-bottom: 1px solid #dbe7ff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0 20px;
    margin-top: -2px;
}

/* ANSWER TEXT */

.society-faq-answer p {
    font-size: 14px;
    line-height: 1.9;
    color: #3d4b66;
    padding: 18px 0;
    margin: 0;
}

/* ACTIVE FAQ */

.society-faq-item.active .society-faq-answer {
    max-height: 220px;
}

/* ACTIVE QUESTION */

.society-faq-item.active .society-faq-question {
    border-color: #0A43B8;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #ffffff;
}

/* ACTIVE ICON */

.society-faq-item.active .society-faq-question i {
    transform: rotate(45deg);
    color: #0A43B8;
}

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

.society-cta-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 100%;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    display: flex;
    align-items: center;
}

/* OVERLAY */

.society-cta-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(3,22,47,0.94) 0%,
        rgba(6,27,56,0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1400&auto=format&fit=crop')
    center center/cover no-repeat;
    opacity: 1;
}

/* CONTENT */

.society-cta-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

/* TITLE */

.society-cta-content h2 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* TEXT */

.society-cta-content p {
    color: rgba(255,255,255,0.80);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 480px;
}

/* BUTTONS */

.society-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* CALL BUTTON */

.society-call-btn {
    background: #d9a441;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.society-call-btn:hover {
    background: #c5902f;
}

/* WHATSAPP BUTTON */

.society-whatsapp-btn {
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.society-whatsapp-btn:hover {
    background: #ffffff;
    color: #03162f;
}

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

@media (max-width: 991px) {

    .society-faq-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .society-faq-section {
        padding: 40px 0;
    }

    .society-faq-section .container {
        padding: 0 20px;
    }

    .society-faq-box {
        padding: 22px 18px;
    }

    .society-faq-box h2 {
        font-size: 24px;
    }

    .society-faq-question {
        padding: 14px;
    }

    .society-faq-question span {
        font-size: 13px;
    }

    .society-faq-answer p {
        font-size: 13px;
        line-height: 1.8;
    }

    .society-cta-content {
        padding: 30px 22px;
    }

    .society-cta-content h2 {
        font-size: 30px;
    }

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

    .society-cta-btns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .society-call-btn,
    .society-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

}