/* CSS Variables & Reset */
:root {
    --bg-color: #E6E2DE; /* Warm Beige */
    --text-color: #1a1a1a;
    --primary-btn: #000000;
    --accent-green: #2D5A4C; /* For the circular text */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
}

.logo-icon path {
    stroke: black;
}

.search-bar {
    position: relative;
    width: 320px;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 40px;
    border-radius: 50px;
    border: none;
    background: #F5F5F3;
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    outline: none;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #2D5A4C;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    font-weight: 600;
}

.nav-links a.active {
    background: #EBECE8;
    padding: 6px 16px;
    border-radius: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 500;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary-btn);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 80px;
    position: relative;
    padding-bottom: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 82px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Circular Animation */
.circular-label {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 160px;
    height: 160px;
    pointer-events: none;
}

.circular-label svg {
    animation: rotate 20s linear infinite;
}

.arrow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow-center svg {
    width: 32px;
    height: 32px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Image */
.hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    height: 500px; /* Adjust based on preference */
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center; 
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .header { padding: 20px 30px; }
    .hero-title { font-size: 64px; }
    .nav-links { display: none; } /* Simplified for now, would typically be a burger menu */
}

@media (max-width: 768px) {
    .header { padding: 16px; }
    .search-bar { display: none; }
    .header-actions { gap: 12px; }
    .btn-primary { padding: 10px 20px; font-size: 14px; }
    .hero-title { font-size: 42px; margin-bottom: 40px; }
    .circular-label { width: 120px; height: 120px; top: 60%; }
}

/* --- New Section Styles --- */

/* General Section */
.section {
    padding: 80px 40px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.text-gold { color: #D4AF37; }
.text-white { color: #fff; }
.bg-light { background-color: #f9f9f9; }
.bg-dark { background-color: #1a1a1a; }
.opacity-80 { opacity: 0.8; }
.w-100 { width: 100%; }

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.section-image img, .image-box {
    width: 100%;
    border-radius: 4px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 24px;
}
.feature-list li {
    margin-bottom: 12px;
    font-weight: 500;
}
.feature-list li::before {
    content: "✓";
    color: var(--accent-green);
    margin-right: 10px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.project-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 24px;
}
.card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}
.location {
    color: #777;
    font-size: 14px;
    margin-bottom: 16px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
    font-size: 14px;
    font-weight: 500;
}
.details-link {
    color: var(--accent-green);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}
.service-card:hover {
    border-color: var(--accent-green);
}
.icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

/* Contact Form */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    border-radius: 4px;
}
.contact-form button {
    cursor: pointer;
    border: none;
}
.contact-info {
    margin-top: 30px;
    color: #ccc;
    line-height: 1.8;
}
.contact-item {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: #aaa;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Mobile Menu & Responsive Overrides */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100vh;
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu a {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
}
.close-menu-btn {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
    .section-image {
        order: -1; /* Image on top on mobile? Optional */
        margin-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 48px; }
    .section { padding: 50px 20px; }
    .section-title { font-size: 32px; }
}
