/* ================================
   24K Realtors - Premium CSS Styles
   Color Scheme: Black & Gold
================================ */

/* CSS Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F5E6B3;
    --gold-dark: #B8962E;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6B3 50%, #D4AF37 100%);

    --black-primary: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --black-card: #111111;

    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.8);
    --white-subtle: rgba(255, 255, 255, 0.6);

    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

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

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 40px rgba(212, 175, 55, 0.5);
}

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

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

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--white);
}

/* ================================
   Header / Navigation
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(212, 175, 55, 0.1);
    padding: 5px 0;
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.header.scrolled .logo-img {
    height: 55px;
    max-width: 160px;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.5));
    transform: scale(1.02);
}

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

/* Dropdown Menu Styles */
.nav-menu > li {
    position: relative;
}

.nav-item-dropdown {
    position: relative;
}

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

.nav-item-dropdown > .nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--black-light);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu .dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu .dropdown-link i {
    color: var(--gold-primary);
    font-size: 14px;
    width: 20px;
}

.dropdown-menu .dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 25px;
}

.dropdown-menu .dropdown-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

/* ================================
   Hero Section
================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black-primary);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    /* Background Image Styles */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--black-primary);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Dark Overlay for Better Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Gold Accent Overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 50%
    );
    z-index: 2;
    pointer-events: none;
}

/* Subtle Pattern Overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-indicator i {
    color: var(--gold-primary);
    font-size: 24px;
}

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

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

/* ================================
   About Section
================================ */
.about {
    padding: 120px 0;
    background: var(--black-primary);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid var(--gold-primary);
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold-dark);
    z-index: -1;
}

