@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #d98b3c; /* Precise orange from layout */
    --primary-hover: #c27a32;
    --dark: #121212;
    --text-main: #333333;
    --text-muted: #6b7280;
    --bg-light: #fffcf8;
    --surface: #ffffff;
    --border: #e5e7eb;
}

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

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

h1, h2, h3, h4, h5, h6, .nav-links a, .btn, .brand-text, .section-tag, .hero-tag {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navbar */
.navbar {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}
.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}
.brand-text span {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-muted);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Hide hamburger on desktop — enforced */
.nav-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Form Styles (used in contact.php) */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #f9fafb;
    color: var(--text-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 139, 60, 0.15);
    background: #fff;
}
textarea.form-control {
    resize: vertical;
    min-height: 110px;
}
.secure-catch {
    display: none !important;
    position: absolute;
    left: -9999px;
    height: 0;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
}
.btn-outline-light {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}
.btn-dark {
    background: var(--dark);
    color: #fff;
}
.btn-dark:hover {
    background: #000;
    color: #fff;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.1) 80%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 650px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 4px 16px 4px 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.tag-num {
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 11px;
}
.hero-slider h1 {
    font-size: 72px;
    line-height: 80px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero-slider h1 .highlight {
    color: var(--primary);
}
.hero-desc {
    font-size: 18px;
    line-height: 28px;
    color: #f3f4f6;
    margin-bottom: 3rem;
    max-width: 500px;
}
.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Floating Card 1 (Dream Home) */
.floating-card-1 {
    position: absolute;
    bottom: 12%;
    right: 8%;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 3;
}
.fc-icon {
    color: var(--primary);
    font-size: 24px;
    margin-top: 2px;
}
.fc-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
    margin-bottom: 4px;
}
.fc-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-muted);
}

/* Floating Card 2 (Investment) */
.floating-card-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 139, 61, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 380px;
    z-index: 3;
}
.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.fc-item:last-child {
    margin-bottom: 0;
}
.fc-item-icon {
    color: var(--primary);
    font-size: 24px;
    margin-top: 2px;
}
.fc-item-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 4px;
}
.fc-item-text {
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}
.hero-dot.active {
    background: var(--primary);
}

/* Section Common */
.section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--text-muted);
}

/* Why Choose Us */
.features-section {
    background: var(--bg-light);
    padding: 6rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--surface);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(218, 139, 61, 0.1);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-wrapper i {
    color: var(--primary);
    font-size: 1.5rem;
}
.feature-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.feature-card .card-divider {
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 1.5rem auto 0;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(218, 139, 61, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    object-fit: cover;
}
.author-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.author-info h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.author-info p {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
}
.slider-dot.active {
    background: var(--primary);
}

/* Stats Banner */
.stats-banner {
    background: var(--dark);
    padding: 4rem 0;
    color: #fff;
    margin-top: 4rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
}
.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.stat-item h4 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-item p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    padding: 6rem 0;
}
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(218, 139, 61, 0.1);
}
.cta-img {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1000') center/cover;
    min-height: 400px;
}
.cta-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-content h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.cta-content p {
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-whatsapp:hover {
    background: #000;
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-brand .brand-icon {
    color: var(--primary);
}
.footer-links {
    display: flex;
    gap: 2.5rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-transform: uppercase;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider h1 { font-size: 56px; line-height: 64px; }
    .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem 1rem; }
    .cta-card { grid-template-columns: 1fr; }
    .cta-img { min-height: 250px; }
    .cta-content { padding: 3rem 2rem; }
    .floating-card-1, .floating-card-2 { display: none; } /* Hide complex floating cards on smaller screens for simplicity */
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex !important; align-items: center; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--surface); padding: 1rem 5%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999; }
    .hero-slider h1 { font-size: 40px; line-height: 48px; }
    .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}