/* ============================================================
   EPDL Real Estate - Main Stylesheet
   Brand Color: #ED1C24
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --brand: #ed1c24;
    --brand-dark: #c0151b;
    --brand-light: #ff4d53;
    --dark: #0d0d0d;
    --dark-2: #1a1a1a;
    --dark-3: #242424;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --gold: #c9a84c;
    --font-display: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}
ul {
    list-style: none;
}

/* ─── Typography ────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.25;
    font-weight: 700;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}
.section-badge::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand);
}
.section-badge-dubble {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}

.section-badge-dubble::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand);
}
.section-badge-dubble::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}
.section-title span {
    color: var(--brand);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 48px;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--brand);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: 2px solid var(--brand);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.btn-brand:hover::before {
    transform: scaleX(1);
}
.btn-brand:hover {
    color: var(--white);
}
.btn-brand span,
.btn-brand i {
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--brand);
    border-color: var(--white);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--dark);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-dark:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}
/* ─── Navbar ────────────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0px 0;
    transition: all 0.35s ease;
}
@media (max-width: 767px) {
    #mainNav {
        padding-bottom: 1rem !important;
    }
}
/* transparent */
#mainNav.transparent {
    background: transparent;
}

@media (max-width: 768px) {
    /* #mainNav.transparent {
        background: #fff;
    } */
}

/* scroll effect */
#mainNav.scrolled {
    background: var(--white);
    padding: 0px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* ─── Brand ────────────────────────────────────────────── */
#mainNav .navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    transition: color 0.3s;
}

#mainNav .navbar-brand span {
    color: var(--brand);
}

#mainNav.scrolled .navbar-brand {
    color: var(--dark);
}

/* ─── Nav Links ────────────────────────────────────────────── */
#mainNav .nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding: 8px 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    transition: all 0.25s;
}

#mainNav.scrolled .nav-link {
    color: var(--dark) !important;
}

/* underline animation */
/* #mainNav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
} */

#mainNav .nav-link:hover {
    color: var(--brand) !important;
}
#mainNav .nav-link.active {
    transform: scaleX(1);
    color: var(--brand) !important;
}
/* ─── Dropdown ────────────────────────────────────────────── */
#mainNav .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px;
    min-width: 210px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: dropdown 0.25s ease;
}
#mainNav .dropdown-menu li {
    display: block;
    margin-bottom: 10px;
}
#mainNav .dropdown-menu li:last-child {
    margin-bottom: 0px;
}
/* dropdown animation */
@keyframes dropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* dropdown items */
#mainNav .dropdown-item {
    display: block;
    padding: 10px 16px;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: 0.25s;
    margin-bottom: 10px;
}
#mainNav .dropdown-item:last-child {
    margin-bottom: 0px;
}

#mainNav .dropdown-item i {
    transition: 0.25s;
}
#mainNav .dropdown-item:hover {
    background: var(--brand);
    color: #fff;
}
#mainNav .dropdown-item:hover i {
    color: #fff !important;
}

#mainNav .dropdown-item.active {
    background: var(--brand);
    color: #fff;
}
#mainNav .dropdown-item.active i {
    color: #fff !important;
}
/* ─── Desktop Hover Dropdown ───────────────────────────── */
@media (min-width: 992px) {
    #mainNav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ─── Mobile Navbar ───────────────────────────────────── */
#mainNav .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 6px 10px;
}

#mainNav.scrolled .navbar-toggler {
    border-color: var(--dark);
}

/* hamburger icon */
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Mobile Dropdown Fix ───────────────────────────── */
@media (max-width: 991px) {
    #mainNav .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
    }

    #mainNav .nav-link::after {
        display: none;
    }
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-section.active .hero-bg {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(237, 28, 36, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(237, 28, 36, 0.15);
    border: 1px solid rgba(237, 28, 36, 0.4);
    border-radius: 30px;
    color: var(--brand-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}
.hero-title span {
    color: var(--brand);
    position: relative;
    display: inline-block;
}
/* .hero-title span::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
} */

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num span {
    color: var(--brand);
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-slider-controls button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}
.hero-slider-controls button:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
}
.hero-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--brand);
}

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 12px;
    font-family: "Playfair Display";
    font-weight: 400;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-nav a:hover {
    color: var(--brand);
}
.breadcrumb-nav .sep {
    color: var(--brand);
}
.breadcrumb-nav .current {
    color: var(--white);
}

