/* ========================================
   Global Reset
======================================== */

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


/* ========================================
   Root Variables
======================================== */

:root {
    --primary-color: #EE7873;
    --primary-hover: #ef776e;

    --secondary-color: #40375f;
    --text-color: #40375f;

    --bg-light: #ffffff;
    --bg-dark: #27233a;

    --white-color: #ffffff;
    --light-color: #cecece;

    --border-color: #e8e8e8;

    --shadow-light: rgba(39, 35, 58, 0.05);

    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", sans-serif;
}


/* ========================================
   Body
======================================== */

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-color);
    line-height: 1.7;
}


/* ========================================
   Common Elements
======================================== */

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

a:focus {
    text-decoration: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: 16px;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.25;
}

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

input,
input:focus,
textarea,
textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

button,
.btn {
    outline: none;
    border: none;
    cursor: pointer;
}

.container {
    max-width: 1500px;
}


/* ========================================
   Reusable UI
======================================== */

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary-color);
}

.section-tag-center {
    padding-left: 28px;
}

.section-tag-light {
    color: #ff9d98;
}

.section-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.section-title-light {
    color: var(--white-color);
}

.section-text {
    color: #6b6483;
    font-size: 16px;
    margin-bottom: 24px;
}

.section-text-light {
    color: #cfc9e0;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-left: 12px;
    transition: border-color 0.25s ease, color 0.25s ease;
}

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

.btn-outline-light-custom {
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.3);
    margin-left: 0;
}

.btn-outline-light-custom:hover {
    border-color: var(--white-color);
    color: var(--white-color);
}


/* ========================================
   Header
======================================== */

.site-header {

    border-top: 3px solid #3b2b3c;
    border-bottom: 1px solid rgba(59, 43, 60, 0.15);
    position: relative;
    z-index: 20;

    max-height: 137px;
}

.header-container {

    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-mark svg {
    width: 52px;
    height: 52px;
    display: block;
}

.brand-mark-letter {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    fill: var(--secondary-color);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 32px;
    color: var(--secondary-color);
    letter-spacing: 0.01em;
}

.brand-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary-color);
}

.brand-tagline i {
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--primary-color);
    font-style: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 55px;
    margin: 0 auto;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 21px;
    padding: 13px;
    border-radius: 10.5px;
    text-decoration: none;
    line-height: 100%;
    letter-spacing: 0%;

}



.btn-talk:hover {
    background: var(--primary-hover);
    color: var(--white-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 20px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
        padding: 16px 20px;
    }

    .nav-toggle {
        display: block;
        order: 2;
    }

    .main-nav {
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        transition: max-height 0.3s ease;
    }

    .main-nav.open {
        max-height: 300px;
        padding-top: 18px;
    }

    .btn-talk {
        order: 3;
        margin-left: 12px;
    }

    .brand-name {
        font-size: 26px;
    }
}



/* ========================================
   Hero
======================================== */

.hero-section {
    position: relative;
    background:
        url('../images/hero-bg.webp') center/cover no-repeat;
    padding: 90px 0 80px 0px;

    height: 900px;
    display: flex;
    align-items: end;

}

.hero-description {
    width: 922px;
    height: 565px;

}

.hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid rgba(238, 139, 133, 0.7);
    border-radius: 6px;
    padding: 10px 18px;
    margin-bottom: 34px;
    height: 46px;
    width: 255px;
    line-height: 22px;
    letter-spacing: 0px;

    font-family: "Montserrat", sans-serif;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 87px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white-color);
    margin-bottom: 30px;
    max-width: 835px;
}

.hero-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    font-size: 29px;
    line-height: 1.6;
    max-width: 759px;
    margin-bottom: 36px;
    font-weight: 400;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 18px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-explore i {
    font-size: 15px;
}

.btn-explore:hover {
    background: var(--primary-hover);
    color: var(--white-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }
}





/* ========================================
   What We Offer Section
======================================== */

.offer-section {
    position: relative;

    width: 100%;

    padding: 100px 0 0px;

    background: #f8f8f8;

    overflow: hidden;
    height: 1065px;
}


/* ========================================
   Section Heading
======================================== */

.offer-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: start;

    gap: 55px;

    margin-bottom: 130px;
}


/* ========================================
   Badge
======================================== */

.offer-badge {
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    margin-bottom: 14px;
    background: #EE7873;
    color: var(--white-color);
    border-radius: 5.5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0px;
}


/* ========================================
   Title
======================================== */

