/* ============================================
   SHUBHARAMBH INFRA ADVISORS - MAIN STYLESHEET
   Deep Navy + Gold Luxury Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a2744;
    --primary-dark: #0f1a30;
    --primary-light: #253a5e;
    --accent: #c9a55c;
    --accent-dark: #a8883e;
    --accent-light: #dfc07a;
    --bg: #0b0f1a;
    --bg-alt: #060a12;
    --surface: #111827;
    --surface-light: #1a2332;
    --surface-lighter: #22304a;
    --text: #e8ecf1;
    --text-muted: #7a8ba0;
    --text-dark: #4a6178;
    --border: #1e2d44;
    --border-light: #2a3d5a;
    --white: #ffffff;
    --black: #000000;
    --danger: #e74c3c;
    --success: #27ae60;

    --font: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(26, 39, 68, 0.5);
    --shadow-gold: 0 0 20px rgba(201, 165, 92, 0.2);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container: 1200px;
    --navbar-height: 80px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

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

ul, ol {
    list-style: none;
}

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

button, input, textarea, select {
    font-family: var(--font);
    font-size: 1rem;
    outline: none;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ---------- Utility Classes ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

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

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--text-muted);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    min-height: 48px;
    font-family: var(--font);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 44px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 39, 68, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 165, 92, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(26, 39, 68, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(26, 39, 68, 0.4);
    border: 1px solid rgba(201, 165, 92, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.hero-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.hero-search input::placeholder {
    color: var(--text-dark);
}

.hero-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15);
}

.hero-search .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1rem;
}

.hero-search .search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 10;
    backdrop-filter: blur(20px);
}

.hero-search .search-results.show {
    display: block;
}

.hero-search .search-result-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.9rem;
    min-height: 48px;
}

.hero-search .search-result-item:last-child {
    border-bottom: none;
}

.hero-search .search-result-item:hover {
    background: var(--surface-light);
}

.hero-search .search-result-item i {
    color: var(--accent);
    font-size: 0.8rem;
}

.hero-search .search-result-item .result-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 165, 92, 0.15);
}

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

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Page Header ---------- */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(26, 39, 68, 0.15) 0%, transparent 70%),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-heading);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-dark);
}

/* ---------- Cards - Glassmorphism ---------- */
.card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 45, 68, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(201, 165, 92, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ---------- Project Cards ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.project-card:hover {
    border-color: rgba(201, 165, 92, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

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

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

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

.project-card-img .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: var(--font);
}

.project-card-img .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(11, 15, 26, 0.9), transparent);
    pointer-events: none;
}

.project-card-body {
    padding: 20px;
}

.project-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
    font-family: var(--font-heading);
}

.project-card-builder {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
}

.project-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.project-card-location i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 165, 92, 0.1);
}

.project-card-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.project-card-link {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition);
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
}

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

/* ---------- Featured Projects Scroll ---------- */
.featured-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 165, 92, 0.3) transparent;
}

.featured-scroll::-webkit-scrollbar {
    height: 6px;
}

.featured-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.featured-scroll::-webkit-scrollbar-thumb {
    background: rgba(201, 165, 92, 0.3);
    border-radius: 3px;
}

.featured-scroll .project-card {
    min-width: 320px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ---------- Why Choose Us ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    padding: 35px 30px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.feature-card:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-heading);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- About Preview ---------- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(201, 165, 92, 0.2);
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding: 10px 0;
}

.about-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.about-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ---------- Testimonials ---------- */
.testimonials-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 165, 92, 0.3) transparent;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: rgba(201, 165, 92, 0.3);
    border-radius: 3px;
}

.testimonial-card {
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

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

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-heading);
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.cta-phone:hover {
    color: var(--accent-light);
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(11, 15, 26, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    transition: all var(--transition);
    min-height: 48px;
}

.form-input::placeholder {
    color: var(--text-dark);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.1);
    background: rgba(17, 24, 39, 0.8);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a55c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.form-message {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--danger);
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.contact-info-value a {
    color: var(--text);
}

.contact-info-value a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition);
}

