/* ==========================================================
   ADVAIT PROPERTY SOLUTIONS - CUSTOM STYLESHEET
   Elegant Cream & Rose-Gold Theme (Matching Business Card)
   ========================================================== */

/* ===== ROOT VARIABLES - Color theme from business card ===== */
:root {
    --primary-color: #c9a47a;
    /* Rose-gold / mocha */
    --primary-dark: #a87f55;
    /* Deeper mocha */
    --secondary-color: #8b6f47;
    /* Bronze brown */
    --accent-color: #d4b896;
    /* Light champagne */
    --dark-color: #2c2520;
    /* Deep brown-black */
    --cream-bg: #f5ede2;
    /* Warm cream (card background) */
    --cream-light: #faf5ed;
    /* Lightest cream */
    --cream-section: #ede2d1;
    /* Section cream */
    --text-color: #5a4a3a;
    /* Warm dark brown text */
    --heading-color: #2c2520;
    /* Deep brown for headings */
    --white: #ffffff;
    --border-color: #e8dcc8;
    /* Cream border */
    --gradient: linear-gradient(135deg, #c9a47a 0%, #a87f55 100%);
    --gradient-light: linear-gradient(135deg, #ede2d1 0%, #f5ede2 100%);
    --shadow-sm: 0 2px 12px rgba(168, 127, 85, 0.08);
    --shadow-md: 0 8px 30px rgba(168, 127, 85, 0.12);
    --shadow-lg: 0 20px 50px rgba(168, 127, 85, 0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--cream-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: var(--cream-bg);
    position: relative;
}

.bg-light-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 164, 122, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 164, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bg-light-custom>.container {
    position: relative;
    z-index: 1;
}

/* ===== CUSTOM BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(168, 127, 85, 0.25);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2520 0%, #5a4a3a 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 37, 32, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--white);
    transition: var(--transition);
}

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

/* ===== SECTION HEADING ===== */
.section-heading {
    margin-bottom: 30px;
}

.section-heading.text-center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    padding: 6px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 1px;
    background: var(--primary-color);
}

.section-heading:not(.text-center) .section-tag::before {
    display: none;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 22px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.section-desc {
    font-size: 16px;
    color: var(--text-color);
    max-width: 720px;
    line-height: 1.8;
}

.text-center .section-desc {
    margin: 0 auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-color);
    color: var(--cream-light);
    padding: 11px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.top-info,
.top-social {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-social {
    justify-content: flex-end;
    gap: 10px;
}

.top-info li i {
    color: var(--primary-color);
    margin-right: 6px;
}

.top-social a {
    width: 32px;
    height: 32px;
    background: rgba(201, 164, 122, 0.15);
    border: 1px solid rgba(201, 164, 122, 0.3);
    border-radius: 50%;
    color: var(--cream-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 13px;
}

.top-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.header {
    background: #E1D7CE;
    box-shadow: 0 2px 20px rgba(168, 127, 85, 0.08);
    transition: var(--transition);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: #E1D7CE;
}



.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.navbar-brand:hover .brand-logo {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(15deg);
}

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

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 5px;
}

.brand-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

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

.navbar-toggler {
    border: 1.5px solid var(--primary-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: var(--cream-bg);
}

.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cream-bg);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 30px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.1;
    letter-spacing: 1.5px;
}

.hero-title span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 38px;
    max-width: 620px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-indicators {
    margin-bottom: 35px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: 2px solid var(--white) !important;
    background-color: transparent !important;
    margin: 0 6px !important;
    opacity: 1 !important;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    width: 35px !important;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    transition: var(--transition);
    margin: 0 25px;
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--cream-light);
}

.about-image-wrap {
    position: relative;
    padding: 30px 30px 30px 0;
}

.about-img-1 {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    background: var(--cream-bg);
    min-height: 400px;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    border: 8px solid var(--cream-light);
    box-shadow: var(--shadow-md);
    background: var(--cream-bg);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -25px;
    background: var(--gradient);
    color: var(--white);
    padding: 25px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 22px;
    padding: 22px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: var(--cream-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.feature-text h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--cream-bg);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon-wrap {
    position: absolute;
    bottom: 10px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: rotate(360deg);
    background: var(--dark-color);
}

.service-body {
    padding: 38px 30px 32px;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--heading-color);
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 14px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: var(--cream-light);
}

.why-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: var(--cream-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
}

.why-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.why-card p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
}

.why-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}

