/* ==========================================================================
   KOV INTERIOR - LUXURY LANDING PAGE STYLESHEET
   Theme: Sand & Gold Luxury Architecture & Interior Design
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    --primary-gold: #C9A46C;
    --gold-hover: #B59058;
    --gold-light: #F1E5D3;
    --gold-accent: #D4B27C;
    --dark-bronze: #8F7049;
    --bg-light: #F8F6F1;
    --bg-card: #FFFFFF;
    --bg-secondary: #F3EFE9;
    --text-dark: #1E1E1E;
    --text-muted: #666666;
    --text-light: #8C8C8C;
    --border-light: #E5E1D8;
    --obsidian: #121212;
    --dark-surface: #1A1A1A;
    --white: #FFFFFF;

    --font-heading: 'Nunito Sans', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(201, 164, 108, 0.15);
    --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.25);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-style: normal !important;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

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

.container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Typography Helpers --- */
.font-serif {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--primary-gold);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(201, 164, 108, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 164, 108, 0.25);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.7;
}

/* --- Buttons & Action Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(201, 164, 108, 0.3);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 164, 108, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--primary-gold);
}

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

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

/* --- Top Header Bar --- */
.top-bar {
    background: var(--obsidian);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--primary-gold);
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.top-bar-socials a:hover {
    color: var(--primary-gold);
}

/* --- Site Header Wrapper (Smart Auto-Hide) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    will-change: transform;
    transform: translateY(0);
}

.site-header.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.site-header.nav-visible {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    width: 100%;
    height: 76px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
}

.navbar .nav-link {
    color: var(--text-dark);
}

.navbar .mobile-toggle {
    color: var(--text-dark);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 24px);
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* --- Live Blinking Hiring Dot (Beige/Gold Right Side) --- */
.hiring-live-dot {
    width: 7px;
    height: 7px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    margin-right: 0;
    box-shadow: 0 0 0 rgba(201, 164, 108, 0.4);
    animation: pulseLiveDot 1.5s infinite;
    vertical-align: middle;
}

@keyframes pulseLiveDot {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 164, 108, 0.75);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(201, 164, 108, 0);
        transform: scale(1.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 164, 108, 0);
        transform: scale(1);
    }
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-light);
    z-index: 2000;
    padding: 30px 24px;
    box-shadow: var(--shadow-dark);
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.mobile-drawer-close {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);

}

.mobile-nav-link:hover {
    color: var(--primary-gold);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(90deg, rgba(14, 14, 14, 0.82) 0%, rgba(14, 14, 14, 0.55) 50%, rgba(14, 14, 14, 0.25) 100%),
        url('assets/hero_image.webp') center/cover no-repeat;
    color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 40px 0;
        background: linear-gradient(180deg, rgba(14, 14, 14, 0.78) 0%, rgba(14, 14, 14, 0.5) 60%, rgba(14, 14, 14, 0.3) 100%),
            url('assets/hero_image.webp') 68% center/cover no-repeat;
    }
}

