:root {
    --primary-orange: #E86036;
    --primary-hover: #D1542E;
    --navy-dark: #1A1F2B;
    --navy-light: #2A3143;
    --bg-body: #FFFFFF;
    --bg-light: #F4F7FB;
    --text-main: #1D2531;
    --text-light: #6C7581;
    --white: #FFFFFF;
    
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 12px;
    
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.03);
    --shadow-md: 0 15px 35px rgba(26, 31, 43, 0.08);
    
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--navy-dark); margin-bottom: 1rem; }
p { color: var(--text-light); margin-bottom: 1rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.text-primary {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar i {
    color: var(--primary-orange);
    margin-right: 5px;
}

/* Header */
.header-wrap {
    position: absolute;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.header-wrap.scrolled {
    position: fixed;
    top: 0;
    background: rgba(26, 31, 43, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--white);
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a,
.nav-links button {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    background: transparent;
    border: 0;
    padding: 0;
    font-family: inherit;
    line-height: inherit;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links button:hover,
.nav-links button:focus-visible {
    color: var(--primary-orange);
}

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 250px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown.active .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    color: var(--text-main) !important;
    display: block;
    padding: 10px 25px;
}
.dropdown-menu a:hover {
    color: var(--primary-orange) !important;
    background-color: var(--bg-light);
}

.header-actions .btn {
    padding: 10px 24px;
}

/* Full Hero Section */
.hero-full {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background-color: var(--navy-dark);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding: clamp(120px, 16vh, 170px) 0 clamp(170px, 24vh, 240px);
}

.hero-content {
    width: min(100%, 760px);
    text-align: left;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 4.8vw, 4.4rem);
    max-width: 760px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-wrap: balance;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 92px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.hero-slider-arrows,
.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.hero-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.22);
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.38);
    transition: width 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.hero-slider-dot.is-active {
    width: 34px;
    background: var(--primary-orange);
}

.hero-search-box {
    background: var(--white);
    border-radius: 50px;
    padding: 15px;
    display: flex;
    gap: 15px;
    max-width: 900px;
    align-items: center;
}

.search-field {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #Eaeaea;
    display: flex;
    flex-direction: column;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.search-field select, .search-field input {
    border: none;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--navy-dark);
    outline: none;
    width: 100%;
    background: transparent;
}
.search-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-bottom-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(90deg, rgba(26, 31, 43, 0.94) 0%, rgba(26, 31, 43, 0.78) 52%, rgba(26, 31, 43, 0.3) 100%);
    backdrop-filter: blur(6px);
    padding: 18px 0;
    color: var(--white);
}

.hero-stats-inner {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-stats-inner i { color: var(--primary-orange); }

/* Category Blocks */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(232, 96, 54, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.category-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.category-card p {
    font-size: 0.8rem;
    margin: 0;
}

/* Split Feature Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-images {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.split-img-1 {
    width: 90%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.split-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-xl);
    border: 10px solid var(--bg-light); /* Or white depending on parent background */
    box-shadow: var(--shadow-md);
}

.team-overlay {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: rgba(26, 31, 43, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    backdrop-filter: blur(5px);
}
.team-avatars { display: flex; }
.team-avatars img {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--navy-dark);
    margin-left: -10px;
}
.team-avatars img:first-child { margin-left: 0; }
.team-overlay p { margin:0; font-size: 0.85rem; }

.split-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.features-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.feature-mini {
    display: flex;
    gap: 15px;
}

.feature-mini-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.feature-mini h4 { font-size: 1.1rem; margin-bottom: 5px; }
.feature-mini p { font-size: 0.85rem; }

.split-actions {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.phone-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-action .icon {
    width: 50px; height: 50px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.phone-action div { font-size: 0.9rem; color: var(--text-light); }
.phone-action b { color: var(--navy-dark); font-size: 1.1rem; }


/* Services Cards (Property Style) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.prop-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.prop-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.prop-img {
    position: relative;
    height: 240px;
}

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

.prop-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(26, 31, 43, 0.8);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prop-price {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.prop-content { padding: 25px; }
.prop-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.prop-content .address { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; display: flex; gap: 5px; }

.prop-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #Eaeaea;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}
.prop-meta i { color: var(--primary-orange); margin-right: 5px; }

/* Photo Gallery */
.photo-gallery-section {
    background:
        radial-gradient(circle at top right, rgba(232, 96, 54, 0.14) 0%, rgba(232, 96, 54, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.gallery-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.gallery-head p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.gallery-head-card {
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(26, 31, 43, 0.14);
}

.gallery-head-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gallery-head-card span {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    grid-column: span 3;
    min-height: 320px;
    position: relative;
    border: 0;
    padding: 0;
    text-align: left;
    border-radius: 26px;
    overflow: hidden;
    background: var(--navy-dark);
    box-shadow: 0 18px 45px rgba(26, 31, 43, 0.12);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(26, 31, 43, 0.18);
}

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

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 17, 28, 0.03) 20%, rgba(12, 17, 28, 0.82) 100%);
}

.gallery-card-wide {
    grid-column: span 6;
}

.gallery-card-tall {
    grid-row: span 2;
    min-height: 658px;
}

.gallery-badge,
.gallery-card-copy {
    position: absolute;
    z-index: 1;
}

.gallery-badge {
    top: 18px;
    left: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-card-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.gallery-card-copy strong {
    display: block;
    color: var(--white);
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.gallery-card-copy span {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    line-height: 1.55;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(9, 13, 22, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-inner {
    width: min(100%, 1040px);
    max-height: calc(100vh - 56px);
    display: grid;
    gap: 16px;
    justify-items: center;
}

.gallery-lightbox-inner img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-inner p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    text-align: center;
    font-size: 1rem;
}

.gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Sub filters */
.filter-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.filter-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}
.filter-tag.active {
    background: var(--primary-orange);
    color: var(--white);
}

/* Vertical List + Map */
.list-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vertical-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}
.vertical-cards::-webkit-scrollbar { width: 5px; }
.vertical-cards::-webkit-scrollbar-thumb { background: #ccc; border-radius: 5px; }

.v-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    gap: 20px;
}

.v-card img {
    width: 100px; height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.v-card-content h4 { margin-bottom: 5px; font-size: 1.1rem; }
.v-card-content p { margin:0; font-size: 0.85rem; color: var(--text-light); }

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: url('https://maps.googleapis.com/maps/api/staticmap?center=Pune&zoom=11&size=600x600&maptype=roadmap&style=feature:poi|visibility:off&style=feature:transit|visibility:off&style=element:labels|visibility:off&style=element:geometry|color:0xf4f7fb&style=element:labels.text.fill|color:0x6c7581&style=element:labels.text.stroke|color:0xffffff') center/cover;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex; justify-content: center; align-items: center;
}

.map-pin {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.map-pin i { font-size: 1.5rem; color: var(--primary-orange); }

/* Inner Page */
.inner-header {
    background: var(--navy-dark);
}
.inner-header .header-wrap { position: relative; background: var(--navy-dark); }
.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}
.page-header h1 { font-size: 2.8rem; margin-bottom: 10px; }
.page-breadcrumb { color: var(--text-light); font-size: 0.9rem; }

/* Contact Page */
.contact-page {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.contact-hero.page-header {
    background: linear-gradient(135deg, #171c28 0%, #232a3b 52%, #101522 100%);
    color: var(--white);
    text-align: left;
    padding: clamp(120px, 16vh, 170px) 0 72px;
    position: relative;
    overflow: hidden;
}

.contact-hero.page-header::before,
.contact-hero.page-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.contact-hero.page-header::before {
    width: 420px;
    height: 420px;
    background: rgba(232, 96, 54, 0.18);
    top: -170px;
    left: -120px;
}

.contact-hero.page-header::after {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    right: -130px;
    top: -90px;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.contact-hero-copy {
    padding-right: 18px;
}

.contact-hero.page-header .text-primary {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}

.contact-hero.page-header h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 4.6vw, 4.7rem);
    line-height: 1.02;
    max-width: 14ch;
    margin-bottom: 18px;
}

.contact-hero.page-header p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    font-size: 1.06rem;
    margin-bottom: 0;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contact-hero-actions .btn {
    min-width: 160px;
}

.contact-hero-actions .btn i {
    margin-right: 10px;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.contact-hero-stat {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hero-stat:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-hero-stat span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.contact-hero-stat strong {
    color: var(--white);
    font-size: 1rem;
    text-align: right;
}

.contact-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.contact-hero-pills span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 500;
}

.contact-section {
    background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
}

.contact-panel {
    background: var(--white);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 55px rgba(26, 31, 43, 0.08);
    border: 1px solid rgba(26, 31, 43, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(232, 96, 54, 0.12) 0%, rgba(232, 96, 54, 0) 70%);
    pointer-events: none;
}

.contact-details-panel h2 {
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.contact-intro {
    margin-bottom: 24px;
    max-width: 580px;
    font-size: 1.02rem;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #e7ecf3;
    box-shadow: 0 8px 20px rgba(26, 31, 43, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 96, 54, 0.3);
    box-shadow: 0 15px 30px rgba(26, 31, 43, 0.08);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 96, 54, 0.12);
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.contact-card span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-card strong {
    display: block;
    color: var(--navy-dark);
    font-size: 1.02rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.contact-card small {
    display: block;
    color: var(--text-light);
    margin-top: 4px;
}

.contact-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8edf4;
}

.contact-note p,
.contact-map-panel p,
.contact-sidecard p {
    margin-bottom: 0;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.coverage-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(26, 31, 43, 0.05);
    color: var(--navy-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form-panel {
    background: linear-gradient(180deg, #1a1f2b 0%, #232a3b 100%);
    color: var(--white);
}

.contact-form-panel .panel-head h3 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.contact-form-panel .panel-head p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.contact-form-panel .text-primary {
    color: rgba(255, 255, 255, 0.72);
}

.contact-form-grid {
    margin-top: 24px;
    gap: 18px;
}

.contact-form-grid .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-grid .form-group label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.contact-form-panel .form-control {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 18px;
    min-height: 54px;
    color: var(--navy-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-form-panel .form-control::placeholder {
    color: #97a1ae;
}

.contact-form-panel select.form-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6c7581 50%), linear-gradient(135deg, #6c7581 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

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

.contact-form-panel .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(232, 96, 54, 0.12);
}

.contact-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    box-shadow: 0 18px 30px rgba(232, 96, 54, 0.26);
}

.contact-map-section {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.contact-map-panel h3,
.contact-sidecard h3 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.contact-map-panel p,
.contact-sidecard p {
    max-width: 540px;
}

.contact-map-card {
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    margin-top: 16px;
    box-shadow: 0 20px 50px rgba(26, 31, 43, 0.08);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-sidecard {
    background: linear-gradient(180deg, #111722 0%, #1a1f2b 100%);
    color: var(--white);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(26, 31, 43, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.contact-sidecard .text-primary {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.service-areas {
    display: grid;
    gap: 14px;
}

.service-areas li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
}

.service-areas i {
    color: var(--primary-orange);
}

.contact-sidecard-btn {
    width: 100%;
}

/* Service Content */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
.service-main-img {
    border-radius: var(--radius-xl);
    width: 100%; height: 450px; object-fit: cover;
    margin-bottom: 40px;
}
.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.service-text h3 {
    margin-top: 30px;
    font-size: 1.5rem;
}
.service-list { margin: 20px 0; }
.service-list li {
    margin-bottom: 15px; position: relative; padding-left: 30px;
}
.service-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-orange);
    position: absolute; left: 0; top: 2px; font-size: 1.1rem;
}

.sidebar {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}
.sidebar h3 { border-bottom: 1px solid #ddd; padding-bottom: 15px; margin-bottom: 20px; font-size: 1.4rem; }
.sidebar-services a {
    display: block; padding: 12px 20px; background: var(--white);
    border-radius: var(--radius-md); margin-bottom: 10px; transition: var(--transition);
    font-weight: 500; color: var(--text-main);
}
.sidebar-services a:hover, .sidebar-services a.active {
    background: var(--primary-orange); color: var(--white);
}

.contact-widget {
    background: var(--navy-dark); color: var(--white); text-align: center;
    padding: 30px; border-radius: var(--radius-lg); margin-top: 30px;
}
.contact-widget h3 { color: var(--white) !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 15px; font-size: 1.4rem; }
.contact-widget .btn { width: 100%; margin-top: 15px; background: var(--primary-orange); border:none; }

/* Form */
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group.full { grid-column: span 2; }
.form-control {
    width: 100%; padding: 15px 20px; border: 1px solid #eaeaea;
    border-radius: var(--radius-md); font-family: inherit; font-size: 1rem;
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary-orange); }

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--white); }
.footer p { color: rgba(255,255,255,0.6); }

.footer-title {
    font-size: 1.2rem; margin-bottom: 25px; color: var(--white);
}

.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-orange); }

.footer-contact li {
    display: flex; gap: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.6);
}
.footer-contact i { color: var(--primary-orange); font-size: 1.2rem; margin-top: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem;
}

.mobile-menu-btn { display: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Float Call */
.float-call {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #31a24c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(49, 162, 76, 0.4);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}

.float-call:hover {
    transform: translateY(-5px);
    color: white;
}

/* Float WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(232, 96, 54, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.float-wa:hover {
    transform: translateY(-5px);
    color: white;
}

@media (max-width: 992px) {
    .split-section, .list-map-section, .content-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-search-box { flex-direction: column; border-radius: 20px; }
    .search-field { border-right: none; padding: 10px 0; border-bottom: 1px solid #eaeaea; width: 100%; }
    .hero-content h1 { font-size: 3rem; }
    .hero-slider-controls { bottom: 102px; }
    .split-images { padding-right: 0; display: flex; justify-content: center; }
    .split-img-2 { right: auto; left: 10%; width: 60%; }
    .gallery-head { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .gallery-card,
    .gallery-card-wide { grid-column: span 3; }
    .gallery-card-tall { min-height: 420px; grid-row: span 1; }
    .contact-hero-inner,
    .contact-layout,
    .contact-map-section { grid-template-columns: 1fr; }
    .contact-hero-copy { padding-right: 0; }
    .contact-map-card { height: 360px; }
}

@media (max-width: 768px) {
    .nav-links, .header-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .top-bar-inner { flex-direction: column; gap: 10px; }
    .logo img { width: 54px; height: 54px; }
    .footer-top { grid-template-columns: 1fr; }
    .features-2x2 { grid-template-columns: 1fr; }
    .hero-stage { padding: 110px 0 210px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-slider-controls {
        bottom: 122px;
        justify-content: center;
    }
    .hero-slider-arrows { display: none; }
    .hero-stats-inner { gap: 12px; font-size: 0.82rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card,
    .gallery-card-wide,
    .gallery-card-tall { grid-column: auto; min-height: 300px; }
    .gallery-lightbox { padding: 16px; }
    .gallery-lightbox-close { top: 16px; right: 16px; }
    .page-header h1, .split-text h2 { font-size: 2rem; }
    .contact-hero.page-header { padding: 84px 0 56px; }
    .contact-panel { padding: 24px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-grid .form-group.full { grid-column: auto; }
    .contact-map-card { height: 300px; }
}
