/* ============================================
   City Property Links - Modern Real Estate Website
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --primary: #1a5f7a;
    --primary-dark: #0d4a5f;
    --primary-light: #2a7f9e;
    --secondary: #c9a227;
    --secondary-dark: #a8861f;
    --accent: #e8b923;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.highlight {
    color: var(--secondary);
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 3px solid transparent;
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite reverse;
}

.loader span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.navbar.scrolled .logo-main,
.navbar.scrolled .logo-sub,
.navbar.scrolled .nav-link {
    color: var(--dark);
}

.navbar.scrolled .logo-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    object-fit: contain;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    padding: 2px;
}

.navbar.scrolled .logo-image {
    background: transparent;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 95, 122, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ---- Search Section ---- */
.search-section {
    margin-top: -60px;
    position: relative;
    z-index: 100;
    padding-bottom: 80px;
}

.search-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-group {
    flex: 1;
    min-width: 180px;
}

.search-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.search-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.search-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.search-btn {
    min-width: 150px;
}

/* ---- Section Styles ---- */
.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.section-header.light .section-title,
.section-header.light .section-description {
    color: var(--white);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- About Section ---- */
.about-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
}

.about-content .section-badge {
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: var(--gray-700);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 35px 0;
}

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

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ---- Projects Section ---- */
.projects-section {
    padding: 100px 0;
}

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

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.project-status {
    padding: 6px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.project-status.available {
    background: #10b981;
    color: var(--white);
}

.project-status.developing {
    background: var(--secondary);
    color: var(--dark);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.detail-item i {
    color: var(--primary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.project-link:hover {
    color: var(--secondary);
}

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

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

.projects-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.projects-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* ---- Properties Section ---- */
.properties-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.property-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-xl);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.property-card.hidden {
    display: none;
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.property-badge.hot {
    background: #ef4444;
    color: var(--white);
}

.property-badge.new {
    background: #10b981;
    color: var(--white);
}

.property-badge.premium {
    background: var(--secondary);
    color: var(--dark);
}

.property-badge.affordable {
    background: var(--primary);
    color: var(--white);
}

.property-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.property-card:hover .property-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.property-content {
    padding: 25px;
}

.property-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.property-price .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.property-price .price-type {
    font-size: 0.8rem;
    background: var(--gray-200);
    padding: 3px 10px;
    border-radius: var(--radius);
    color: var(--gray-600);
}

.property-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.property-location {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.property-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.property-features span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.property-features i {
    color: var(--primary);
    margin-right: 5px;
}

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

.property-footer .btn {
    flex: 1;
}

.properties-cta {
    text-align: center;
    margin-top: 50px;
}

/* ---- Services Section ---- */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.services-section .container {
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--secondary);
}

/* ---- Why Choose Us Section ---- */
.why-us-section {
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-badge {
    margin-bottom: 15px;
}

.why-us-content .section-title {
    text-align: left;
}

.why-us-text {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.advantage-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.advantage-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.advantage-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.advantage-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.why-us-image {
    position: relative;
}

.why-us-image > img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    left: -30px;
}

.floating-card.card-1 i {
    font-size: 2rem;
    color: var(--secondary);
}

.floating-card.card-1 span {
    font-weight: 600;
    color: var(--dark);
}

.floating-card.card-2 {
    bottom: 40px;
    right: -30px;
    flex-direction: column;
    text-align: center;
    animation-delay: 1.5s;
}

.floating-card.card-2 .big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-card.card-2 span:last-child {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-slider {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.testimonials-slider .swiper-pagination-bullet {
    background: var(--gray-400);
    width: 10px;
    height: 10px;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    color: var(--gray-600);
    font-size: 0.95rem;
    display: block;
}

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

.social-links {
    padding: 25px;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}

.social-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: var(--white);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px;
}

.footer-logo .logo-icon {
    background: var(--secondary);
    color: var(--dark);
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--gray-400);
}

.footer-about p {
    color: var(--gray-400);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

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

.footer-links ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-400);
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-contact ul li a {
    color: var(--gray-400);
}

.footer-contact ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

.whatsapp-float .tooltip {
    position: absolute;
    left: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ---- Back to Top Button ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

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

/* ---- Responsive Design ---- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .projects-grid,
    .properties-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--white);
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 12px;
        border-radius: var(--radius-full);
    }

    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: 0;
    }

    .experience-badge {
        left: 0;
    }

    .why-us-image {
        order: -1;
    }

    .floating-card.card-1 {
        left: 0;
    }

    .floating-card.card-2 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-group {
        min-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .search-widget {
        padding: 25px;
    }

    .property-card,
    .project-card,
    .service-card {
        margin: 0 5px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .info-card {
        padding: 20px;
    }
}

/* ---- Featured Project Responsive ---- */
@media (max-width: 768px) {
    .featured-project {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
    }

    .featured-project h2 {
        font-size: 1.8rem !important;
    }

    .featured-project p {
        font-size: 1rem !important;
    }
}

/* ---- Animation Classes ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Swiper Custom Styles ---- */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-400);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ---- CEO Section Styles ---- */
.ceo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ceo-section img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    will-change: transform;
}

.ceo-section .ceo-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Image loading optimization */
.ceo-section img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 992px) {
    .ceo-section .ceo-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .ceo-section .ceo-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .ceo-section .ceo-content {
        padding: 30px !important;
    }

    .ceo-section .ceo-content h3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .ceo-section {
        padding: 60px 0;
    }

    .ceo-section .ceo-image-wrapper {
        max-width: 100%;
    }

    .ceo-section .ceo-content > div:last-child {
        grid-template-columns: 1fr !important;
    }

    .ceo-section .ceo-content p {
        font-size: 0.95rem !important;
    }
}

/* ---- Collaboration Section Responsive ---- */
.collaboration-section img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.collaboration-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

/* Image loading optimization */
.collaboration-section img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 992px) {
    .collaboration-section > .container > div:last-of-type {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .collaboration-section {
        padding: 60px 0 !important;
    }

    .collaboration-section h2 {
        font-size: 1.8rem !important;
    }

    .collaboration-section > .container > div:last-of-type > div:last-child > div:first-child {
        padding: 25px !important;
    }

    .collaboration-section > .container > div:last-of-type > div:last-child > div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }
}

/* ---- Interactive Maps Styling ---- */
.interactive-map-container {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.sector-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.dha-overview-map {
    min-height: 350px;
}

/* Plot Cell Styling */
.plot-cell {
    cursor: pointer;
    transition: all 0.3s ease;
}

.regular-plot {
    fill: #ffeb3b;
    stroke: #f9a825;
    stroke-width: 1;
}

.regular-plot:hover {
    fill: #fff176;
    stroke: #f57f17;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.regular-plot-8marla {
    fill: #ce93d8;
    stroke: #9c27b0;
    stroke-width: 1;
}

.regular-plot-8marla:hover {
    fill: #e1bee7;
    stroke: #7b1fa2;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* CPL Inventory Plots (Red) */
.cpl-plot {
    fill: #ef5350;
    stroke: #c62828;
    stroke-width: 2;
    animation: cplPulse 2s infinite;
}

.cpl-plot:hover {
    fill: #f44336;
    stroke: #b71c1c;
    stroke-width: 3;
    filter: drop-shadow(0 3px 6px rgba(220,53,69,0.4));
    transform: scale(1.05);
}

.cpl-plot-8marla {
    fill: #ef5350;
    stroke: #c62828;
    stroke-width: 2;
    animation: cplPulse 2s infinite;
}

.cpl-plot-8marla:hover {
    fill: #f44336;
    stroke: #b71c1c;
    stroke-width: 3;
    filter: drop-shadow(0 3px 6px rgba(220,53,69,0.4));
}

@keyframes cplPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Plot Numbers */
.plot-number {
    font-size: 9px;
    font-weight: 600;
    fill: #1a1a2e;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
}

.cpl-number {
    fill: white;
    font-weight: 700;
}

/* Sector Blocks in DHA Map */
.sector-block {
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-block:hover rect {
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.cpl-sector:hover rect:first-of-type {
    stroke-width: 5;
}

/* Plot Modal Styling */
.plot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.plot-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.plot-modal-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #1a1a2e 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.plot-modal-header i {
    font-size: 2rem;
    color: #c9a227;
    margin-bottom: 10px;
    display: block;
}

.plot-modal-header h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c9a227;
}

.plot-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.plot-modal-close:hover {
    color: #c9a227;
    transform: rotate(90deg);
}

.plot-modal-body {
    padding: 25px;
}

.plot-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.plot-detail-row:last-child {
    border-bottom: none;
}

.plot-detail-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.plot-detail-value {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

.plot-status-available {
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.plot-modal-footer {
    padding: 20px 25px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-inquire,
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-inquire {
    background: linear-gradient(135deg, #c9a227 0%, #e8b923 100%);
    color: #1a1a2e;
}

.btn-inquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}

.btn-call {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.4);
}

/* Tooltip for plots */
.plot-tooltip {
    position: absolute;
    background: #1a1a2e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translate(-50%, -100%);
    margin-top: -10px;
}

.plot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a1a2e;
}

/* ---- Sector Maps Section Responsive ---- */
@media (max-width: 768px) {
    .sector-maps-section > div:nth-child(2),
    .sector-maps-section > div:nth-child(3) {
        grid-template-columns: 1fr !important;
    }

    .sector-maps-section h3 {
        font-size: 1.6rem !important;
    }

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

    .plot-number {
        font-size: 7px;
    }

    .dha-overview-map {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .sector-maps-section > div:last-child > div:nth-child(2) {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .interactive-map-container {
        overflow-x: auto;
    }

    .sector-map-svg {
        min-width: 500px;
    }

    .dha-overview-map {
        min-width: 600px;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .plot-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .plot-modal-header {
        padding: 15px;
    }

    .plot-modal-body {
        padding: 15px;
    }

    .plot-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ---- Google Maps Section Responsive ---- */
.google-maps-section {
    width: 100%;
}

.google-maps-section iframe {
    max-width: 100%;
}

@media (max-width: 992px) {
    .google-maps-section > div:nth-child(3) {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .google-maps-section h3 {
        font-size: 1.6rem !important;
    }

    .google-maps-section h4 {
        font-size: 1.2rem !important;
    }

    .google-maps-section > div:nth-child(2) > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .google-maps-section > div:last-child > div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }

    .google-maps-section > div:nth-child(2) > div:nth-child(2) > div > a {
        padding: 12px !important;
    }
}

/* ---- Video Library Section ---- */
.video-library-section {
    position: relative;
    overflow: hidden;
}

.video-library-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.video-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.video-card .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-card .video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-card .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card .video-info {
    padding: 20px;
    background: var(--white);
}

.video-card .video-info h4 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.video-card:hover .video-info h4 {
    color: var(--primary);
}

.video-card .video-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Video Grid Responsive */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-library-section {
        padding: 60px 0 !important;
    }

    .video-library-section .section-title {
        font-size: 2rem !important;
    }

    .video-card .video-info {
        padding: 15px;
    }

    .video-card .video-info h4 {
        font-size: 1rem;
    }

    .video-card .video-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-library-section .section-badge {
        font-size: 0.75rem !important;
        padding: 6px 15px !important;
    }

    .video-library-section .section-title {
        font-size: 1.75rem !important;
    }

    .video-library-section .section-description {
        font-size: 0.9rem !important;
    }
}

/* ---- Director Section Responsive ---- */
@media (max-width: 768px) {
    .director-section {
        padding: 60px 0 !important;
    }

    .director-section .section-title {
        font-size: 2rem !important;
    }
}

/* ---- Digital Partner Section Responsive ---- */
.digital-partner-section {
    position: relative;
}

@media (max-width: 992px) {
    .digital-partner-section > div > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .digital-partner-section > div > div:last-child > div:first-child {
        order: 1;
    }

    .digital-partner-section > div > div:last-child > div:last-child {
        order: 2;
    }
}

@media (max-width: 768px) {
    .digital-partner-section {
        padding: 60px 0 !important;
    }

    .digital-partner-section h2 {
        font-size: 2rem !important;
    }

    .digital-partner-section > div > div:last-child > div:first-child > div > div:first-child {
        width: 220px !important;
        height: 220px !important;
    }

    .digital-partner-section > div > div:last-child > div:last-child {
        padding: 25px !important;
    }

    .digital-partner-section > div > div:last-child > div:last-child > div:last-child > div {
        flex-direction: column !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .digital-partner-section h3 {
        font-size: 1.5rem !important;
    }

    .digital-partner-section > div > div:last-child > div:first-child > div > div:first-child {
        width: 180px !important;
        height: 180px !important;
    }
}

/* ---- Interactive Maps Section Responsive ---- */
.interactive-maps-section {
    position: relative;
}

@media (max-width: 992px) {
    .interactive-maps-section > div:nth-child(3) {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .interactive-maps-section h3 {
        font-size: 1.75rem !important;
    }

    .interactive-maps-section > div:nth-child(2) > div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .interactive-maps-section > div:nth-child(3) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .interactive-maps-section > div:last-child {
        padding: 25px !important;
    }

    .interactive-maps-section > div:last-child h4 {
        font-size: 1.3rem !important;
    }

    .interactive-maps-section > div:last-child > div:first-child {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .interactive-maps-section > div:nth-child(2) > div:last-child {
        grid-template-columns: 1fr !important;
    }

    .interactive-maps-section > div:last-child > div:last-child > div:last-child {
        flex-direction: column !important;
    }

    .interactive-maps-section > div:last-child > div:last-child > div:last-child a {
        width: 100% !important;
        justify-content: center !important;
    }
}