.about-img-placeholder {
    height: 400px;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder i {
    font-size: 100px;
    color: var(--gold-primary);
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--black-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 14px;
    color: var(--black-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--white-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--gold-primary);
    font-size: 18px;
}

.feature span {
    font-weight: 500;
}

/* ================================
   Stats Section
================================ */
.stats {
    padding: 80px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-item i {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

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

.stat-label {
    font-size: 16px;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   Services Section
================================ */
.services {
    padding: 120px 0;
    background: var(--black-primary);
}

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

.service-card {
    background: var(--black-card);
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-dark);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-icon i {
    font-size: 32px;
    color: var(--gold-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--black-primary);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--white-subtle);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 15px;
}

/* ================================
   Projects Section
================================ */
.projects {
    padding: 120px 0;
    background: var(--black-light);
}

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

.project-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

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

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

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

.project-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img-placeholder i {
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.2;
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.project-location {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 8px;
}

.project-location i {
    margin-right: 5px;
}

.project-type {
    color: var(--white-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.project-features span {
    font-size: 13px;
    color: var(--white-subtle);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-features i {
    color: var(--gold-primary);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   Why Choose Us Section
================================ */
.why-choose {
    padding: 120px 0;
    background: var(--black-primary);
}

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

.choose-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.choose-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.choose-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    border-color: var(--gold-primary);
    background: transparent;
}

.choose-icon i {
    font-size: 40px;
    color: var(--gold-primary);
}

.choose-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.choose-card p {
    color: var(--white-subtle);
    font-size: 15px;
}

/* ================================
   Testimonials Section
================================ */
.testimonials {
    padding: 120px 0;
    background: var(--black-light);
}

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

.testimonial-card {
    background: var(--black-card);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 40px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.testimonial-text {
    color: var(--white-muted);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: var(--gold-primary);
}

.author-info h4 {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--gold-primary);
    font-size: 14px;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: var(--gold-primary);
    font-size: 16px;
}

/* ================================
   CTA Section
================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.05"/></svg>');
    background-size: 50px 50px;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ================================
   Contact Section
================================ */
.contact {
    padding: 120px 0;
    background: var(--black-primary);
}

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

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--white-muted);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: var(--gold-primary);
}

.info-content h4 {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--white-muted);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold-primary);
}

.social-link i {
    font-size: 20px;
    color: var(--gold-primary);
    transition: var(--transition);
}

.social-link:hover i {
    color: var(--black-primary);
}

/* Contact Form */
.contact-form {
    background: var(--black-card);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23D4AF37"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

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

/* ================================
   Footer
================================ */
.footer {
    background: var(--black-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--white-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
}

.footer-social a i {
    color: var(--gold-primary);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover i {
    color: var(--black-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white-muted);
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--white-muted);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--white-muted);
    font-size: 14px;
}

.footer-bottom i.fa-heart {
    color: var(--gold-primary);
}

/* ================================
   Floating Buttons
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

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

.back-to-top i {
    font-size: 20px;
    color: var(--black-primary);
}

/* ================================
   Project Detail Page
================================ */

/* Overview Section */
.project-detail-overview {
    padding: 60px 0 40px;
    background: var(--black-primary);
}

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

.project-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

/* Gallery Main */
.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-main .project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.gallery-slide {
    display: none;
    position: relative;
    z-index: 1;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    pointer-events: none;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-arrow i {
    pointer-events: none;
}

.gallery-arrow:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-muted);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
    pointer-events: none;
}

.gallery-counter .gallery-current {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb {
    flex: 0 0 auto;
    width: 90px;
    height: 65px;
    background: var(--black-light);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--gold-primary);
}

.gallery-thumb:hover img,
.gallery-thumb.active img {
    opacity: 1;
}

/* Scrollbar for thumbs */
.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--black-light);
    border-radius: 2px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.project-detail-info {
    padding: 10px 0;
}

.project-detail-developer {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-detail-info h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--white);
}

.project-detail-location {
    color: var(--white-muted);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.project-detail-configs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--black-light);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.project-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-detail-meta-item > i {
    font-size: 20px;
    color: var(--gold-primary);
    width: 24px;
    text-align: center;
}

.project-detail-meta-item div {
    display: flex;
    flex-direction: column;
}

.project-detail-meta-item .meta-label {
    font-size: 12px;
    color: var(--white-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-detail-meta-item .meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.project-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Highlights Section */
.project-detail-highlights {
    padding: 60px 0;
    background: var(--black-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 20px;
    color: var(--gold-primary);
}

.highlight-label {
    font-size: 13px;
    color: var(--white-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.highlight-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-heading);
}

/* About Section */
.project-detail-about {
    padding: 60px 0;
    background: var(--black-primary);
}

.about-description {
    max-width: 900px;
    margin: 30px auto 0;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white-muted);
    text-align: center;
}

/* Amenities Section */
.project-detail-amenities {
    padding: 60px 0;
    background: var(--black-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.amenity-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.amenity-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon i {
    font-size: 22px;
    color: var(--gold-primary);
}

.amenity-name {
    font-size: 14px;
    color: var(--white-muted);
    font-weight: 500;
}

/* Floor Plans Section */
.project-detail-floorplans {
    padding: 60px 0;
    background: var(--black-primary);
}

.floorplans-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.floorplans-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black-light);
    border-radius: 12px;
    overflow: hidden;
}

.floorplans-table thead {
    background: rgba(212, 175, 55, 0.15);
}

.floorplans-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.floorplans-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: var(--white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.floorplans-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.floorplans-table tbody tr:last-child td {
    border-bottom: none;
}

.floorplans-table .price-cell {
    color: var(--gold-primary);
    font-weight: 600;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Location Section */
.project-detail-location {
    padding: 60px 0;
    background: var(--black-light);
}

.location-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.location-map-placeholder {
    background: var(--black-card);
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.location-map-placeholder i {
    font-size: 50px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.location-map-placeholder > span {
    color: var(--white-subtle);
    font-size: 16px;
}

.location-address {
    color: var(--white-muted);
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
    margin-top: 10px;
}

.location-address i {
    font-size: 14px !important;
    opacity: 1 !important;
    margin-right: 5px;
}

.location-landmarks {
    padding: 10px 0;
}

.location-landmarks h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.location-landmarks ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-landmarks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--black-card);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--white-muted);
    font-size: 15px;
    transition: var(--transition);
}

.location-landmarks li:hover {
    border-color: var(--gold-primary);
}

.location-landmarks li i {
    color: var(--gold-primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.location-landmarks li strong {
    color: var(--white);
}

/* Not Found Section */
.project-detail-not-found {
    padding: 100px 0;
    background: var(--black-primary);
}

.not-found-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.not-found-content i {
    font-size: 60px;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 25px;
}

.not-found-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.not-found-content p {
    color: var(--white-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.not-found-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   Responsive Design
================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .logo-img {
        height: 60px;
        max-width: 180px;
    }

    .header.scrolled .logo-img {
        height: 50px;
        max-width: 150px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .about-content {
        gap: 50px;
    }

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

    .services-grid,
    .choose-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Project Detail - 1024px */
    .project-detail-info h2 {
        font-size: 28px;
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Header & Logo Mobile Styles */
    .header {
        padding: 10px 0;
    }

    .header.scrolled {
        padding: 8px 0;
    }

    .navbar {
        position: relative;
    }

    .logo-img {
        height: 50px;
        max-width: 140px;
    }

    .header.scrolled .logo-img {
        height: 45px;
        max-width: 120px;
    }

    /* Mobile Navigation - Improved */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 0;
        box-shadow: 5px 0 40px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

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

    /* Mobile Menu Header */
    .nav-menu::before {
        content: '';
        display: block;
        width: 100%;
        height: 80px;
        min-height: 80px;
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 16px;
        padding: 18px 25px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none;
        color: var(--white);
        transition: all 0.3s ease;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-primary);
        padding-left: 30px;
    }

    /* Hamburger Button - Improved */
    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 12px;
        margin-left: 10px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 8px;
        transition: var(--transition);
    }

    .hamburger:hover {
        background: rgba(212, 175, 55, 0.2);
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--gold-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active {
        background: var(--gold-primary);
    }

    .hamburger.active span {
        background: var(--black-primary);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Dropdown Menu - Improved */
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-item-dropdown > .nav-link {
        justify-content: space-between;
        padding-right: 25px;
    }

    .nav-item-dropdown > .nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-item-dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }

    .nav-item-dropdown.active > .nav-link {
        background: rgba(212, 175, 55, 0.15);
        color: var(--gold-primary);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.4);
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 25px 18px 40px;
        font-size: 15px;
        color: var(--white-muted);
        cursor: pointer;
        min-height: 56px;
        background: transparent;
        transition: all 0.2s ease;
        position: relative;
        z-index: 10;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    }

    .dropdown-menu .dropdown-link i {
        margin-right: 12px;
        width: 20px;
        text-align: center;
        color: var(--gold-primary);
    }

    .dropdown-menu .dropdown-link:hover,
    .dropdown-menu .dropdown-link:active,
    .dropdown-menu .dropdown-link.active {
        background: rgba(212, 175, 55, 0.2);
        color: var(--gold-primary);
        padding-left: 45px;
    }

    .dropdown-menu .dropdown-link:active {
        background: rgba(212, 175, 55, 0.3);
        transform: scale(0.98);
    }

    /* Call Button Mobile */
    .nav-actions {
        gap: 8px;
    }

    .btn-call {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-call .btn-text {
        display: none;
    }

    .btn-call i {
        font-size: 18px;
    }

    /* Hero Section Mobile */
    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 28px;
    }

    .hero-indicators {
        bottom: 80px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 30px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

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

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    /* Grids */
    .services-grid,
    .projects-grid,
    .choose-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Project Detail - 768px */
    .project-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-slide img {
        height: 300px;
    }

    .gallery-thumb {
        width: 80px;
        height: 58px;
    }

    .project-detail-info h2 {
        font-size: 26px;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .location-map-placeholder {
        height: 250px;
    }

    .project-detail-actions {
        flex-direction: column;
    }

    .project-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .floorplans-table th,
    .floorplans-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

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

    /* Header Mobile Small */
    .header {
        padding: 6px 0;
    }

    .logo-img {
        height: 45px;
        max-width: 120px;
    }

    .header.scrolled .logo-img {
        height: 40px;
        max-width: 110px;
    }

    .btn-call {
        padding: 8px 12px;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    /* Hero Small Mobile */
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-indicators {
        bottom: 80px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .service-card,
    .project-content,
    .choose-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-item i {
        font-size: 36px;
    }

    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .back-to-top {
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .back-to-top i {
        font-size: 18px;
    }

    /* Project Detail - 480px */
    .project-detail-overview {
        padding: 40px 0 30px;
    }

    .gallery-slide img {
        height: 220px;
    }

    .gallery-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .gallery-thumb {
        width: 70px;
        height: 52px;
    }

    .gallery-thumb i {
        font-size: 15px;
    }

    .gallery-thumb span {
        font-size: 9px;
    }

    .project-detail-info h2 {
        font-size: 22px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .highlight-card {
        padding: 18px 12px;
    }

    .highlight-value {
        font-size: 16px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 18px 10px;
    }

    .project-detail-highlights,
    .project-detail-about,
    .project-detail-amenities,
    .project-detail-floorplans,
    .project-detail-location {
        padding: 40px 0;
    }

    .floorplans-table th,
    .floorplans-table td {
        padding: 10px 10px;
        font-size: 13px;
    }

    .location-map-placeholder {
        height: 200px;
    }

    .not-found-content i {
        font-size: 45px;
    }

    .not-found-content h2 {
        font-size: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .logo-img {
        height: 40px;
        max-width: 100px;
    }

    .header.scrolled .logo-img {
        height: 35px;
        max-width: 90px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .nav-menu {
        width: 90%;
    }
}

/* ================================
   Page Header (Inner Pages)
================================ */
.page-header {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-light) 100%);
    text-align: center;
    padding-top: 100px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

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

.breadcrumb span {
    color: var(--white-muted);
}

/* ================================
   Philosophy Section
================================ */
.philosophy {
    padding: 100px 0;
    background: var(--black-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.philosophy-card {
    background: var(--black-card);
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.philosophy-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.philosophy-icon i {
    font-size: 35px;
    color: var(--gold-primary);
}

.philosophy-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--gold-primary);
    font-family: var(--font-primary);
}

.philosophy-card p {
    color: var(--white-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* ================================
   Specialized Advisory Section
================================ */
.specialized {
    padding: 100px 0;
    background: var(--black-light);
}

.specialized-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specialized-image .image-placeholder {
    height: 400px;
    background: var(--black-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.specialized-image .image-placeholder i {
    font-size: 100px;
    color: var(--gold-primary);
    opacity: 0.3;
}

.specialized-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.specialized-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.specialized-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specialized-icon i {
    font-size: 28px;
    color: var(--gold-primary);
}

.specialized-text h3 {
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.specialized-text p {
    color: var(--white-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ================================
   Impact Section
================================ */
.impact {
    padding: 100px 0;
    background: var(--black-primary);
}

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

.impact-card {
    background: var(--black-card);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid var(--gold-primary);
    border-radius: 10px;
    transition: var(--transition);
}

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

.impact-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    line-height: 1;
    display: inline;
}

.impact-suffix {
    font-size: 40px;
    color: var(--gold-primary);
    font-weight: 600;
    display: inline;
}

.impact-label {
    font-size: 18px;
    color: var(--white-muted);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   Journey Timeline Section
================================ */
.journey {
    padding: 100px 0;
    background: var(--black-light);
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
}

.journey-line {
    position: absolute;
    top: 75px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gold-primary);
}

.journey-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--black-primary);
    margin: 0 auto 25px;
    position: relative;
    z-index: 10;
    border: 4px solid var(--black-light);
}

.step-content h3 {
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.step-content p {
    color: var(--white-muted);
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
}

/* ================================
   Market Expertise Section
================================ */
.market-expertise {
    padding: 100px 0;
    background: var(--black-primary);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.expertise-text > p {
    color: var(--white-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.location-list {
    list-style: none;
    margin-bottom: 30px;
}

.location-list li {
    padding: 12px 0;
    color: var(--gold-primary);
    font-size: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.location-list li i {
    margin-right: 15px;
}

.expertise-image .image-placeholder.large {
    height: 450px;
    background: var(--black-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.expertise-image .image-placeholder.large i {
    font-size: 150px;
    color: var(--gold-primary);
    opacity: 0.2;
}

/* ================================
   About Intro Section
================================ */
.about-intro {
    padding: 100px 0;
    background: var(--black-primary);
}

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

.about-intro-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-intro-text .lead {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.about-intro-image .image-placeholder.large {
    height: 500px;
    background: var(--black-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-intro-image .image-placeholder.large i {
    font-size: 120px;
    color: var(--gold-primary);
    opacity: 0.3;
}

/* ================================
   Client First Section
================================ */
.client-first {
    padding: 100px 0;
    background: var(--black-light);
}

.client-first-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.client-first-image .image-placeholder {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--black-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold-primary);
}

.client-first-image .image-placeholder i {
    font-size: 100px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.client-first-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.client-first-text .quote {
    font-size: 20px;
    font-style: italic;
    color: var(--white-muted);
    margin-bottom: 25px;
    padding-left: 25px;
    border-left: 3px solid var(--gold-primary);
}

.client-first-text p {
    color: var(--white-muted);
    line-height: 1.8;
}

/* ================================
   Future Ready Section
================================ */
.future-ready {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-primary) 100%);
    text-align: center;
}

.future-ready-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.future-ready-content p {
    font-size: 20px;
    color: var(--white-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ================================
   Services Detail Cards
================================ */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--black-card);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-primary);
}

.service-detail-icon i {
    font-size: 50px;
    color: var(--gold-primary);
}

.service-detail-content h3 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.service-detail-content > p {
    color: var(--white-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--white-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

/* ================================
   Specialized Cards
================================ */
.specialized-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.specialized-card-full {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--black-card);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.specialized-card-icon {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-primary);
}

.specialized-card-icon i {
    font-size: 50px;
    color: var(--gold-primary);
}

.specialized-card-content h3 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.specialized-card-content > p {
    color: var(--white-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.specialized-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-muted);
}

.spec-feature i {
    color: var(--gold-primary);
    font-size: 20px;
}

/* ================================
   Areas We Serve
================================ */
.areas-serve {
    padding: 100px 0;
    background: var(--black-primary);
}

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

.area-card {
    background: var(--black-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.area-card i {
    font-size: 50px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.area-card p {
    color: var(--white-muted);
    font-size: 14px;
}

/* ================================
   Contact Page Styles
================================ */
.contact-page {
    padding: 100px 0;
    background: var(--black-primary);
}

.contact-page .contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--gold-primary);
    font-family: var(--font-primary);
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

/* Form Message Styles */
.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: none;
    align-items: flex-start;
    gap: 14px;
    animation: formMsgSlideIn 0.4s ease;
    position: relative;
}

.form-message.show {
    display: flex;
}

.form-message .msg-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-message .msg-text {
    flex: 1;
}

.form-message .msg-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.form-message .msg-close:hover {
    opacity: 1;
}

.form-message-success {
    background: rgba(39, 174, 96, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.25);
}

.form-message-success .msg-close {
    color: #2ecc71;
}

.form-message-error {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.form-message-error .msg-close {
    color: #e74c3c;
}

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

/* Success Panel (replaces form after successful submission) */
.form-success-panel {
    text-align: center;
    padding: 50px 30px;
    animation: formMsgSlideIn 0.5s ease;
}

.form-success-panel .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPulse 0.6s ease;
}

.form-success-panel .success-icon i {
    font-size: 36px;
    color: #2ecc71;
}

.form-success-panel h4 {
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.form-success-panel p {
    color: var(--white-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.form-success-panel .success-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes successPulse {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ================================
   Quick Contact Section
================================ */
.quick-contact {
    padding: 80px 0;
    background: var(--black-light);
}

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

.quick-contact-card {
    background: var(--black-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.quick-contact-card:hover {
    border-color: var(--gold-primary);
}

.qc-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.qc-icon i {
    font-size: 35px;
    color: var(--gold-primary);
}

.quick-contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.quick-contact-card p {
    color: var(--white-muted);
    margin-bottom: 20px;
}

/* ================================
   Map Section
================================ */
.map-section {
    padding: 100px 0;
    background: var(--black-primary);
}

.map-wrapper {
    margin-top: 40px;
}

.map-placeholder {
    height: 400px;
    background: var(--black-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.map-placeholder i {
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--white-muted);
    font-size: 18px;
    margin-bottom: 25px;
}

/* ================================
   FAQ Section
================================ */
.faq-section {
    padding: 100px 0;
    background: var(--black-light);
}

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

.faq-item {
    background: var(--black-card);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--gold-primary);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: var(--white-muted);
    line-height: 1.7;
}

/* ================================
   Review Rating
================================ */
.review-rating {
    margin-top: 20px;
    color: var(--gold-primary);
    font-size: 18px;
}

.review-rating i {
    margin-right: 5px;
}

/* Author Avatar with Initials */
.author-avatar span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
}

/* Section Description */
.section-desc {
    color: var(--white-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Page Section Padding */
.page-section {
    padding: 100px 0;
}

/* Four Column Services Grid */
.services-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

/* ================================
   Additional Responsive Styles
================================ */
@media (max-width: 1024px) {
    .services-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .page-header {
        min-height: 280px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

    .specialized-content {
        grid-template-columns: 1fr;
    }

    .specialized-image {
        order: 2;
    }

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

    .impact-number {
        font-size: 56px;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .journey-line {
        display: none;
    }

    .journey-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .step-content p {
        max-width: none;
        margin: 0;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .expertise-image {
        order: 2;
    }

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

    .client-first-content {
        grid-template-columns: 1fr;
    }

    .client-first-image {
        display: flex;
        justify-content: center;
    }

    .client-first-image .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-features li {
        justify-content: center;
    }

    .specialized-card-full {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .specialized-card-icon {
        margin: 0 auto;
    }

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

    .spec-feature {
        justify-content: center;
    }

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

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

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

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

    .future-ready-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }

    .impact-number {
        font-size: 42px;
    }

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

    .client-first-image .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .client-first-text h2 {
        font-size: 28px;
    }

    .service-detail-card,
    .specialized-card-full {
        padding: 30px 20px;
    }

    .service-detail-icon,
    .specialized-card-icon {
        width: 100px;
        height: 100px;
    }

    .service-detail-icon i,
    .specialized-card-icon i {
        font-size: 40px;
    }
}

/* ================================
   Projects Page Styles
================================ */
.projects-page {
    padding: 100px 0 60px;
}

.projects-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.projects-intro p {
    font-size: 17px;
    color: var(--white-muted);
    line-height: 1.8;
}

/* Project Cards Grid */
.projects-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--black-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

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

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

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.project-image-placeholder i {
    font-size: 50px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.project-image-placeholder span {
    font-size: 12px;
    color: var(--white-subtle);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-badge.new {
    background: #4CAF50;
    color: var(--white);
}

.project-badge.premium {
    background: var(--gold-gradient);
    color: var(--black-primary);
}

.project-content {
    padding: 25px;
}

.project-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-developer i {
    font-size: 10px;
}

.project-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white-muted);
    margin-bottom: 15px;
}

.project-location i {
    color: var(--gold-primary);
}

.project-config {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.config-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-price {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-price span {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 18px;
}

.project-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.project-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-muted);
}

.project-feature i {
    color: var(--gold-primary);
    font-size: 14px;
}

.project-actions {
    display: flex;
    gap: 10px;
}

.project-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 13px;
}

/* Projects Filter */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Projects Stats Bar */
.projects-stats-bar {
    background: var(--black-light);
    padding: 40px 0;
    margin-bottom: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-bar-item h3 {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stats-bar-item p {
    font-size: 14px;
    color: var(--white-muted);
}

/* Project Type Cards */
.project-type-section {
    padding: 80px 0;
}

.project-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-type-card {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-light) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

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

.project-type-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.project-type-icon i {
    font-size: 40px;
    color: var(--gold-primary);
}

.project-type-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.project-type-card p {
    color: var(--white-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Projects Page Responsive */
@media (max-width: 1024px) {
    .projects-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .projects-grid-page {
        grid-template-columns: 1fr;
    }

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

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

    .stats-bar-item h3 {
        font-size: 28px;
    }

    .project-features {
        flex-wrap: wrap;
    }

    .projects-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .project-actions {
        flex-direction: column;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-content h3 {
        font-size: 18px;
    }
}

/* ================================
   Services Page - New Layout
================================ */

/* Core Services Section */
.core-services-section {
    padding: 100px 0;
    background: var(--black-primary);
}

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

.core-service-card {
    background: var(--black-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.core-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.core-service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.core-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.core-service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.core-service-icon i {
    font-size: 32px;
    color: var(--black-primary);
}

.core-service-card:hover .core-service-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.core-service-content {
    padding: 25px;
    text-align: center;
}

.core-service-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.core-service-content p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--gold-light);
    gap: 12px;
}

.service-btn i {
    font-size: 12px;
    transition: var(--transition);
}

/* Specialized Advisory Section */
.specialized-advisory-section {
    padding: 100px 0;
    background: var(--black-light);
}

.specialized-advisory-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specialized-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.specialized-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.specialized-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    opacity: 0.3;
    pointer-events: none;
}

.specialized-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.specialized-service-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--black-card);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.specialized-service-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.specialized-service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialized-service-icon i {
    font-size: 24px;
    color: var(--gold-primary);
}

.specialized-service-content h3 {
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.specialized-service-content p {
    font-size: 15px;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-light);
    gap: 12px;
}

.service-link i {
    font-size: 12px;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialized-advisory-wrapper {
        gap: 40px;
    }

    .specialized-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .core-services-section,
    .specialized-advisory-section {
        padding: 70px 0;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .specialized-advisory-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialized-image {
        order: 1;
    }

    .specialized-services {
        order: 2;
    }

    .specialized-image img {
        height: 300px;
    }

    .specialized-service-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .specialized-service-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .core-service-image {
        height: 180px;
    }

    .core-service-icon {
        width: 70px;
        height: 70px;
    }

    .core-service-icon i {
        font-size: 28px;
    }

    .specialized-image img {
        height: 250px;
    }

    .specialized-service-content h3 {
        font-size: 20px;
    }
}

/* ================================
   Your Journey With Us Section
================================ */
.journey-section {
    padding: 100px 0;
    background: var(--black-primary);
}

.journey-timeline-wrapper {
    position: relative;
    padding-top: 60px;
}

.journey-timeline-line {
    position: absolute;
    top: 85px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.journey-timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    opacity: 0.5;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.journey-step-item {
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--black-light);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    transition: var(--transition);
    position: relative;
}

.journey-step-item:hover .step-circle {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.journey-step-item h3 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.journey-step-item p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* Journey Section Responsive */
@media (max-width: 1024px) {
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .journey-timeline-line {
        display: none;
    }
}

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

    .journey-timeline-wrapper {
        padding-top: 20px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 350px;
        margin: 0 auto;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .journey-step-item h3 {
        font-size: 18px;
    }

    .journey-step-item p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* ================================
   Enhanced Mobile Responsive Styles
================================ */

/* Better Mobile Page Headers */
@media (max-width: 768px) {
    .page-header {
        min-height: 250px;
        padding-top: 80px;
    }

    .page-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .breadcrumb {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Better Section Styling */
    .section-header {
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    /* About Page Mobile Improvements */
    .about-intro {
        padding: 60px 0;
    }

    .about-intro-text h2 {
        font-size: 28px;
    }

    .about-intro-text .lead {
        font-size: 16px;
    }

    .about-features {
        gap: 15px;
        margin-top: 25px;
    }

    .about-features .feature {
        padding: 12px 15px;
        font-size: 14px;
    }

    .about-intro-image .image-placeholder.large {
        height: 300px;
    }

    /* Philosophy Section Mobile */
    .philosophy {
        padding: 60px 0;
    }

    .philosophy-card {
        padding: 30px 25px;
    }

    .philosophy-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .philosophy-icon i {
        font-size: 26px;
    }

    .philosophy-card h3 {
        font-size: 22px;
    }

    .philosophy-card p {
        font-size: 14px;
    }

    /* Client First Mobile */
    .client-first {
        padding: 60px 0;
    }

    .client-first-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .client-first-text .quote {
        font-size: 16px;
        padding-left: 15px;
    }

    /* Market Expertise Mobile */
    .market-expertise {
        padding: 60px 0;
    }

    .expertise-text h2 {
        font-size: 28px;
    }

    .location-list li {
        font-size: 15px;
        padding: 10px 0;
    }

    .expertise-image .image-placeholder.large {
        height: 300px;
    }

    /* Why Choose Mobile */
    .why-choose {
        padding: 60px 0;
    }

    .choose-card {
        padding: 30px 25px;
    }

    .choose-icon {
        width: 60px;
        height: 60px;
    }

    .choose-icon i {
        font-size: 26px;
    }

    .choose-card h3 {
        font-size: 20px;
    }

    /* Future Ready Mobile */
    .future-ready {
        padding: 60px 0;
    }

    .future-ready-content h2 {
        font-size: 26px;
    }

    .future-ready-content p {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Contact Page Mobile */
    .contact-page {
        padding: 60px 0;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-icon {
        margin: 0 auto;
    }

    .info-content h4 {
        font-size: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

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

    .contact-form h3 {
        font-size: 22px;
    }

    /* Quick Contact Mobile */
    .quick-contact {
        padding: 50px 0;
    }

    .quick-contact-card {
        padding: 30px 20px;
    }

    .qc-icon {
        width: 65px;
        height: 65px;
    }

    .qc-icon i {
        font-size: 28px;
    }

    .quick-contact-card h3 {
        font-size: 18px;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 60px 0;
    }

    .map-placeholder {
        height: 280px;
        padding: 30px 20px;
    }

    .map-placeholder i {
        font-size: 50px;
    }

    .map-placeholder p {
        font-size: 14px;
        text-align: center;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-item h4 {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .faq-item h4 i {
        min-width: 20px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* CTA Section Mobile */
    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta p {
        font-size: 14px;
    }

    .cta-buttons {
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }

    /* Footer Mobile Improvements */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 20px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

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

    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-contact p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 30px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Extra Small Mobile Improvements */
@media (max-width: 480px) {
    .page-header {
        min-height: 220px;
        padding-top: 70px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* About Page Small Mobile */
    .about-intro-text h2 {
        font-size: 24px;
    }

    .about-intro-image .image-placeholder.large {
        height: 250px;
    }

    .philosophy-card {
        padding: 25px 20px;
    }

    .philosophy-card h3 {
        font-size: 20px;
    }

    /* Client First Small Mobile */
    .client-first-image .image-placeholder {
        width: 180px;
        height: 180px;
    }

    .client-first-image .image-placeholder i {
        font-size: 60px;
    }

    /* Contact Small Mobile */
    .contact-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-block {
        padding: 14px 20px;
    }

    /* FAQ Small Mobile */
    .faq-item {
        padding: 20px 15px;
    }

    .faq-item h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Map Small Mobile */
    .map-placeholder {
        height: 240px;
    }

    /* Quick Contact Small Mobile */
    .quick-contact-card {
        padding: 25px 15px;
    }

    .qc-icon {
        width: 55px;
        height: 55px;
    }

    .qc-icon i {
        font-size: 24px;
    }

    /* CTA Small Mobile */
    .cta h2 {
        font-size: 22px;
    }

    .cta-buttons .btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    /* Footer Small Mobile */
    .footer-grid {
        gap: 30px;
    }

    .footer-logo {
        height: 45px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    .nav-link,
    .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 44px;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .filter-btn {
        min-height: 44px;
    }

    /* Remove hover effects that don't work well on touch */
    .core-service-card:hover,
    .project-card-page:hover,
    .choose-card:hover,
    .philosophy-card:hover,
    .quick-contact-card:hover,
    .specialized-service-item:hover {
        transform: none;
    }

    /* Add active states instead */
    .core-service-card:active,
    .project-card-page:active,
    .choose-card:active {
        transform: scale(0.98);
    }
}

/* Projects Page Mobile Improvements */
@media (max-width: 768px) {
    .projects-page {
        padding: 60px 0;
    }

    .projects-intro {
        padding: 0 10px;
    }

    .projects-intro p {
        font-size: 14px;
        text-align: center;
    }

    .projects-filter {
        padding: 0 10px;
    }

    .project-card-page {
        margin-bottom: 20px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .project-location {
        font-size: 13px;
    }

    .project-features {
        gap: 10px;
    }

    .project-feature {
        font-size: 12px;
        padding: 4px 10px;
    }

    .project-actions {
        gap: 10px;
    }

    .project-actions .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .projects-intro p {
        font-size: 13px;
        line-height: 1.7;
    }

    .project-card-page .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px 15px;
    }

    .project-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-actions .btn {
        width: 100%;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .page-header {
        min-height: 200px;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
    }

    .nav-menu {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        right: max(15px, env(safe-area-inset-right));
        bottom: max(80px, calc(env(safe-area-inset-bottom) + 60px));
    }

    .back-to-top {
        right: max(15px, env(safe-area-inset-right));
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
    }
}

/* ================================
   Google Reviews Section
================================ */
.google-reviews {
    padding: 100px 0;
    background: var(--black-light);
}

.google-reviews-wrapper {
    margin-top: 50px;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.google-logo svg {
    height: 34px;
    width: auto;
}

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

.overall-rating .rating-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-primary);
    line-height: 1;
}

.overall-rating .rating-stars {
    color: #FBBC04;
    font-size: 24px;
    margin: 10px 0;
    letter-spacing: 3px;
}

.rating-count {
    color: var(--white-muted);
    font-size: 14px;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Google Reviews Slider */
.google-reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.google-reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    flex: 1;
}

.google-reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-slider-btn {
    width: 50px;
    height: 50px;
    background: var(--black-card);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.review-slider-btn:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

/* Review Cards */
.google-review-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 25px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-primary);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-primary);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.reviewer-info .review-stars {
    color: #FBBC04;
    font-size: 14px;
    letter-spacing: 2px;
}

.google-icon {
    color: #4285F4;
    font-size: 22px;
}

.review-text {
    color: var(--white-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-review-card .review-date {
    color: #888;
    font-size: 12px;
    display: block;
}

/* Slider Dots */
.review-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.review-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-slider-dots .dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.google-reviews-footer {
    text-align: center;
}

.google-reviews-footer .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Google Reviews Responsive */
@media (max-width: 1200px) {
    .google-review-card {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .google-rating-summary {
        gap: 30px;
        padding: 30px;
    }

    .overall-rating .rating-number {
        font-size: 48px;
    }

    .review-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 80px 0;
    }

    .google-rating-summary {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .google-review-card {
        min-width: 300px;
        max-width: 300px;
    }

    .overall-rating .rating-number {
        font-size: 42px;
    }

    .overall-rating .rating-stars {
        font-size: 20px;
    }

    .review-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .google-reviews-slider-wrapper {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .google-reviews {
        padding: 60px 0;
    }

    .google-review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .reviewer-avatar {
        width: 42px;
        height: 42px;
    }

    .reviewer-avatar span {
        font-size: 14px;
    }

    .reviewer-info h4 {
        font-size: 14px;
    }

    .review-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .review-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* ================================
   Latest Projects Slider (Home Page)
   ================================ */
.latest-projects {
    padding: 100px 0;
    background: var(--black-primary);
}

.latest-projects-wrapper {
    margin-top: 50px;
}

.latest-projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.latest-projects-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px 20px;
    flex: 1;
}

.latest-projects-slider::-webkit-scrollbar {
    display: none;
}

/* Prev / Next buttons */
.lp-slider-btn {
    width: 50px;
    height: 50px;
    background: var(--black-card);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.lp-slider-btn:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.08);
}

/* Individual Project Card */
.lp-project-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--black-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
}

.lp-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
}

.lp-project-card .project-image {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.lp-project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Type label bottom-right of image */
.lp-type-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.lp-type-tag.residential {
    background: rgba(212, 175, 55, 0.88);
    color: var(--black-primary);
}

.lp-type-tag.commercial {
    background: rgba(66, 133, 244, 0.88);
    color: var(--white);
}

/* Price row */
.lp-price {
    margin: 10px 0 15px;
}

.price-tag {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.price-tag i {
    font-size: 12px;
    opacity: 0.8;
}

/* Dots */
.lp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.lp-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lp-slider-dots .dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* View All row */
.lp-view-all {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-project-card {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .lp-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .lp-project-card {
        min-width: 270px;
        max-width: 270px;
    }
}

@media (max-width: 480px) {
    .lp-project-card {
        min-width: 260px;
        max-width: 260px;
    }
    .lp-slider-btn {
        display: none;
    }
    .latest-projects-slider-wrapper {
        gap: 0;
    }
}
