* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e2a3e;
    background: #ffffff;
}

/* Navigation */
.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f3b4c, #2b5e6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo span {
    font-size: 0.8rem;
    color: #5a7a8a;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1e2a3e;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c17b4c;
}

.btn-quote {
    background: #c17b4c;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: #a4633a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(120deg, #f4f9fc, #e9f0f3);
    border-radius: 48px;
}

.hero-badge {
    color: #c17b4c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.2;
}

.highlight {
    color: #c17b4c;
}

.hero p {
    color: #2c4b5e;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #c17b4c;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a4633a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #c17b4c;
    color: #c17b4c;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: #c17b4c;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat h3 {
    font-size: 1.8rem;
    color: #1f3b4c;
}

.stat p {
    color: #5a7a8a;
    font-size: 0.9rem;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c17b4c;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.feature i {
    font-size: 2rem;
    color: #c17b4c;
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services-preview {
    padding: 4rem 0;
    background: #faf9f7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #c17b4c;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card a {
    color: #c17b4c;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #c17b4c;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.text-center {
    text-align: center;
}

/* Quote Banner */
.quote-banner {
    background: linear-gradient(135deg, #1f3b4c, #1e4a5f);
    text-align: center;
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 48px;
    color: white;
}

.quote-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-banner p {
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1f3b4c, #2c5a6e);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* About Page */
.about-main {
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.mission-vision {
    background: #f8f9fa;
    padding: 4rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission, .vision {
    text-align: center;
    padding: 2rem;
}

.mission i, .vision i {
    font-size: 3rem;
    color: #c17b4c;
    margin-bottom: 1rem;
}

.values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #faf9f7;
    border-radius: 20px;
}

.value-card i {
    font-size: 2.5rem;
    color: #c17b4c;
    margin-bottom: 1rem;
}

.team {
    background: #f8f9fa;
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Services Page */
.services-list {
    padding: 3rem 0;
}

.service-full {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-icon-large i {
    font-size: 3rem;
    color: #c17b4c;
}

.service-details ul {
    list-style: none;
    margin-top: 1rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

.service-details li i {
    color: #c17b4c;
    margin-right: 0.5rem;
}

.why-us {
    background: #faf9f7;
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.why-item i {
    font-size: 2.5rem;
    color: #c17b4c;
    margin-bottom: 1rem;
}

/* Projects Page */
.projects-full-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.project-full {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.project-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-full:hover .project-image img {
    transform: scale(1.05);
}

.project-details {
    flex: 1;
    padding: 2rem;
}

.project-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-details .location,
.project-details .year {
    color: #666;
    margin-bottom: 0.5rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.filter-btn {
    background: transparent;
    border: 2px solid #c17b4c;
    color: #c17b4c;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c17b4c;
    color: white;
}

/* Contact Page */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.info-details {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #c17b4c;
}

.info-item h4 {
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    margin: 2rem 0;
}

/* Footer */
footer {
    background: #1a2a3a;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd966;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffd966;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a3a4a;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .hero,
    .about-grid,
    .contact-grid,
    .mv-grid,
    .about-preview-content,
    .service-full,
    .project-full {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        flex-direction: column;
        text-align: center;
    }
}