.contact-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.contact-form-wrapper {
    padding: 35px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201, 165, 92, 0.1);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.7) contrast(1.1) saturate(0.6);
}

/* ---------- Project Detail Page ---------- */
.project-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-top: 80px;
}

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

.project-hero .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.project-detail {
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-detail-header {
    margin-bottom: 30px;
}

.project-detail-type {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(201, 165, 92, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 165, 92, 0.2);
    font-family: var(--font);
}

.project-detail-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

.project-detail-builder {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.project-detail-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.project-detail-location i {
    color: var(--accent);
}

.project-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 15px;
    font-family: var(--font-heading);
}

.project-description {
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.project-description h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-heading);
}

.project-description p {
    color: var(--text-muted);
    line-height: 1.8;
}

.project-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.project-highlight {
    padding: 20px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.project-highlight:hover {
    border-color: rgba(201, 165, 92, 0.25);
}

.project-highlight-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.project-highlight-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.project-sidebar {
    position: sticky;
    top: 100px;
}

.project-inquiry-card {
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
}

.project-inquiry-card h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

.project-inquiry-card .card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ---------- About Page ---------- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-heading);
}

.about-story-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 35px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.mv-card:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateY(-3px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: var(--font-heading);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- Filter Pills ---------- */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    align-items: center;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 5px;
}

.filter-pill {
    padding: 8px 20px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.filter-select {
    padding: 10px 35px 10px 15px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.85rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a55c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all var(--transition);
    min-height: 48px;
}

.filter-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.1);
}

.filter-select option {
    background: var(--surface);
    color: var(--text);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: block;
}

.no-results h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
    font-family: var(--font-heading);
}

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(11, 15, 26, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius);
    width: 100%;
    max-width: 450px;
    padding: 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--accent);
    background: rgba(201, 165, 92, 0.1);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-success {
    text-align: center;
    padding: 20px 0;
}

.modal-success i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
    display: block;
}

.modal-success p {
    font-size: 1rem;
    color: var(--text);
}

/* ---------- Loading Spinner ---------- */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 165, 92, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ---------- About Page Extra ---------- */
.team-section {
    text-align: center;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-feature-item {
    padding: 25px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all var(--transition);
}

.about-feature-item:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateY(-3px);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-heading);
}

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

/* ---------- Section Alt Background ---------- */
.section-alt {
    background: linear-gradient(180deg, rgba(26, 39, 68, 0.08) 0%, transparent 100%);
}

/* ---------- Founder Content ---------- */
.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-content .about-text {
    text-align: center;
}

/* ---------- Developers Section ---------- */
.developers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.developer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    min-height: 48px;
    white-space: nowrap;
}

.developer-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 165, 92, 0.15);
}

/* ---------- CTA Buttons Center ---------- */
.cta-buttons {
    justify-content: center;
}

/* ---------- Dropdown Navigation ---------- */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.has-dropdown > .nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition);
    margin-left: 2px;
}

.nav-item.has-dropdown:hover > .nav-link::after,
.nav-item.has-dropdown.open > .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-item.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 400;
    transition: all var(--transition);
    white-space: nowrap;
    min-height: 44px;
}

.dropdown-menu .dropdown-item i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    opacity: 0.7;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(201, 165, 92, 0.1);
    color: var(--accent);
    padding-left: 25px;
}

.dropdown-menu .dropdown-item:hover i {
    opacity: 1;
}

.dropdown-divider {
    height: 1px;
    background: rgba(201, 165, 92, 0.1);
    margin: 6px 0;
}