.offer-title {
    font-family: "Cormorant Garamond", serif;

    color: var(--secondary-color);

    font-size: 56px;

    line-height: 100%;

    letter-spacing: 0px;

    font-weight: 700;

    margin: 0;

    max-width: 700px;
}


/* ========================================
   Description
======================================== */


.offer-description p {
    font-family: var(--font-body);
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    max-width: 711px;
    max-height: 67px;
    font-size: 20px;
}





/* ========================================
   Tablet
======================================== */

@media (max-width: 991px) {

    .offer-section {
        padding: 70px 0 80px;
    }


    .offer-heading {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 55px;
    }


    .offer-description {
        padding-top: 0;

        max-width: 550px;
    }


    .offer-title {
        font-size: 30px;
    }



}


/* ========================================
   Mobile
======================================== */

@media (max-width: 575px) {

    .offer-section {
        padding: 55px 0 65px;
    }


    .offer-heading {
        margin-bottom: 45px;
    }


    .offer-title {
        font-size: 25px;

        line-height: 1.2;
    }


    .offer-description p {
        font-size: 10px;

        line-height: 1.7;
    }



}



.card-container {
    display: flex;
    gap: 30px;

    width: 100%;
    justify-content: space-between;
    margin-top: 25px;
}



.frame-imge-2 {
    position: relative;
    top: -45px;
}




/* ========================================
   About
======================================== */



.about-section {

    width: 100%;
    margin: 0px auto;
    margin-top: 100px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0px auto;
}



/* Right Content Styling */
.content-wrapper {
    flex: 1;
    min-width: 320px;
}

.about-container h2 {
    font-family: "Cormorant Garamond", serif;
    width: 627px;
    height: 149px;
    font-size: 61px;
    font-weight: bold;
    line-height: 74px;
    letter-spacing: -1.23px;
    margin-bottom: 25px;
}



.description {
    color: #7d7d7d;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    width: 700px;
    line-height: 35px;
    letter-spacing: 0px;
    font-weight: 500;
    font-family: var(--font-body);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2b1d38;
}

.features-list i {
    color: #eb7c72;
    font-size: 18px;
}

.btn-primary {
    background-color: #eb7c72;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #d8685e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-wrapper {
        width: 100%;
        height: 380px;
    }

    .circle-img-box {
        width: 130px;
        height: 130px;
        left: 0;
    }

    h2 {
        font-size: 28px;
    }
}




/* --- Row Container styling --- */

.trust-section {

    margin: 100px auto;

}


.logo-row {
    margin: 50px auto;
}

.logo-row:last-child {
    margin-bottom: 0;
    /* No space below the last row */
}

/* --- Row Title styling (The line with text in the middle) --- */
.row-title {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    /* Space between title and logos */
}

.row-title span {
    background: #fcfcfc;
    /* Match this to the body background to "hide" the line */
    padding: 0 20px;
    /* Creates the gap around the text */
    color: #351C51;
    /* Dark indigo/purple color from your image */
    font-weight: 600;
    font-size: 25px;
    line-height: 41px;
    letter-spacing: 0px;
}

/* This pseudo-element creates the thin horizontal line */
.row-title::before {
    content: "";
    display: block;
    border-top: 1px solid #e0e0e0;
    /* The line color */
    width: 100%;
    position: absolute;
    top: 50%;
    /* Puts the line in the vertical center */
    left: 0;
    z-index: -1;
    /* Puts the line behind the text span */
}

/* --- Logo Grid styling (Using Flexbox for centering) --- */
.logo-grid {
    display: flex;
    justify-content: center;
    /* Centers the logos horizontally */
    align-items: center;
    /* Aligns logos of different heights in the center vertically */
    flex-wrap: wrap;
    /* Allows logos to wrap on smaller screens */
    gap: 40px;
    /* Uniform space between logos */
}

/* --- Logo Item styling --- */
.logo-item {
    text-align: center;
}

.logo-item img {
    max-width: 120px;
    /* Maximum width a logo can take */
    height: auto;
    /* Maintains aspect ratio */
    filter: grayscale(100%);
    /* Makes all images gray/black as requested */
    opacity: 0.7;
    /* Optional: adds subtle fading */
    transition: opacity 0.3s ease;
    /* Smooth hover effect */
}

/* Optional: Slight opacity change on hover for interactivity */
.logo-item img:hover {
    opacity: 1;
}


/* ========================================
   Why Simplicity Section
======================================== */