.why-image-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background: var(--cream-bg);
    min-height: 400px;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    bottom: 30px;
    left: -25px;
    background: var(--white);
    padding: 20px 26px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.why-badge i {
    font-size: 34px;
    color: var(--primary-color);
}

.why-badge h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.why-badge small {
    font-size: 12px;
    color: var(--text-color);
    letter-spacing: 1px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: url('../images/counter-bg.jpg') no-repeat center center / cover;
    background-color: var(--dark-color);
    padding: 90px 0;
    position: relative;
    background-attachment: fixed;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 37, 32, 0.93) 0%, rgba(90, 74, 58, 0.93) 100%);
}

.counter-box {
    color: var(--white);
    padding: 25px 15px;
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-8px);
}

.counter-icon {
    width: 85px;
    height: 85px;
    background: rgba(201, 164, 122, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 22px;
    border: 1px solid rgba(201, 164, 122, 0.3);
    transition: var(--transition);
}

.counter-box:hover .counter-icon {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.counter-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.counter-number::after {
    content: '+';
    color: var(--primary-color);
}

.counter-label {
    font-size: 13px;
    color: rgba(245, 237, 226, 0.85);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* ===== GALLERY SECTION ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    height: 330px;
    background: var(--cream-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 37, 32, 0.92), rgba(168, 127, 85, 0.3) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-overlay p {
    color: var(--accent-color);
    font-size: 13px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--cream-light);
}

.testimonial-card {
    background: var(--white);
    padding: 38px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    right: 32px;
    font-size: 110px;
    color: rgba(201, 164, 122, 0.15);
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 17px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    padding: 3px;
    background: var(--white);
}

.testimonial-author h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--heading-color);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 42px;
    gap: 10px;
}

.testimonial-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: var(--transition);
    padding: 0;
}

.testimonial-indicators button.active {
    background: var(--primary-color);
    width: 38px;
    border-radius: 10px;
}

/* ===== FAQ SECTION ===== */
.faq-image {
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    background: var(--cream-bg);
    min-height: 280px;
    width: 100%;
    object-fit: cover;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--heading-color);
    font-weight: 500;
    font-size: 16px;
    padding: 22px 26px;
    border: none;
    box-shadow: none !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 18px;
    width: auto;
    height: auto;
    font-weight: bold;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\F2EA';
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 22px 26px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    background: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--cream-light);
}

.contact-info-box {
    background: var(--white);
    padding: 38px 26px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(168, 127, 85, 0.25);
}

.contact-info-box:hover .contact-icon {
    background: var(--dark-color);
    transform: rotate(15deg) scale(1.05);
}

.contact-info-box h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--heading-color);
}