/* ─── Section Padding ───────────────────────────────────── */
.section-pad {
    padding: 100px 0;
}
.section-pad-sm {
    padding: 60px 0;
}

/* ─── Project Cards ─────────────────────────────────────── */
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.project-card-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover .project-card-img img {
    transform: scale(1.08);
}

.project-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.badge-handover {
    background: #10b981;
    color: #fff;
}
.badge-ongoing {
    background: #f59e0b;
    color: #fff;
}
.badge-ready {
    background: var(--brand);
    color: #fff;
}
.badge-upcoming {
    background: #6366f1;
    color: #fff;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}
.project-card-overlay .sfit {
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    border-radius: 50px;
    padding: 6px 16px;
}

.project-card-body {
    padding: 24px;
}
.project-card-body a {
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.project-card-body a:hover {
    color: var(--brand);
}
.project-card-body a:hover h3 {
    color: var(--brand);
}
.project-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    transition: color var(--transition);
}
.project-card:hover .project-card-body h5 {
    color: var(--brand);
}
.project-card-body p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 16px;
    font-size: 0.8rem;
    color: var(--gray);
}
.project-card-meta i {
    color: var(--brand);
    margin-right: 4px;
}
.project-card-meta span {
    text-wrap: wrap;
}
/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-tab {
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

/* ─── Stats / Glance Section ────────────────────────────── */
.glance-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.glance-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(237, 28, 36, 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.glance-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.glance-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.glance-card:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-4px);
}
.glance-card:hover::before {
    transform: scaleX(1);
}

.glance-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.glance-num span {
    color: var(--brand);
}
.glance-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.glance-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(237, 28, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--brand);
}

/* ─── Gallery / Fancybox ────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(237, 28, 36, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ─── Services Cards ────────────────────────────────────── */
.service-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--bs-border-color);
    transition: all var(--transition);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.service-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    transform: scaleY(1);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(237, 28, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--brand);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}
.service-card:hover h5 {
    color: var(--white);
}
.service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    transition: color var(--transition);
    line-height: 1.7;
}
.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ─── Why Us / FAQ ──────────────────────────────────────── */
.why-section {
    background: var(--gray-light);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color var(--transition);
}
.faq-item.active {
    border-color: var(--brand);
}
.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color var(--transition);
}
.faq-question:hover {
    color: var(--brand);
}
.faq-item.active .faq-question {
    color: var(--brand);
}
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    background: var(--brand);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

/* Why Us Feature Items */
.why-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 16px;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.why-feature:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}
.why-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(237, 28, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand);
    flex-shrink: 0;
}
.why-feature-text h6 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.why-feature-text p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ─── Contact Section ───────────────────────────────────── */
.contact-section {
    background: var(--white);
}
.contact-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-md);
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-control-custom:focus {
    border-color: var(--brand);
}
.form-control-custom::placeholder {
    color: #adb5bd;
}
textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

.form-label-custom {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

/* ─── About Page ────────────────────────────────────────── */
.about-section {
    position: relative;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--brand);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-experience-badge .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.about-experience-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.vision-card,
.mission-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}
.vision-card {
    background: var(--dark);
    color: var(--white);
}
.mission-card {
    background: var(--brand);
    color: var(--white);
}
.vision-card h4,
.mission-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.vision-card p,
.mission-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
}
.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