.why-section {

    height: 1080px;
    background-image: url('../images/why-section-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;

}


/* Header row: badge/title on left, paragraph on right */

.why-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 170px;
    margin: 80px 0px;

}

.why-badge {
    background: var(--primary-color);
}

.why-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 69px;
    letter-spacing: -1.15px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    width: 690px;
    height: 139px;
}

.why-header-right p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.78);
    font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 0px;
}


.why-imag-contaner {
    display: flex;
    position: absolute;
}

.why-imag-contaner img {
    width: 350px !important;
}

.why-imge-1 {
    position: absolute;
    top: -800px;

    left: 70px;
}


.why-imge-2 {
    position: absolute;
    top: -526px;
    left: -5px;
}


.why-imge-3 {
    position: absolute;
    top: -539px;
    left: 1059px;
}


.why-imge-4 {
    position: relative;
    top: -870px;
    left: 930px;
}





/* ========================================
   Services Grid
======================================== */

.services-grid-section {
    padding: 160px 0 110px;
}

.section-tag-pill-center {
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    margin-bottom: 14px;
    background: #EE7873;
    color: var(--white-color);
    border-radius: 5.5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0px;
}

.services-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 56px;
    color: #351C51;
    line-height: 68px;
    letter-spacing: -1.14px;
    width: 648px;
    height: 137px;
    margin: 0px auto;
}

.service-card {
    background: #F9F9F9;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-light);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    color: rgba(64, 55, 95, 0.2);
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    line-height: 45px;
    letter-spacing: 0px;
}

.service-card p {
    font-family: var(--font-body);
    font-weight: 500;
    color: #7E7E7A;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
    margin-bottom: 22px;
}

.services-grid-section .btn-talk {
    display: flex;
    justify-content: space-between;
}


/* ========================================
 Client Experience Section
========================================= */


.client-section {

    padding: 100px 0;

    background: #F5F5F5;

}



.client-heading {

    text-align: center;

    margin-bottom: 60px;

}



.client-title {

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;

    color: var(--secondary-color);

    line-height: 66px;
    letter-spacing: -1.11px;

}




/* Layout */


.client-wrapper {
    display: grid;
    grid-template-columns: 650px 1fr;
    align-items: center;
    gap: 100px;
}




/* Image */


.client-image {
    width: 600px;
    height: 600px;
    position: relative;

}



.circle-bg {

    position: absolute;
    width: 330px;
    height: 330px;
    background: #ffe500;
    border-radius: 50%;
    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}



.client-main-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    bottom: 0;
    left: 70%;
    transform: translateX(-50%);
    z-index: 2;
}




.small-user {

    position: absolute;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid #fff;

    z-index: 3;

}


.small-user img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.user-1 {

    top: 70px;

    left: 20px;

}


.user-2 {

    top: 150px;

    right: 10px;

}


.user-3 {

    bottom: 90px;

    left: 30px;

}







/* Swiper */


.client-slider {

    width: 100%;

    overflow: hidden;

}


.clientSwiper {

    width: 100%;

}



.swiper-slide {

    height: auto;

}






/* Card */


.review-card {


    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 18px;
    min-height: 240px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    position: relative;

}




.rating {

    font-size: 17px;
    color: #7E7E7A;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0px;

}



.review-card .quote {

    width: 50px !important;
    height: 50px !important;
    margin-bottom: 20px;
}




.review-box {

    background: #F3F1EB;

    padding: 27px;

    border-radius: 22px;

    height: 268px;
    width: 100%;

}



.review-box h3 {

    font-size: 26px;

    line-height: 42px;
    letter-spacing: 0px;

    color: #2D3836;

    margin-bottom: 20px;

}



.review-box p {

    font-size: 22px;

    line-height: 42px;
    letter-spacing: 0px;

    color: #2D3836;

}




.review-user {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

}



.review-user img {

    width: 40px;

    height: 40px;


}



.review-user small {

    display: block;

    font-size: 9px;

    color: #999;

}



.review-user strong {

    display: block;

    font-size: 11px;

    color: var(--secondary-color);

}





/* ========================================
   Swiper Pagination - Custom Bullets
======================================== */

.clientSwiper .swiper-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    position: relative;
}

.clientSwiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c9cfce;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.clientSwiper .swiper-pagination-bullet-active {
    width: 19px;
    height: 19px;
    background: #ffffff;
    border: 4px solid var(--primary-color);
    box-sizing: border-box;
}






@media(max-width:991px) {


    .client-wrapper {

        grid-template-columns: 1fr;

    }


    .client-image {

        margin: auto;

    }


}



