/* ===============================
   Chitturi Infracon Website CSS
   Clean Premium Real Estate Theme
================================= */

:root {
    --primary: #1f2933;
    --secondary: #b88938;
    --secondary-dark: #8f6726;
    --light: #f8f5ef;
    --white: #ffffff;
    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
    --container: 1180px;
}

/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* Common */

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-title.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker,
.hero-kicker {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--muted);
    font-size: 17px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.full-btn {
    width: 100%;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Header */

.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.top-contact a,
.top-links a {
    color: var(--white);
}

.top-links a {
    color: var(--secondary);
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 0.03em;
}

.logo-text span {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 13px 14px;
    color: var(--primary);
    font-weight: 800;
    border-radius: 999px;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
    background: rgba(184, 137, 56, 0.09);
}

.main-nav small {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    border-radius: 10px;
    padding: 10px 12px;
}

.dropdown small {
    display: block;
    margin-left: 0;
    margin-top: 2px;
}



.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    display: block;
}

/* Hero Slider */

.hero-slider {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--primary);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.86),
        rgba(17, 24, 39, 0.58),
        rgba(17, 24, 39, 0.25)
    );
}

.hero-slide-inner {
    position: relative;
    z-index: 3;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 780px;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-text {
    max-width: 650px;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.45);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dots button.active {
    width: 34px;
    border-radius: 999px;
    background: var(--secondary);
}

/* Status Badges */

.hero-status {
    margin-top: 24px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-badge.sold {
    background: var(--primary);
    color: var(--white);
}

.status-badge.available {
    background: var(--secondary);
    color: var(--white);
}

.status-badge.small {
    padding: 6px 11px;
    font-size: 11px;
    margin-top: 12px;
}

/* Home Sections */

.project-grid,
.advantages-grid,
.testimonial-grid {
    display: grid;
    gap: 26px;
}

.project-grid {
    grid-template-columns: repeat(4, 1fr);
}

.advantages-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);

}

.project-card,
.advantage-card,
.testimonial-card,
.feature-card,
.vision-card,
.tower-card,
.floorplan-card {
    transition: 0.25s ease;
}

.project-card:hover,
.advantage-card:hover,
.feature-card:hover,
.vision-card:hover,
.tower-card:hover,
.floorplan-card:hover {
    transform: translateY(-6px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img,
.tower-card img,
.floorplan-card img {
    width: 100%;
    object-fit: cover;
}

.project-image img {
    height: 100%;
    transition: 0.35s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.project-body,
.tower-card-body,
.floorplan-body {
    padding: 24px;
}

.project-body h3,
.tower-card-body h3,
.floorplan-body h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.project-body p,
.tower-card-body p,
.floorplan-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.mini-list {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.mini-list li {
    position: relative;
    padding-left: 22px;
    color: var(--primary);
    font-weight: 700;
}

.mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    background: var(--secondary);
    border-radius: 50%;
}

.text-link {
    color: var(--secondary);
    font-weight: 900;
}

.text-link:hover {
    color: var(--secondary-dark);
}

.advantage-card,
.feature-card,
.vision-card,
.testimonial-card,
.contact-info-card,
.location-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.advantage-icon,
.feature-number,
.vision-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(184, 137, 56, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
}

.advantage-card h3,
.feature-card h3,
.vision-card h3,
.testimonial-card h4 {
    color: var(--primary);
}

.advantage-card h3,
.feature-card h3,
.vision-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.advantage-card p,
.feature-card p,
.vision-card p,
.testimonial-card p {
    color: var(--muted);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.amenity-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    transition: 0.2s ease;
}

.amenity-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.why-section {
    background: var(--primary);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.why-image img {
    border-radius: 26px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.why-content h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.why-content > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    margin-bottom: 28px;
}

.why-points {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.why-points div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px;
}

.why-points strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    font-size: 18px;
}

.why-points span {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    right: 22px;
    font-size: 70px;
    line-height: 1;
    color: rgba(184, 137, 56, 0.18);
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

/* CTA */

.cta-section {
    background:
        linear-gradient(rgba(31, 41, 51, 0.9), rgba(31, 41, 51, 0.9)),
        url('../images/hero/cta-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 74px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-inner h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 10px;
}

.cta-inner p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Inner Pages */

.page-hero {
    position: relative;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.82);
}

/* About / Project Detail */

.about-grid,
.project-detail-grid,
.location-detail-grid,
.booking-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.booking-grid,
.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.about-content h2,
.project-detail-content h2,
.location-detail-grid h2,
.booking-content h2,
.contact-info-wrap h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 18px;
}

.about-content > p,
.project-detail-content > p,
.location-detail-grid > div > p,
.booking-content > p,
.contact-info-wrap > p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 18px;
}

.about-image img,
.project-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.about-points,
.project-facts,
.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.project-facts {
    grid-template-columns: 1fr 1fr;
}

.about-points div,
.project-facts div,
.address-box,
.booking-note {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}

.about-points strong,
.project-facts strong {
    display: block;
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 4px;
}

.about-points span,
.project-facts span {
    color: var(--muted);
}

.vision-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.location-grid,
.location-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.location-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
}

.location-card img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
}

.location-card h3,
.contact-info-card h3,
.location-info-card h3,
.address-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.location-card p,
.contact-info-card p,
.location-info-card p,
.address-box p {
    color: var(--muted);
}