.hero-content {
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 210, 189, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Hero Stats Bar */
.hero-stats-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.hero-stats-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* --- Brand Partners Marquee --- */
.partners-section {
    padding: 50px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(30%);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

.brand-logo-img {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- About Showcase Section --- */
.about-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
}

/* --- Projects Showcase Section (Distinct Visual Separation) --- */
.projects-section {
    padding: 80px 0;
    background: var(--bg-light);
    /* Soft Sand #F8F6F1 */
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-images-wrap {
    position: relative;
}

.about-img-main {
    width: 85%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
}

.about-img-sub {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 8px solid #FFFFFF;
    box-shadow: var(--shadow-dark);
}

.about-badge-card {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(12px);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 164, 108, 0.4);
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0 40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 164, 108, 0.15);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary-gold);
    color: var(--white);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Filterable Projects Showcase --- */
.projects-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.projects-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 6px 20px rgba(201, 164, 108, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.project-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.4);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-zoom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.project-card:hover .project-zoom-btn {
    transform: scale(1);
}

.project-info {
    padding: 24px;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 12px;
}

/* --- Design Process Section --- */
.process-section {
    padding: 80px 0;
    background: var(--obsidian);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-6px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 164, 108, 0.4);
    line-height: 1;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-rating {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.quote-text {
    font-style: normal;
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.client-project {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Consultation Contact Section --- */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-light);
}

.contact-info-panel {
    background: var(--obsidian);
    color: var(--white);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 164, 108, 0.2);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.contact-form-panel {
    padding: 60px 48px;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    cursor: pointer;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: var(--primary-gold);
    font-size: 0.85rem;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

/* Rotate arrow 180deg ONLY when active/open */
.select-wrapper.open .select-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--gold-hover);
}

.form-select option {
    background-color: #FFFFFF;
    color: #1E1E1E;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
    background-color: #F8F6F1;
    color: #C9A46C;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 164, 108, 0.15);
}

/* --- Luxury Light/White Footer --- */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 0 30px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(201, 164, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    height: 54px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(201, 164, 108, 0.4);
    color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 164, 108, 0.3);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    color: #4A4A4A;
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Google Map Section --- */
.map-section {
    width: 100%;
    position: relative;
    background: var(--bg-light);
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 460px;
    margin-bottom: -55px;
    border: 0;
    display: block;
}

/* ==========================================================================
   FLOATING SOCIAL CONTACT WIDGET (Right Bottom Corner - Curved Arc Layout)
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.floating-dial-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.floating-contact-widget.active .floating-dial-menu {
    pointer-events: auto;
}

.dial-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3) translate(0, 0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Single Straight Vertical Line offsets */
.dial-item-facebook {
    bottom: 68px;
    right: 5px;
}

.dial-item-instagram {
    bottom: 126px;
    right: 5px;
}

.dial-item-call {
    bottom: 184px;
    right: 5px;
}

.dial-item-whatsapp {
    bottom: 242px;
    right: 5px;
}

.floating-contact-widget.active .dial-item {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translate(0, 0);
}

.floating-contact-widget.active .dial-item-facebook {
    transition-delay: 0.05s;
}

.floating-contact-widget.active .dial-item-instagram {
    transition-delay: 0.10s;
}

.floating-contact-widget.active .dial-item-call {
    transition-delay: 0.15s;
}

.floating-contact-widget.active .dial-item-whatsapp {
    transition-delay: 0.20s;
}

.dial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2.5px solid var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.dial-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.dial-whatsapp {
    background: #25D366;
}

.dial-call {
    background: #0078FF;
}

.dial-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.dial-facebook {
    background: #1877F2;
}

.dial-label {
    position: absolute;
    right: 58px;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.dial-item:hover .dial-label {
    opacity: 1;
    transform: translateX(0);
}

/* Main Trigger Button */
.floating-main-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    border: 2.5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-main-btn:hover {
    transform: scale(1.08);
    background: var(--gold-hover);
}

.floating-contact-widget.active .floating-main-btn {
    background: var(--obsidian);
    color: var(--primary-gold);
    transform: rotate(135deg);
}

/* --- Modals (Image Lightbox, Lead Form & Career Modal) --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 540px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 32px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-light);
    transform: scale(0.92);
    transition: var(--transition);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) transparent;
}

.modal-card .form-group {
    margin-bottom: 14px;
}

/* Custom Sleek Scrollbar for Modal Card */
.modal-card::-webkit-scrollbar {
    width: 5px;
}

.modal-card::-webkit-scrollbar-track {
    background: transparent;
    margin: 16px 0;
}

.modal-card::-webkit-scrollbar-thumb {
    background-color: var(--primary-gold);
    border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb:hover {
    background-color: var(--gold-hover);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

@media (max-width: 768px) {
    .modal-card {
        padding: 20px 18px;
        max-width: 92%;
        max-height: 80vh;
    }

    .modal-card .form-group {
        margin-bottom: 10px;
    }

    .modal-card .form-input,
    .modal-card .form-select,
    .modal-card .form-textarea {
        padding: 10px 14px;
        font-size: 0.88rem;
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(18, 18, 18, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-dark);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Image Lightbox Specific */
.lightbox-modal .modal-content {
    background: transparent;
    max-width: 90vw;
    padding: 0;
    box-shadow: none;
}

/* --- Luxury Project Gallery Lightbox (Pure Visual Focus) --- */
.project-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    user-select: none;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    top: 28px;
    left: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10002;
}

.lightbox-stage {
    position: relative;
    max-width: 88vw;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10005;
    backdrop-filter: blur(8px);
}

.lightbox-arrow:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev {
    left: 10px;
}

.lightbox-arrow.next {
    right: 10px;
}

.lightbox-main-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-thumbs-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 10px 4px;
    scrollbar-width: thin;
}

.lightbox-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
    opacity: 1;
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.project-card {
    cursor: pointer;
}

.project-view-badge {
    background: rgba(18, 18, 18, 0.85);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary-gold);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-card:hover .project-view-badge {
    background: var(--primary-gold);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .lightbox-arrow.prev {
        left: 10px;
        width: 44px;
        height: 44px;
    }

    .lightbox-arrow.next {
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .lightbox-counter {
        top: 18px;
        left: 16px;
        font-size: 0.85rem;
    }

    .lightbox-stage {
        max-height: 65vh;
    }

    .lightbox-main-img {
        max-height: 65vh;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Padding Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .about-section,
    .projects-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .contact-section,
    .map-section {
        padding: 60px 0;
    }

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

@media (max-width: 768px) {
    .about-section,
    .projects-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .contact-section,
    .map-section {
        padding: 36px 0 !important;
    }

    .footer {
        padding-top: 36px !important;
        padding-bottom: 24px !important;
    }

    .footer-grid {
        margin-bottom: 30px;
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1199px) {
    .navbar-links,
    .navbar-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .about-features-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 24px 0 32px;
    }

    .about-img-main {
        width: 100%;
        height: 350px;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    /* Mobile Responsive Buttons & Actions */
    .btn {
        padding: 9px 18px;
        font-size: 0.76rem;
        letter-spacing: 0.08em;
        width: auto;
        max-width: fit-content;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: auto;
    }

    .hero-actions .btn {
        width: auto;
        max-width: fit-content;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 15px;
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        width: auto;
        max-width: fit-content;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }
}