@media(max-width:575px) {


    .client-title {

        font-size: 25px;

    }



    .client-main-image {

        width: 300px;

    }


}


/* Dashed ring around image */
.dashed-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 2px dashed rgba(43, 29, 56, 0.35);
    border-radius: 50%;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Yellow circle behind image (already defined, just tweak position) */
.circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffcf3f;
    border-radius: 50%;
    left: 60%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Small floating user avatars */
.small-user {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
    z-index: 3;
}

.small-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-1 {
    top: 20px;
    left: 0;
}

.user-2 {
    top: 140px;
    right: 0;
}

.user-3 {
    bottom: 40px;
    left: 10px;
}

/* Review user badge — dark rounded background */
.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: var(--secondary-color);
    padding: 10px 14px;
    border-radius: 8px;
    width: 50%;
}

.review-user small {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
}

.review-user strong {
    display: block;
    font-size: 11px;
    color: #fff;
}

.clientSwiper {
    width: 100%;
    overflow: hidden;
}


/* ========================================
   Contact Section
======================================== */

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-section .offer-badge {
    margin-bottom: 14px;
}

.contact-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 61px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 1.24px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}


/* ---- Left: Form Area ---- */

.contact-form {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    width: 100%;
}

.form-group.full {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group.full textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-color);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%2340375f' stroke-width='1.5' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group.full textarea::placeholder {
    color: #a9a9a9;
}

.form-group.full textarea {
    resize: none;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    padding: 15px 26px;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.contact-submit-btn .talk-icon i {
    font-size: 11px;
}


/* ---- Right: Image Area ---- */

.contact-image-area {
    position: relative;
}



.contact-img-box {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.contact-img-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 139, 130, 0.25) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.contact-image-area::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: 0;
    top: -20px;
    left: 38px;
}

.contact-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sparkle-icon {
    position: absolute;
    top: -38px;
    left: 70px;
    width: 60px;
    z-index: 2;
}

.ligtin_imge {
    width: 140px;
    height: 140px;
    position: absolute;
    left: -58px;
    top: -74px;
}

.contact-image {
    height: 625px;
    width: 100%;
    position: absolute;
}



/* ========================================
   Contact Responsive
======================================== */

@media (max-width: 991px) {

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

    .contact-image-area {
        order: -1;
    }

    .contact-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-img-box {
        height: 300px;
    }

    .contact-form {
        padding: 20px;
    }
}


/* ========================================
   Footer
======================================== */

.site-footer {
    background: #323232;
}

.footer-about {
    margin-top: -40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr 1.1fr;
    gap: 40px;
    padding: 90px 0 60px;
}

/* --- About column --- */

.footer-brand {
    margin-bottom: 26px;
}

.footer-brand .brand-mark svg {
    width: 78px;
    height: 78px;
}

.footer-brand .brand-mark-letter {
    font-size: 38px;
}

.footer-brand .brand-name {
    font-size: 42px;
    color: var(--white-color);
}

.footer-tagline {
    font-family: "Urbanist", sans-serif;
    font-size: 19px;
    line-height: 49px;
    letter-spacing: 0px;
    font-weight: 500;
    color: #EBEBEB;
    margin-bottom: 14px;
}

.footer-desc {
   
    font-size: 19px;
     font-family: "Urbanist", sans-serif;
    letter-spacing: 0px;
    font-weight: 500;
    color: #EBEBEB;
    max-width: 380px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

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

/* --- Link columns --- */

.footer-col h4 {
    font-family: "Urbanist", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 26px;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 22px;
    color: #AFC2BD;
    transition: color 0.2s ease;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 33px;
}

.footer-col ul li a i {
    color: var(--primary-color);
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: var(--white-color);
}

/* --- Contact column --- */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer-contact li i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-top: 4px;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border: 1px solid rgba(238, 139, 133, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.subscribe-btn {
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 20px;
    flex-shrink: 0;
    border-radius: 0px 8px 8px 0px;
}

.footer-subscribe input {
    flex: 1;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 12px;
    min-width: 0;
}

.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.subscribe-send {
    background: transparent;
    color: var(--primary-color);
    padding: 0 16px;
    font-size: 15px;
    flex-shrink: 0;
}

/* --- Bottom bar --- */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 26px 0;
}

.footer-bottom-inner p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner p strong {
    color: var(--white-color);
}

.footer-bottom-links {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 4px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* --- Responsive --- */

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}