/* CSS Reset & Variables */
:root {
    --primary-color: #0b1528; /* Dark Navy */
    --accent-color: #d49a4f; /* Gold/Mustard */
    --accent-hover: #b8823b;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Typography Utilities */
.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

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

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

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

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

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

.btn-dark:hover {
    background-color: #1a2942;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bg-white);
}

header.scrolled .logo {
    color: var(--accent-color);
}
header.scrolled .logo-text h1 { color: var(--bg-white); }
header.scrolled .logo-text p { color: #ccc; }

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--bg-white);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bg-white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 21, 40, 0.8) 0%, rgba(11, 21, 40, 0.3) 100%);
}

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

.hero .badge {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 4.5rem;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

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

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.stats-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
}

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

.bg-light {
    background-color: var(--bg-light);
}

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

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

.project-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

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

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

.category-tag {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-content .location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-link {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-link:hover {
    gap: 10px;
}

/* Featured Project */
.featured-project {
    padding: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.featured-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.featured-image {
    height: 100%;
    min-height: 500px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .section-title {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.location-tag {
    color: #a0aec0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.featured-content p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.price {
    margin-bottom: 30px;
}

.price span {
    font-size: 0.85rem;
    color: #a0aec0;
}

.price h3 {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Location Section */
.location-section {
    padding: 100px 0;
}

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

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

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

.feature-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 5px;
}

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

.find-us p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-marker-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    width: max-content;
}

.map-marker-info::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--bg-white) transparent transparent transparent;
}

.map-marker-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.map-marker-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Stats Banner */
.stats-banner {
    background-color: var(--primary-color);
    padding: 50px 0;
    color: var(--bg-white);
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stat-box h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    line-height: 1;
}

.stat-box p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #a0aec0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
}

.cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 21, 40, 0.85);
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

/* Footer */
footer {
    background-color: #050a14;
    color: var(--bg-white);
    padding: 80px 0 20px;
}

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

.footer-brand p {
    color: #a0aec0;
    margin: 20px 0;
    font-size: 0.9rem;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: #a0aec0;
    font-size: 0.9rem;
}

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

.footer-contact ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #a0aec0;
    font-size: 0.9rem;
    align-items: flex-start;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.85rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.float-btn.wa-btn {
    background-color: #25d366;
    color: white;
    font-size: 1.5rem;
}

.float-btn span {
    position: absolute;
    right: 60px;
    background: var(--bg-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn:hover span {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-container {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-action {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-container, .location-container {
        grid-template-columns: 1fr;
    }
    
    .stats-flex {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
