/*
Theme Name: Astra Child
Theme URI: https://yourwebsite.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: Custom child theme for Astra
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ============================================
   VARIABLES
   ============================================ */
:root {
    --color-primary: #1a5276;
    --color-secondary: #2e86c1;
    --color-text: #2c3e50;
    --color-gold: #f5d88d;
    --color-brown: #463206;
    --color-white: #ffffff;
    --font-body: 'Roboto', Arial, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
}

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

/* ============================================
   REMOVE ASTRA SPACING
   ============================================ */
.site-content,
.ast-container,
#primary,
.site-main,
.ast-page-builder-template .site-content,
.ast-single-post .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button--primary {
    background: var(--color-primary);
    color: white;
}

.button--primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.button--secondary:hover {
    background: white;
    color: var(--color-primary);
}

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

.hero {
    width: 100%;
    min-height: 100vh;
    /* REMOVED: background-image: url('...'); */
    /* Background is now set dynamically from ACF */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px !important;
    padding-right: 100px !important;
    padding-bottom: 0 !important;
    padding-left: 100px !important;
    color: var(--color-white);
    position: relative;
}

/* Dark overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

/* Hero Content - Original Style */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

/* Hero Title */
.hero__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding-top: 10px;
}

.hero__description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    max-width: 700px;
    margin: 0;
}