/* Metro / Towers */

.tower-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.tower-card img {
    height: 220px;
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.floorplan-card a {
    display: block;
    overflow: hidden;
}

.floorplan-card img {
    height: 240px;
    background: var(--light);
    transition: 0.3s ease;
}

.floorplan-card:hover img {
    transform: scale(1.04);
}

.related-towers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.related-tower-card {
    min-height: 110px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    color: var(--primary);
    font-weight: 800;
    transition: 0.25s ease;
}

.related-tower-card:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}

.related-tower-card small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 800;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sold-card {
    opacity: 0.78;
}

.sold-card:hover {
    opacity: 1;
}

.soldout-section {
    padding: 0 0 70px;
    background: var(--white);
}

.soldout-box {
    background: linear-gradient(135deg, rgba(184, 137, 56, 0.12), rgba(31, 41, 51, 0.06));
    border: 1px solid rgba(184, 137, 56, 0.28);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.soldout-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.soldout-box h2 {
    color: var(--primary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.soldout-box p {
    color: var(--muted);
    font-size: 17px;
    max-width: 850px;
    margin-bottom: 22px;
}

.soldout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-placeholder {
    min-height: 360px;
    background:
        linear-gradient(rgba(31, 41, 51, 0.84), rgba(31, 41, 51, 0.84)),
        url('../images/projects/metro-tuni.jpg') center/cover no-repeat;
    border-radius: 26px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.map-placeholder h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 430px;
}

/* Forms */

.form-card {
    padding: 34px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(184, 137, 56, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-small-note {
    margin-top: 14px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

.form-small-note a,
.contact-info-card a {
    color: var(--secondary);
    font-weight: 800;
}

.booking-note h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.booking-note ul {
    display: grid;
    gap: 8px;
}

.booking-note li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-weight: 700;
}

.booking-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
}

.booking-alert {
    background: rgba(31, 41, 51, 0.06);
    border-left: 4px solid var(--secondary);
    padding: 16px 18px;
    border-radius: 12px;
    color: var(--text);
}

/* Lightbox */

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.image-lightbox.show {
    display: flex;
}

.image-lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* Footer */

.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    padding: 70px 0 45px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 36px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4,
.footer-location-card h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-about h3 {
    font-size: 26px;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
}

.footer-links small {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    color: var(--secondary);
    font-weight: 800;
}

.footer-contact p {
    margin-bottom: 16px;
}

.footer-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 20px;
    padding-bottom: 42px;
}

.footer-location-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px;
}

.footer-location-card p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    background: #25d366;
    color: var(--white);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

/* Responsive */

@media (max-width: 1200px) {
    .tower-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .floorplan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-towers {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .header-inner {
        min-height: 74px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 12px;
        display: none;
    }

    .main-nav.show {
        display: block;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav a {
        border-radius: 12px;
    }

    .main-nav small {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 14px;
        display: block;
    }

    .header-call {
        display: none;
    }

    .hero-slider,
    .hero-slide-inner {
        min-height: 640px;
    }

    .hero-slide-inner {
        padding: 80px 0;
    }

    .project-grid,
    .advantages-grid,
    .testimonial-grid,
    .vision-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .about-grid,
    .project-detail-grid,
    .location-detail-grid,
    .booking-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-image img,
    .project-detail-image img {
        height: 430px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider,
    .hero-slide-inner {
        min-height: 620px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 58px 0;
    }

    .top-contact {
        flex-direction: column;
        gap: 4px;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text span {
        font-size: 12px;
    }

    .hero-slider,
    .hero-slide-inner {
        min-height: 570px;
    }

    .hero-slide-inner {
        padding: 64px 0;
    }

    .page-hero {
        min-height: 360px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .project-grid,
    .advantages-grid,
    .testimonial-grid,
    .vision-grid,
    .features-grid,
    .floorplan-grid,
    .related-towers,
    .project-facts,
    .tower-grid,
    .location-list-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-image img,
    .about-image img,
    .project-detail-image img {
        height: 330px;
    }

    .tower-card img,
    .floorplan-card img {
        height: 260px;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-card img {
        height: 230px;
    }

    .form-card,
    .advantage-card,
    .testimonial-card,
    .feature-card,
    .vision-card {
        padding: 24px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 11px 15px;
        font-size: 14px;
    }

    .image-lightbox {
        padding: 14px;
    }

    .image-lightbox-close {
        top: 12px;
        right: 12px;
    }
}


.footer-card-phone {
    margin-top: 14px;
}

.footer-location-card a {
    color: var(--secondary);
    font-weight: 800;
}

.footer-location-card a:hover {
    color: var(--white);
}


.project-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    margin-bottom: 22px;
}

.project-brand-logo img {
    max-width: 190px;
    max-height: 80px;
    object-fit: contain;
}

.project-brand-logo.dark-logo {
    background: rgba(255, 255, 255, 0.92);
}


.project-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    margin-bottom: 22px;
}

.project-brand-logo img {
    max-width: 190px;
    max-height: 80px;
    object-fit: contain;
}

.project-brand-logo.dark-logo {
    background: rgba(255, 255, 255, 0.92);
}

.project-card-logo {
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.project-card-logo img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
}