/* ---------- Mega Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    border-top: none;
    position: relative;
}

.footer-gold-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-dark) 20%, var(--accent) 50%, var(--accent-dark) 80%, transparent 100%);
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.footer-brand .brand-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.footer-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 165, 92, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.footer-heading {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 36px;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 0.85rem;
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-office-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office-hours h5 {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font);
}

.footer-office-hours p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-rera {
    margin-top: 1.5rem;
    padding: 12px 16px;
    background: rgba(201, 165, 92, 0.08);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-rera strong {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(201, 165, 92, 0.2);
}

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

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Sticky Mobile CTA Bar ---------- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 165, 92, 0.2);
    padding: 0;
}

.mobile-cta-bar .cta-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.mobile-cta-bar .cta-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-height: 60px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.mobile-cta-bar .cta-bar-btn i {
    font-size: 1.2rem;
}

.mobile-cta-bar .cta-bar-btn.cta-call {
    background: var(--primary);
    color: var(--accent);
    border-right: 1px solid rgba(201, 165, 92, 0.15);
}

.mobile-cta-bar .cta-bar-btn.cta-whatsapp {
    background: #25d366;
    color: #fff;
}

.mobile-cta-bar .cta-bar-btn.cta-enquiry {
    background: var(--accent);
    color: var(--bg);
    border-left: 1px solid rgba(201, 165, 92, 0.15);
}

.mobile-cta-bar .cta-bar-btn:active {
    transform: scale(0.95);
}

/* ---------- Popup Inquiry Form ---------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.show {
    display: flex;
}

.popup-form {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(11, 15, 26, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 165, 92, 0.08);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.15);
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
}

.popup-close:hover {
    background: rgba(201, 165, 92, 0.2);
    color: var(--accent);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.popup-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font);
}

.popup-form .form-input {
    min-height: 48px;
}

.popup-form .btn {
    min-height: 52px;
}

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

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

/* ---------- Team Grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.team-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-align: center;
    padding: 30px 20px;
}

.team-card:hover {
    border-color: rgba(201, 165, 92, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-card-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 2px solid rgba(201, 165, 92, 0.2);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-photo .team-initials {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.team-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.team-card-role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-bio {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.blog-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: rgba(201, 165, 92, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 165, 92, 0.12);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: var(--font);
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.78rem;
    color: var(--text-dark);
}

.blog-card-meta i {
    color: var(--accent);
    margin-right: 4px;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 35px 30px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 92, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.service-card:hover {
    border-color: rgba(201, 165, 92, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-heading);
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Amenities Tags ---------- */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(201, 165, 92, 0.12);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: all var(--transition);
    min-height: 40px;
}

.amenity-tag i {
    color: var(--accent);
    font-size: 0.75rem;
}

.amenity-tag:hover {
    border-color: rgba(201, 165, 92, 0.3);
    color: var(--text);
}

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

    .about-preview,
    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-wrapper {
        text-align: center;
    }

    .about-img-wrapper::after {
        display: none;
    }

    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

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

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

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero-search {
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-group .btn {
        justify-content: center;
    }

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

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

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

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .project-highlights {
        grid-template-columns: 1fr;
    }

    .project-hero {
        height: 300px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-pill {
        flex-shrink: 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

    .featured-scroll .project-card {
        min-width: 280px;
    }

    .testimonial-card {
        min-width: 280px;
    }

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

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

    /* Show mobile CTA bar */
    .mobile-cta-bar {
        display: block;
    }

    /* Adjust WhatsApp float for mobile CTA bar */
    .whatsapp-float {
        display: none;
    }

    /* Add bottom padding to body for CTA bar */
    body {
        padding-bottom: 60px;
    }

    .site-footer {
        padding-bottom: 60px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .popup-form {
        padding: 30px 20px;
        margin: 10px;
    }
}

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

    .container {
        padding: 0 16px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .hero-search {
        max-width: 100%;
    }

    .hero-stats {
        gap: 15px;
    }

    .developers-grid {
        gap: 10px;
    }

    .developer-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-height: 48px;
    }

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

    .mobile-cta-bar .cta-bar-btn {
        min-height: 56px;
        font-size: 0.65rem;
    }

    .popup-form {
        padding: 25px 16px;
    }
}

/* ---------- Desktop WhatsApp float visibility ---------- */
@media (min-width: 769px) {
    .mobile-cta-bar {
        display: none !important;
    }

    .whatsapp-float {
        bottom: 25px;
    }
}

/* ---------- Accessibility: Focus Styles ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(201, 165, 92, 0.3);
    color: var(--white);
}

::-moz-selection {
    background: rgba(201, 165, 92, 0.3);
    color: var(--white);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 165, 92, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 165, 92, 0.4);
}