/* Hero Button */
.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 256px;
    height: 50px;
    padding: 12px 24px;
    margin-top: 20px;
    background: linear-gradient(122.51deg, #8A794C 48.81%, #D0C093 125.36%);
    border: none;
    border-radius: 43px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.hero__button:hover {
    background: linear-gradient(122.51deg, #9A895C 48.81%, #E0D0A3 125.36%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 121, 76, 0.4);
    color: #FFFFFF;
}

.hero__button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.hero__button:hover .button-icon {
    transform: translateX(4px);
}

/* ============================================
   HERO IMAGE SUB-SECTION - 25% / 50% / 25%
   ============================================ */

.hero__image-subsection {
    width: 100%;
    margin-top: 50px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero__image-subcontainer {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 0;
}

/* LEFT COLUMN - 25% (2 Counters - Right Aligned, 150px gap) */
.hero__image-left {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Right align */
    gap: 150px; /* 150px space between counters */
    padding-right: 20px;
    justify-content: center;
}

/* CENTER COLUMN - 50% (Image) */
.hero__image-center {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* RIGHT COLUMN - 25% (1 Counter - Vertical Center, Left Align) */
.hero__image-right {
    grid-column: 3 / 4;
    display: flex;
    justify-content: flex-start; /* Left align */
    align-items: center; /* Vertical center */
    padding-left: 20px;
    min-height: 100%;
}

/* Hero Image */
.hero__image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HERO COUNTERS - Figma Specs
   ============================================ */

.hero__counter {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 190px;
    height: 55px;
    padding: 16px 24px 19px 24px;
    background: #D9D9D959;
    border: 1px solid transparent;
    border-radius: 48.5px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-clip: padding-box;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Gradient Border */
.hero__counter::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 48.5px;
    padding: 2px;
    background: linear-gradient(137.21deg, #FFFFFF -29.95%, rgba(255, 255, 255, 0.2) 175.82%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.hero__counter > * {
    position: relative;
    z-index: 1;
}

.hero__counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Counter Number */
.hero__counter-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 23px;
    line-height: 40px;
    letter-spacing: -3%;
    background: linear-gradient(90deg, #BEAE82 0%, #BEAE82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* Counter Label - Left Align */
.hero__counter-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 4%;
    text-align: left; /* Left align */
    background: linear-gradient(90deg, #BEAE82 0%, #BEAE82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Large tablets */
@media (max-width: 1200px) {
    .hero {
        padding-top: 70px !important;
        padding-right: 60px !important;
        padding-left: 60px !important;
    }
    .hero__image-subcontainer {
        grid-template-columns: 20% 60% 20%;
    }
    .hero__image-left {
        gap: 100px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        padding-top: 60px !important;
        padding-right: 40px !important;
        padding-left: 40px !important;
        min-height: 80vh;
    }
    .hero__image-subcontainer {
        grid-template-columns: 10% 80% 10%;
    }
    .hero__title {
        font-size: 48px;
        line-height: 56px;
    }
    .hero__image-wrapper {
        max-width: 400px;
    }
    .hero__counter {
        width: 200px;
        height: 68px;
        padding: 14px 20px 16px 20px;
        border-radius: 40px;
    }
    .hero__counter::before {
        border-radius: 40px;
    }
    .hero__counter-number {
        font-size: 28px;
        line-height: 36px;
    }
    .hero__counter-label {
        font-size: 16px;
        line-height: 17px;
    }
    .hero__image-left {
        gap: 80px;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .hero {
        padding-top: 50px !important;
        padding-right: 30px !important;
        padding-left: 30px !important;
        min-height: 70vh;
    }
    .hero__image-subcontainer {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hero__image-left {
        grid-column: 1 / 2;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding-right: 0;
    }
    .hero__image-center {
        grid-column: 1 / 2;
        padding: 0;
    }
    .hero__image-right {
        grid-column: 1 / 2;
        justify-content: center;
        padding-left: 0;
    }
    .hero__title {
        font-size: 40px;
        line-height: 48px;
    }
    .hero__image-wrapper {
        max-width: 350px;
    }
    .hero__counter {
        width: 180px;
        height: 60px;
        padding: 12px 16px 14px 16px;
        border-radius: 35px;
        gap: 12px;
    }
    .hero__counter::before {
        border-radius: 35px;
    }
    .hero__counter-number {
        font-size: 24px;
        line-height: 30px;
    }
    .hero__counter-label {
        font-size: 14px;
        line-height: 15px;
    }
    .hero__image-subsection {
        margin-top: 30px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .hero {
        padding-top: 40px !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
        min-height: 100vh;
    }
    .hero__title {
        font-size: 32px;
        line-height: 38px;
    }
    .hero__description {
        font-size: 14px;
        line-height: 20px;
    }
    .hero__image-wrapper {
        max-width: 280px;
    }
    .hero__image-left {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .hero__image-right {
        justify-content: center;
    }
    .hero__counter {
        width: 100%;
        max-width: 225px;
        height: 55px;
        padding: 10px 14px 12px 14px;
        border-radius: 30px;
        gap: 10px;
        justify-content: center;
    }
    .hero__counter::before {
        border-radius: 30px;
    }
    .hero__counter-number {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -2%;
    }
    .hero__counter-label {
        font-size: 13px;
        line-height: 14px;
        letter-spacing: 3%;
    }
    .hero__button {
        width: 100%;
        max-width: 280px;
        height: 48px;
        font-size: 0.85rem;
    }
    .hero__image-subsection {
        margin-top: 20px;
    }
}

/* Small mobile phones */
@media (max-width: 400px) {
    .hero {
        padding-top: 30px !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }
    .hero__title {
        font-size: 26px;
        line-height: 32px;
    }
    .hero__description {
        font-size: 13px;
        line-height: 18px;
    }
    .hero__image-wrapper {
        max-width: 220px;
    }
    .hero__counter {
        max-width: 100%;
        height: 50px;
        padding: 8px 12px 10px 12px;
        border-radius: 25px;
        gap: 8px;
    }
    .hero__counter::before {
        border-radius: 25px;
    }
    .hero__counter-number {
        font-size: 20px;
        line-height: 26px;
    }
    .hero__counter-label {
        font-size: 12px;
        line-height: 13px;
    }
    .hero__button {
        height: 44px;
        font-size: 0.8rem;
        max-width: 100%;
    }
}

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

.services {
    padding: 0px 40px;
	padding-bottom: 90px;
    background: #000000;
    width: 100%;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 82px;
    letter-spacing: -2px;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

.services__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #9A9A9A;
    margin: 0;
}

/* Two Column Layout */
.services__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Image */
.services__image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Right Column - Boxes */
.services__boxes-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    max-width: 500px;
}

/* Service Box */
.services__box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(26.4px);
    -webkit-backdrop-filter: blur(26.4px);
    border-radius: 26.4px;
    border: 1px ;
    padding: 35px 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    position: relative;
    transition: all 0.3s ease;
}

/* Gradient Border */
.services__box::before {
    content: '';
    position: absolute;
    inset: -2.64px;
    border-radius: 26.4px;
    padding: 2.64px;
    background: linear-gradient(137.21deg, #8A794C -29.95%, #463206 175.82%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.services__box > * {
    position: relative;
    z-index: 1;
}

.services__box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Box Icon - NO FILTER */
.services__box-icon {
    width: 60px;
    height: 60px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    
}

.services__box-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    /* FILTER REMOVED - Shows original colors */
}

/* Box Title */
.services__box h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15.76px;
    line-height: 33px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Image Placeholder */
.services__image-placeholder {
    width: 100%;
    max-width: 500px;
    padding: 60px 20px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 2px dashed #444;
    text-align: center;
    color: #888;
    font-family: 'Roboto', sans-serif;
}

.services__image-placeholder p {
    margin: 5px 0;
}

.services__image-placeholder p:first-child {
    font-size: 18px;
    color: #aaa;
}

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

@media (max-width: 992px) {
    .services {
        padding: 60px 30px;
    }

    .services__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services__image {
        max-width: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .services__boxes-grid {
        max-width: 100%;
    }

    .services__box {
        min-height: 180px;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 20px;
    }

    .services__title {
        font-size: 36px;
        line-height: 48px;
    }

    .services__description {
        font-size: 15px;
    }

    .services__boxes-grid {
        gap: 16px;
    }

    .services__box {
        min-height: 160px;
        padding: 20px 16px;
        border-radius: 20px;
    }

    .services__box::before {
        border-radius: 20px;
        inset: -2px;
        padding: 2px;
    }

    .services__box-icon {
        width: 60px;
        height: 60px;
    }

    .services__box-icon img {
        width: 30px;
        height: 30px;
    }

    .services__box h3 {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 30px 15px;
    }

    .services__title {
        font-size: 28px;
        line-height: 38px;
    }

    .services__description {
        font-size: 14px;
        line-height: 20px;
    }

    .services__layout {
        gap: 30px;
    }

    .services__boxes-grid {
        gap: 12px;
    }

    .services__box {
        min-height: 140px;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .services__box::before {
        border-radius: 16px;
        inset: -1.5px;
        padding: 1.5px;
    }

    .services__box-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .services__box-icon img {
        width: 25px;
        height: 25px;
    }

    .services__box h3 {
        font-size: 15px;
        line-height: 22px;
    }
}

/* ============================================
   TESTIMONIALS SECTION - Two Column Layout
   ============================================ */

.testimonials {
    padding: 80px 40px;
    background: #151516;
    width: 100%;
    box-sizing: border-box;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Two Column Layout */
.testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   LEFT COLUMN - Background Image with Alternating Cards
   ============================================ */

.testimonials__left {
    width: 100%;
    box-sizing: border-box;
}

.testimonials__left-inner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Background Image - Centered */
.testimonials__left-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    z-index: 0;
}

.testimonials__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Testimonials Cards Overlay */
.testimonials__left-overlay {
    position: relative;
    z-index: 1;
    padding: 30px 25px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: transparent;
}

.testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Card - 300px Width with Alternating Alignment */
.testimonials__card {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 22px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 370px;
    max-width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Odd cards (1, 3, 5...) - Left aligned */
.testimonials__card:nth-child(odd) {
    align-self: flex-start;
    margin-right: auto;
}

/* Even cards (2, 4, 6...) - Right aligned */
.testimonials__card:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
}

.testimonials__card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

/* For even cards, hover moves left instead of right */
.testimonials__card:nth-child(even):hover {
    transform: translateX(-5px);
}

/* Client Image */
.testimonials__client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials__client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials__client-image--placeholder {
    background: linear-gradient(135deg, #463206, #8A794C);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__client-image--placeholder span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.testimonials__card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonials__client-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2d2208;
    margin: 0 0 3px;
}

.testimonials__review {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #555555;
    margin: 0;
}

/* ============================================
   RIGHT COLUMN
   ============================================ */

.testimonials__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center; /* Vertical center alignment */
    align-items: flex-start; /* Horizontal alignment (left) */
    min-height: 100%; /* Ensures it takes full height of parent */
    height: 100%;
}

.testimonials__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 82px;
    letter-spacing: -2px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

@supports not (background-clip: text) {
    .testimonials__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

.testimonials__right-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #9A9A9A;
}

.testimonials__right-text p {
    margin: 0;
}

.testimonials__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
}

.testimonials__feature-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 12px;
}

.testimonials__feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.testimonials__feature-content {
    flex: 1;
}

.testimonials__feature-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 4px;
}

@supports not (background-clip: text) {
    .testimonials__feature-heading {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

.testimonials__feature-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #9A9A9A;
    margin: 0;
}

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

@media (max-width: 1200px) {
    .testimonials__title {
        font-size: 48px;
        line-height: 62px;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 60px 30px;
    }

    .testimonials__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials__title {
        font-size: 42px;
        line-height: 56px;
    }

    .testimonials__left-inner {
        min-height: 400px;
    }

    .testimonials__left-overlay {
        min-height: 400px;
        padding: 25px 20px;
    }

    .testimonials__left-bg {
        width: 60%;
        height: 60%;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 20px;
    }

    .testimonials__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .testimonials__left-inner {
        min-height: 350px;
    }

    .testimonials__left-overlay {
        min-height: 350px;
        padding: 20px 16px;
    }

    .testimonials__left-bg {
        width: 50%;
        height: 50%;
    }

    .testimonials__card {
        width: 280px;
        padding: 14px 16px;
        gap: 12px;
    }

    .testimonials__client-image {
        width: 42px;
        height: 42px;
    }

    .testimonials__client-name {
        font-size: 14px;
    }

    .testimonials__review {
        font-size: 12px;
        line-height: 18px;
    }

    .testimonials__right-text {
        font-size: 15px;
        line-height: 24px;
    }

    .testimonials__feature-heading {
        font-size: 17px;
        line-height: 24px;
    }

    .testimonials__feature-description {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 30px 15px;
    }

    .testimonials__layout {
        gap: 30px;
    }

    .testimonials__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .testimonials__left-inner {
        min-height: 300px;
    }

    .testimonials__left-overlay {
        min-height: 300px;
        padding: 16px 12px;
    }

    .testimonials__left-bg {
        width: 40%;
        height: 40%;
    }

    .testimonials__list {
        gap: 12px;
    }

    .testimonials__card {
        width: 100%;
        max-width: 300px;
        padding: 12px 14px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Center all cards on mobile */
    .testimonials__card:nth-child(odd),
    .testimonials__card:nth-child(even) {
        align-self: center;
        margin: 0 auto;
    }

    .testimonials__card:nth-child(even):hover {
        transform: translateY(-3px);
    }

    .testimonials__client-image {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .testimonials__client-name {
        font-size: 14px;
    }

    .testimonials__review {
        font-size: 12px;
        line-height: 18px;
    }

    .testimonials__right-text {
        font-size: 14px;
        line-height: 22px;
    }

    .testimonials__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .testimonials__feature-icon {
        width: 50px;
        height: 50px;
    }

    .testimonials__feature-icon img {
        width: 28px;
        height: 28px;
    }

    .testimonials__feature-heading {
        font-size: 16px;
        line-height: 22px;
    }

    .testimonials__feature-description {
        font-size: 13px;
        line-height: 20px;
    }
}

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

.cta-section {
    padding: 80px 40px;
    background: #000000;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Two Column Layout - Vertically Centered */
.cta-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   LEFT COLUMN
   ============================================ */

.cta-section__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Title - Exact Figma Specs */
.cta-section__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: -2px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

@supports not (background-clip: text) {
    .cta-section__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

/* Description - Exact Figma Specs */
.cta-section__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #8A794C;
    margin: 0;
    max-width: 500px;
}

/* Button - Figma Specs */
.cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 168px;
    height: 56px;
    padding: 12px 24px;
    background: linear-gradient(122.51deg, #8A794C 48.81%, #D0C093 125.36%);
    border: none;
    border-radius: 43px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.cta-section__button:hover {
    background: linear-gradient(122.51deg, #9A895C 48.81%, #E0D0A3 125.36%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 121, 76, 0.4);
    color: #FFFFFF;
}

.cta-section__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.cta-section__button:hover .cta-section__button-icon {
    transform: translateX(4px);
}

.cta-section__button:focus {
    outline: none;
}

.cta-section__button:active {
    transform: scale(0.97);
}

/* ============================================
   RIGHT COLUMN - Image (Right Aligned)
   ============================================ */

.cta-section__right {
    display: flex;
    justify-content: flex-end; /* Right align the image */
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-section__image-wrapper {
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-left: auto; /* Push to the right */
}

.cta-section__image {
    width: 90%;
    height: auto;
    display: block;
}

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

@media (max-width: 992px) {
    .cta-section {
        padding: 60px 30px;
        min-height: auto;
    }

    .cta-section__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section__title {
        font-size: 48px;
        line-height: 62px;
    }

    .cta-section__description {
        max-width: 100%;
    }

    .cta-section__image-wrapper {
        max-width: 100%;
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-section__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .cta-section__description {
        font-size: 15px;
        line-height: 22px;
    }

    .cta-section__button {
        width: 100%;
        max-width: 200px;
        height: 50px;
        font-size: 0.85rem;
    }

    .cta-section__right {
        order: -1; /* Image goes above on mobile */
    }

    .cta-section__image-wrapper {
        max-width: 100%;
        max-height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-section__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .cta-section__description {
        font-size: 14px;
        line-height: 20px;
        color: #8A794C;
    }

    .cta-section__button {
        width: 100%;
        max-width: 100%;
        height: 48px;
        font-size: 0.85rem;
    }

    .cta-section__image-wrapper {
        max-height: 250px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    padding: 80px 40px;
    background: #161615;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-us__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Section Header - Center */
.why-choose-us__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Section Title - SAME STYLE AS FEATURE HEADING */
.why-choose-us__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 62px;
    line-height: 82px;
    letter-spacing: -2px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    display: inline-block;
}

/* Fallback for non-webkit browsers */
@supports not (background-clip: text) {
    .why-choose-us__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

/* Description */
.why-choose-us__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Two Column Layout - Left and Right Space 200px */
.why-choose-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Small gap between columns */
    width: 100%;
    box-sizing: border-box;
    padding-left: 170px; /* 200px space on left side */
    padding-right: 100px; /* 200px space on right side */
	padding-top: 40px;
}

/* Feature Column */
.why-choose-us__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Feature Box */
.why-choose-us__feature {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 0;
	margin-bottom: 20px;
    width: 250px;
    max-width: 100%;
}

/* 2nd box in each column - Left space 50px */
.why-choose-us__column .why-choose-us__feature:nth-child(2) {
    margin-left: 50px;
}

/* Feature Icon */
.why-choose-us__feature-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 12px;
    margin-top: 2px;
    margin-right: 0;
}

.why-choose-us__feature-icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    display: block;
}

/* Feature Content */
.why-choose-us__feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

/* Feature Heading - WORKING STYLE */
.why-choose-us__feature-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

@supports not (background-clip: text) {
    .why-choose-us__feature-heading {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

/* Feature Divider - Border between heading and description */
.why-choose-us__feature-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #BEAE82;
    margin: 8px 0 8px 0;
    display: block;
}

/* Feature Description */
.why-choose-us__feature-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

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

@media (max-width: 1200px) {
    .why-choose-us__layout {
        gap: 100px;
    }
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 60px 30px;
    }

    .why-choose-us__title {
        font-size: 48px;
        line-height: 62px;
    }

    .why-choose-us__description {
        font-size: 17px;
    }

    .why-choose-us__layout {
        gap: 60px;
    }

    .why-choose-us__feature {
        width: 220px;
    }

    .why-choose-us__column .why-choose-us__feature:nth-child(2) {
        margin-left: 30px;
    }

    .why-choose-us__feature-heading {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 50px 20px;
    }

    .why-choose-us__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .why-choose-us__description {
        font-size: 16px;
    }

    .why-choose-us__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-us__column {
        gap: 25px;
        align-items: center;
    }

    .why-choose-us__feature {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }

    .why-choose-us__column .why-choose-us__feature:nth-child(2) {
        margin-left: 0;
    }

    .why-choose-us__feature-icon {
        width: 45px;
        height: 45px;
    }

    .why-choose-us__feature-heading {
        font-size: 20px;
        line-height: 26px;
    }

    .why-choose-us__feature-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 40px 15px;
    }

    .why-choose-us__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .why-choose-us__description {
        font-size: 15px;
    }

    .why-choose-us__layout {
        gap: 25px;
    }

    .why-choose-us__column {
        gap: 20px;
    }

    .why-choose-us__feature {
        width: 100%;
        max-width: 250px;
        gap: 0;
    }

    .why-choose-us__column .why-choose-us__feature:nth-child(2) {
        margin-left: 0;
    }

    .why-choose-us__feature-icon {
        width: 40px;
        height: 40px;
    }

    .why-choose-us__feature-icon img {
        width: 50%;
        height: 50%;
    }

    .why-choose-us__feature-heading {
        font-size: 18px;
        line-height: 24px;
    }

    .why-choose-us__feature-description {
        font-size: 14px;
    }
}
/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 80px 40px 0; /* Remove bottom padding */
    background: #161615;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-section__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Section Header */
.team-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-section__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 82px;
    letter-spacing: -2px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

@supports not (background-clip: text) {
    .team-section__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

.team-section__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Slider Wrapper */
.team-section__slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40px;
}

.team-section__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slide */
.team-section__slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.team-section__slide.active {
    display: grid;
}

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

/* Member Card */
.team-section__member {
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    gap: 0;
}

/* Member Image */
.team-section__member-image {
    flex: 0 0 45%;
    overflow: hidden;
    height: 400px;
}

.team-section__member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Member Content */
.team-section__member-content {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid #BEAE82;
    border-radius: 10px;
    background: transparent;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
}

/* Member Grade */
.team-section__member-grade {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BEAE82;
    margin-bottom: 6px;
}

/* Member Name */
.team-section__member-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -2px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

@supports not (background-clip: text) {
    .team-section__member-name {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

/* Member Description */
.team-section__member-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #AAAAAA;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Member Button */
.team-section__member-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #463206 0%, #F6E8B9 48.56%, #463206 100%);
    border: 0.98px solid #F6E8B9;
    border-radius: 4px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 10%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    margin-top: 20px;
}

.team-section__member-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 50, 6, 0.4);
    color: #000000;
    background: linear-gradient(90deg, #5A3A16 0%, #F6E8B9 48.56%, #5A3A16 100%);
}

.team-section__member-button:active {
    transform: scale(0.97);
}

/* ============================================
   NAVIGATION
   ============================================ */

.team-section__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.team-section__nav {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 56px;
    background: linear-gradient(274.43deg, #D0C093 20.43%, #8A794C 98.65%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 12px 16px;
}

.team-section__nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(138, 121, 76, 0.4);
}

.team-section__nav svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    fill: none;
}

/* Dots */
.team-section__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-section__dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.team-section__dot.active {
    background: #BEAE82;
    width: 30px;
    border-radius: 6px;
}

.team-section__dot:hover {
    background: rgba(190, 174, 130, 0.5);
}

/* ============================================
   BOTTOM FULL WIDTH IMAGE - NO SPACING
   ============================================ */

.team-section__bottom-image {
    width: 100vw;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
}

.team-section__bottom-img {
    width: 100%;
    height: auto;
    display: block;
}

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

@media (max-width: 992px) {
    .team-section {
        padding: 60px 30px 0;
    }

    .team-section__title {
        font-size: 48px;
        line-height: 62px;
    }

    .team-section__slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-section__member {
        flex-direction: column;
        align-items: stretch;
    }

    .team-section__member-image {
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
        border-radius: 10px 10px 0 0;
    }

    .team-section__member-content {
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: none;
        border-radius: 0 0 10px 10px;
        justify-content: center;
        border-top: none;
    }

    .team-section__member-name {
        font-size: 30px;
        line-height: 34px;
        letter-spacing: -1.5px;
    }

    .team-section__member-button {
        width: 140px;
        height: 42px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 50px 20px 0;
    }

    .team-section__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .team-section__description {
        font-size: 16px;
    }

    .team-section__member-image {
        height: 280px;
    }

    .team-section__member-content {
        min-height: 220px;
        padding: 20px 18px;
    }

    .team-section__member-name {
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -1px;
    }

    .team-section__member-description {
        font-size: 14px;
        line-height: 22px;
    }

    .team-section__nav {
        width: 48px;
        height: 48px;
        padding: 10px 14px;
    }

    .team-section__nav svg {
        width: 20px;
        height: 20px;
    }

    .team-section__member-button {
        width: 130px;
        height: 40px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 40px 15px 0;
    }

    .team-section__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .team-section__description {
        font-size: 15px;
    }

    .team-section__slide {
        gap: 20px;
    }

    .team-section__member-image {
        height: 220px;
    }

    .team-section__member-content {
        min-height: 180px;
        padding: 16px 14px;
    }

    .team-section__member-name {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: -0.5px;
    }

    .team-section__member-description {
        font-size: 13px;
        line-height: 20px;
    }

    .team-section__member-button {
        width: 100%;
        max-width: 150px;
        height: 38px;
        font-size: 11px;
        padding: 8px 16px;
        letter-spacing: 8%;
        margin-top: 15px;
    }

    .team-section__nav {
        width: 44px;
        height: 44px;
        padding: 8px 12px;
    }

    .team-section__nav svg {
        width: 18px;
        height: 18px;
    }

    .team-section__dots {
        gap: 8px;
    }

    .team-section__dot {
        width: 10px;
        height: 10px;
    }

    .team-section__dot.active {
        width: 24px;
    }
}
/* ============================================
   LOYALTY CTA SECTION
   ============================================ */

.loyalty-cta-section {
	
    padding: 80px 100px;
    background: #000000;
    width: 100%;
    box-sizing: border-box;
}

.loyalty-cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Two Column Layout - Vertically Centered */
.loyalty-cta-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   LEFT COLUMN - Image
   ============================================ */

.loyalty-cta-section__left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    box-sizing: border-box;
}

.loyalty-cta-section__image-wrapper {
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.loyalty-cta-section__image {
    width: 90%;
    height: auto;
    display: block;
}

/* ============================================
   RIGHT COLUMN - Title and Description
   ============================================ */

.loyalty-cta-section__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
}

/* Title - Same style as other sections */
.loyalty-cta-section__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 82px;
    letter-spacing: -2px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

@supports not (background-clip: text) {
    .loyalty-cta-section__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

/* Description - Same style as other sections */
.loyalty-cta-section__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    max-width: 500px;
}

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

@media (max-width: 992px) {
    .loyalty-cta-section {
        padding: 60px 30px;
    }

    .loyalty-cta-section__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loyalty-cta-section__title {
        font-size: 48px;
        line-height: 62px;
    }

    .loyalty-cta-section__description {
        font-size: 17px;
        max-width: 100%;
    }

    .loyalty-cta-section__image-wrapper {
        max-width: 100%;
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .loyalty-cta-section {
        padding: 50px 20px;
    }

    .loyalty-cta-section__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .loyalty-cta-section__description {
        font-size: 16px;
        line-height: 26px;
    }

    .loyalty-cta-section__right {
        align-items: center;
        text-align: center;
    }

    .loyalty-cta-section__layout {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .loyalty-cta-section {
        padding: 40px 15px;
    }

    .loyalty-cta-section__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }

    .loyalty-cta-section__description {
        font-size: 15px;
        line-height: 24px;
    }

    .loyalty-cta-section__left {
        order: -1; /* Image goes above on mobile */
    }

    .loyalty-cta-section__image-wrapper {
        max-height: 250px;
    }
}
/* ============================================
   FINANCING SECTION
   ============================================ */

.financing-section {
    padding: 80px 0;
    background: #161615;
    width: 100%;
    box-sizing: border-box;
}

.financing-section__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 70px;
}

/* Section Header - Outside Border, Centered */
.financing-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.financing-section__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 82px;
    letter-spacing: -2px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

@supports not (background-clip: text) {
    .financing-section__title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

.financing-section__description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Inner Border Wrapper */
.financing-section__inner {
    padding: 60px 50px;
    border: 2px solid transparent;
    border-radius: 48.5px;
    position: relative;
    background: #20201f;
    background-clip: padding-box;
}

.financing-section__inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 48.5px;
    padding: 2px;
    background: linear-gradient(137.21deg, #B89668 -29.95%, rgba(108, 88, 48, 0) 175.82%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.financing-section__inner > * {
    position: relative;
    z-index: 1;
}

/* Two Column Layout - 80% / 20% */
.financing-section__layout {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   LEFT COLUMN - 80%
   ============================================ */

.financing-section__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.financing-section__left-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    line-height: 42px;
    letter-spacing: -1px;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #463206 0%, #BEAE82 46.63%, #6C5830 93.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

@supports not (background-clip: text) {
    .financing-section__left-title {
        color: #BEAE82;
        background: none;
        -webkit-text-fill-color: #BEAE82;
    }
}

.financing-section__left-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    max-width: 600px;
}

/* Icons List */
.financing-section__icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

/* Icon Item - New Style */
.financing-section__icon-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 500px;
    max-width: 100%;
    height: 50px;
    padding: 0 24px;
    background: #D9D9D90F;
    border: 1px solid transparent;
    border-radius: 66px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

/* Gradient Border for Icon Items */
.financing-section__icon-item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 66px;
    padding: 1px;
    background: linear-gradient(137.21deg, #B89668 -29.95%, rgba(184, 150, 104, 0.59) 175.82%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.financing-section__icon-item > * {
    position: relative;
    z-index: 1;
}

.financing-section__icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 150, 104, 0.15);
}

.financing-section__icon-wrapper {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.financing-section__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.financing-section__icon-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

/* Button */
.financing-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 56px;
    padding: 12px 24px;
    background: linear-gradient(122.51deg, #8A794C 48.81%, #D0C093 125.36%);
    border: none;
    border-radius: 43px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    margin-top: 5px;
}

.financing-section__button:hover {
    background: linear-gradient(122.51deg, #9A895C 48.81%, #E0D0A3 125.36%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 121, 76, 0.4);
    color: #FFFFFF;
}

.financing-section__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.financing-section__button:hover .financing-section__button-icon {
    transform: translateX(4px);
}

.financing-section__button:focus {
    outline: none;
}

.financing-section__button:active {
    transform: scale(0.97);
}

/* ============================================
   RIGHT COLUMN - 20%
   ============================================ */

.financing-section__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.financing-section__right-image-wrapper {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    
	padding-right: 30px;
}

.financing-section__right-image {
    width: 100%;
    height: auto;
    display: block;
	padding-right: 30px;
}

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

@media (max-width: 1200px) {
    .financing-section__container {
        padding: 0 150px;
    }
    .financing-section__icon-item {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .financing-section {
        padding: 60px 0;
    }
    .financing-section__container {
        padding: 0 60px;
    }
    .financing-section__inner {
        padding: 40px 30px;
        border-radius: 35px;
    }
    .financing-section__inner::before {
        border-radius: 35px;
    }
    .financing-section__title {
        font-size: 48px;
        line-height: 62px;
    }
    .financing-section__description {
        font-size: 17px;
    }
    .financing-section__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .financing-section__left-title {
        font-size: 30px;
        line-height: 38px;
    }
    .financing-section__left-description {
        max-width: 100%;
    }
    .financing-section__right {
        justify-content: center;
        order: -1;
    }
    .financing-section__right-image-wrapper {
        max-width: 250px;
    }
    .financing-section__icon-item {
        width: 100%;
        height: 64px;
        padding: 0 18px;
    }
}

@media (max-width: 768px) {
    .financing-section {
        padding: 40px 0;
    }
    .financing-section__container {
        padding: 0 30px;
    }
    .financing-section__inner {
        padding: 30px 20px;
        border-radius: 25px;
    }
    .financing-section__inner::before {
        border-radius: 25px;
    }
    .financing-section__title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
    }
    .financing-section__description {
        font-size: 16px;
    }
    .financing-section__left-title {
        font-size: 26px;
        line-height: 34px;
    }
    .financing-section__left-description {
        font-size: 15px;
        line-height: 24px;
    }
    .financing-section__icon-item {
        width: 100%;
        height: 56px;
        padding: 0 14px;
        border-radius: 50px;
    }
    .financing-section__icon-item::before {
        border-radius: 50px;
    }
    .financing-section__icon-text {
        font-size: 15px;
    }
    .financing-section__button {
        width: 100%;
        max-width: 200px;
        height: 50px;
        font-size: 0.85rem;
    }
    .financing-section__right-image-wrapper {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .financing-section {
        padding: 30px 0;
    }
    .financing-section__container {
        padding: 0 15px;
    }
    .financing-section__inner {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .financing-section__inner::before {
        border-radius: 20px;
        inset: -1.5px;
        padding: 1.5px;
    }
    .financing-section__title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -0.5px;
    }
    .financing-section__description {
        font-size: 15px;
    }
    .financing-section__left-title {
        font-size: 22px;
        line-height: 30px;
    }
    .financing-section__left-description {
        font-size: 14px;
        line-height: 22px;
    }
    .financing-section__icon-item {
        width: 100%;
        height: 48px;
        padding: 0 12px;
        border-radius: 40px;
        gap: 10px;
    }
    .financing-section__icon-item::before {
        border-radius: 40px;
    }
    .financing-section__icon-text {
        font-size: 14px;
    }
    .financing-section__icon-wrapper {
        width: 28px;
        height: 28px;
    }
    .financing-section__button {
        width: 100%;
        max-width: 100%;
        height: 48px;
        font-size: 0.85rem;
    }
    .financing-section__right-image-wrapper {
        max-width: 150px;
    }
}
/* ============================================
   HEADER - COMPLETE STYLES
   ============================================ */

/* Reset header margins */
.site-header {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ============================================
   TOP BAR - #463206 Background
   ============================================ */
.header__top-bar {
    background: #463206;
    padding: 10px 40px;
    width: 100%;
    box-sizing: border-box;
}

.header__top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Left Column - Social Icons */
.header__top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__social-icon {
    color: #FFFFFF !important;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__social-icon:hover {
    color: #F5D88D !important;
}

/* Center Column - Logo */
.header__top-bar-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__top-bar-center .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Fallback Text Logo */
.header__logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: center;
}

.header__logo-line1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.header__logo-line2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.header__logo-line3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #F5D88D;
    letter-spacing: 1px;
}

/* Right Column - Search Box (No Border, No Background) */
.header__top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    transition: all 0.3s ease;
}

.header__search-icon {
    color: #FFFFFF;
    font-size: 14px;
}

.header__search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 0;
    width: 120px;
}

.header__search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   NAVIGATION BAR - #8A794C Background
   ============================================ */
.header__nav-bar {
    background: #8A794C;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.header__nav-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation Menu */
.header__nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.header__menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header__menu li {
    margin: 0;
    padding: 0;
}

.header__menu a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 0;
    position: relative;
    display: inline-block;
}

.header__menu a:hover {
    color: #F5D88D !important;
}

/* Active menu item */
.header__menu .current-menu-item a,
.header__menu .current-page-ancestor a {
    color: #F5D88D !important;
}

/* Underline animation */
.header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5D88D;
    transition: width 0.3s ease;
}

.header__menu a:hover::after {
    width: 100%;
}

.header__menu .current-menu-item a::after {
    width: 100%;
}

/* ============================================
   MOBILE TOGGLE
   ============================================ */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header__menu-toggle span {
    width: 28px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    display: block;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Tablets */
@media (max-width: 992px) {
    .header__top-bar {
        padding: 10px 20px;
    }
    
    .header__top-bar-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .header__top-bar-left {
        gap: 15px;
    }
    
    .header__top-bar-right {
        justify-content: flex-end;
    }
    
    .header__search-input {
        width: 80px;
    }
    
    .header__nav-bar {
        padding: 0 20px;
    }
    
    .header__menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        right: 0;
        background: #8A794C;
        padding: 10px 0;
        width: 220px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 999;
    }
    
    .header__menu.open {
        display: flex;
    }
    
    .header__menu li {
        width: 100%;
    }
    
    .header__menu a {
        display: block;
        padding: 12px 25px;
        text-align: left;
        font-size: 15px;
    }
    
    .header__menu a::after {
        display: none;
    }
    
    .header__menu-toggle {
        display: flex;
    }
    
    .header__nav {
        justify-content: flex-end;
    }
    
    .header__top-bar-center .custom-logo {
        max-height: 40px;
    }
    
    .header__logo-line1,
    .header__logo-line2,
    .header__logo-line3 {
        font-size: 13px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .header__top-bar {
        padding: 8px 15px;
    }
    
    .header__top-bar-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .header__top-bar-left {
        gap: 12px;
    }
    
    .header__social-icon {
        font-size: 14px;
    }
    
    .header__search-box {
        padding: 4px 10px;
    }
    
    .header__search-input {
        width: 60px;
        font-size: 12px;
    }
    
    .header__search-icon {
        font-size: 12px;
    }
    
    .header__nav-bar {
        padding: 0 15px;
    }
    
    .header__menu {
        width: 100%;
        right: 0;
        border-radius: 0;
    }
    
    .header__menu a {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .header__top-bar-center .custom-logo {
        max-height: 35px;
    }
    
    .header__logo-line1,
    .header__logo-line2,
    .header__logo-line3 {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .header__top-bar-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .header__top-bar-left {
        justify-content: center;
    }
    
    .header__top-bar-center {
        order: -1;
    }
    
    .header__top-bar-right {
        justify-content: center;
    }
}
/* ============================================
   FOOTER - #8A794C Background, 200px Height
   ============================================ */
.site-footer {
    background: #8A794C;
    height: 200px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer__row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* ============================================
   COLUMN 1 - FOOTER LOGO (50px)
   ============================================ */
.footer__col--logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer__logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

/* Footer Logo Image - 50px */
.footer__logo-img {
    max-height: 50px;
    width: 100px;
    display: block;
}

/* Fallback: Site Logo */
.footer__col--logo .custom-logo {
    max-height: 50px;
    width: 100px;
    display: block;
}

/* Fallback Text Logo */
.footer__logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer__logo-line1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer__logo-line2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer__logo-line3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #F5D88D;
    letter-spacing: 1px;
}
/* ============================================
   COLUMN 2 - FOOTER MENU
   ============================================ */
.footer__col--menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer__menu li {
    margin: 0;
    padding: 0;
}

.footer__menu a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer__menu a:hover {
    color: #F5D88D !important;
}

/* ============================================
   COLUMN 3 - SOCIAL ICONS
   ============================================ */
.footer__col--social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.footer__social-icon {
    color: #FFFFFF !important;
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__social-icon:hover {
    color: #F5D88D !important;
}

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

@media (max-width: 992px) {
    .site-footer {
        height: auto;
        padding: 40px 30px;
    }
    
    .footer__row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer__col--logo {
        justify-content: center;
    }
    
    .footer__col--social {
        justify-content: center;
    }
    
    .footer__menu {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px;
    }
    
    .footer__row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer__col--logo {
        justify-content: center;
    }
    
    .footer__col--menu {
        justify-content: center;
    }
    
    .footer__col--social {
        justify-content: center;
    }
    
    .footer__menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer__menu a {
        font-size: 14px;
    }
    
    .footer__social-icon {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .site-footer {
        padding: 20px 15px;
    }
    
    .footer__menu {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer__menu a {
        font-size: 13px;
    }
    
    .footer__social-icon {
        font-size: 16px;
    }
    
    .footer__col--social {
        gap: 15px;
    }
}