/* ─── Land Wanted ───────────────────────────────────────── */
.land-feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--bs-border-color);
    transition: all var(--transition);
    height: 100%;
}
.land-feature-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.land-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(237, 28, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.land-feature-card:hover .land-feature-icon {
    background: var(--brand);
    color: var(--white);
}
.land-feature-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.land-feature-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

/* ─── Blog ──────────────────────────────────────────────── */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}
.blog-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--brand);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.blog-card-body {
    padding: 28px;
}
.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 14px;
}
.blog-meta i {
    color: var(--brand);
    margin-right: 4px;
}
.blog-card-body h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card:hover h5 {
    color: var(--brand);
}
.blog-card-body p {
    font-size: 0.87rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    background: var(--dark-2);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-brand span {
    color: var(--brand);
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 0.875rem;
    /* color: rgba(255, 255, 255, 0.55); */
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i {
    color: var(--brand);
}

.footer-links a:hover {
    color: var(--brand);
}
.footer-links a:hover::before {
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}
.footer-contact-item i {
    color: var(--brand);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: rgba(255, 255, 255, 0.6); */
    color: var(--brand);

    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--brand);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
    color: var(--brand);
}

/* ─── Floating Buttons ──────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(237, 28, 36, 0.4);
}
#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}
#backToTop:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

#whatsappBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
}
#whatsappBtn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}
#whatsappBtn a:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
#whatsappBtn i {
    font-size: 1.2rem;
}

/* ─── Animations ────────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
[data-aos="fade-up"] {
    transform: translateY(40px);
}
[data-aos="fade-right"] {
    transform: translateX(-40px);
}
[data-aos="fade-left"] {
    transform: translateX(40px);
}
[data-aos="zoom-in"] {
    transform: scale(0.9);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* Count up animation */
.count-up {
    transition: none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── Alert / Toast ─────────────────────────────────────── */
.toast-custom {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 24px;
    border-radius: var(--radius);
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}
.toast-custom.show {
    transform: translateX(0);
}
.toast-custom.success i {
    color: #10b981;
}
.toast-custom.error i {
    color: var(--brand);
}

/* ─── Interior Section ──────────────────────────────────── */
.interior-section {
    background: var(--dark-3);
}

/* ─── CTA Strip ─────────────────────────────────────────── */
.cta-strip {
    background: var(--brand);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}
.cta-strip::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.cta-strip h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.cta-strip p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ─── Project Detail Page ───────────────────────────────── */
.project-detail-info {
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.detail-meta-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}
.detail-meta-item:last-child {
    border-bottom: none;
}
.detail-meta-item i {
    color: var(--brand);
    width: 20px;
    margin-top: 3px;
}
.detail-meta-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}
.detail-meta-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

/* ─── Development Page ──────────────────────────────────── */
.dev-section-title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}
.dev-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand);
    border-radius: 2px;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:first-child {
        grid-column: span 2;
    }
    .about-experience-badge {
        left: 16px;
        bottom: 16px;
    }
    .hero-stats {
        gap: 24px;
    }
    .contact-form-card {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 70px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:first-child {
        grid-column: span 1;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-slider-controls {
        bottom: 24px;
        right: 24px;
    }
    .hero-dots {
        bottom: 36px;
    }
    .filter-tabs {
        gap: 6px;
    }
    .filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    #backToTop {
        right: 20px;
        bottom: 20px;
    }
    #whatsappBtn {
        right: 20px;
        bottom: 20px;
    }
    #whatsappBtn .wa-label {
        display: none;
    }

    #whatsappBtn a {
        padding: 0px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* =============================
   Core Values Section
=============================*/

.core-values .value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 16px;
    background: var(--gray-light);
    height: 100%;
    transition: all 0.35s ease;
}

.core-values .value-card:hover {
    background: var(--brand);
    color: #fff;
}

.core-values .value-icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.core-values .value-card:hover .value-icon {
    color: #fff;
}

.core-values .value-title {
    margin-bottom: 12px;
    font-weight: 600;
}

.core-values .value-desc {
    font-size: 0.875rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.core-values .value-card:hover .value-desc {
    color: #fff;
}