.contact-info-box p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-info-box a {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.contact-form-wrap {
    background: var(--white);
    padding: 42px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    transition: var(--transition);
    background: var(--cream-light);
    color: var(--text-color);
}

.contact-form .form-control::placeholder {
    color: rgba(90, 74, 58, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 164, 122, 0.15);
    background: var(--white);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-message {
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #2d8c4a;
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #c33545;
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: block;
}

.contact-map {
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    display: block;
    filter: sepia(15%) saturate(70%);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: rgba(245, 237, 226, 0.7);
}

.footer-top {
    padding: 85px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    text-decoration: none;
}

.footer-brand-logo {
    width: 55px;
    height: 55px;
    background: rgba(201, 164, 122, 0.12);
    border: 1px solid rgba(201, 164, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    display: block;
    line-height: 1.2;
    letter-spacing: 4px;
}

.footer-brand-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-rera {
    background: rgba(201, 164, 122, 0.12);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 164, 122, 0.25);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(245, 237, 226, 0.1);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(245, 237, 226, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 11px;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(245, 237, 226, 0.7);
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(245, 237, 226, 0.7);
}

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

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(245, 237, 226, 0.08);
    font-size: 13px;
}

.footer-bottom p {
    color: rgba(245, 237, 226, 0.7);
}

/* ===== FLOATING ICONS ===== */
.floating-btn {
    position: fixed;
    bottom: 130px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    left: 30px;
    background: #25d366;
}

.floating-call {
    right: 30px;
    background: var(--primary-color);
    animation-name: pulseGold;
}

.floating-btn:hover {
    color: var(--white);
    transform: scale(1.1);
}

.float-tooltip {
    position: absolute;
    background: var(--dark-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.floating-whatsapp .float-tooltip {
    left: 70px;
}

.floating-call .float-tooltip {
    right: 70px;
}

.floating-btn:hover .float-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 164, 122, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 164, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 164, 122, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

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

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 60px;
    }

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

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 38px;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 13px;
    }

    .brand-name {
        font-size: 24px;
        letter-spacing: 4px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-slide {
        height: 75vh;
        min-height: 500px;
    }

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

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

    .section-title {
        font-size: 34px;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 22px;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-primary-custom {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

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

    .about-img-2 {
        width: 180px;
        height: 180px;
    }

    .about-experience {
        padding: 20px 24px;
    }

    .exp-number {
        font-size: 42px;
    }

    .counter-number {
        font-size: 44px;
    }

    .why-badge {
        left: 20px;
        bottom: 20px;
    }

    .contact-form-wrap {
        padding: 32px 26px;
    }

    .contact-map {
        min-height: 350px;
    }

    .footer-top {
        padding: 60px 0 30px;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-slide {
        height: auto;
        min-height: 520px;
        padding: 90px 0;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 42px;
        height: 42px;
        margin: 0 10px;
    }

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

    .section-tag {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .brand-name {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .brand-tag {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-logo svg {
        width: 32px;
        height: 32px;
    }

    .about-img-2 {
        width: 140px;
        height: 140px;
    }

    .about-experience {
        top: 15px;
        left: 15px;
        padding: 16px 20px;
    }

    .exp-number {
        font-size: 34px;
    }

    .exp-text {
        font-size: 11px;
    }

    .service-body {
        padding: 32px 24px 28px;
    }

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

    .counter-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .counter-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .counter-number {
        font-size: 38px;
    }

    .counter-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .why-badge {
        left: 15px;
        bottom: 15px;
        padding: 14px 20px;
    }

    .why-badge i {
        font-size: 26px;
    }

    .gallery-item {
        height: 280px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

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

    .contact-form-wrap {
        padding: 28px 22px;
    }

    .contact-form-wrap h3 {
        font-size: 26px;
    }

    .footer-top {
        padding: 50px 0 20px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-rera {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a,
    .footer-contact li {
        justify-content: center;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 130px;
    }

    .floating-whatsapp {
        left: 22px;
    }

    .floating-call {
        right: 22px;
    }

    .back-to-top {
        bottom: 10px;
        right: 22px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .about-img-2 {
        display: none;
    }

    .about-experience {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-flex;
    }

    .about-image-wrap {
        text-align: center;
    }

    .why-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-flex;
    }

    .gallery-item {
        height: 250px;
    }

    .contact-info-box {
        padding: 30px 22px;
    }

    .counter-box {
        padding: 18px 10px;
    }

    .counter-number {
        font-size: 32px;
    }

    .top-info,
    .top-social {
        gap: 18px;
    }
}