:root {
    --primary: #1A3C34;
    --primary-light: #2D5A4E;
    --accent: #C5A059;
    --bg-light: #F9F9F7;
    --bg-dark: #121212;
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --text-white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(249, 249, 247, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-button {
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 100px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
}

/* Services Section */
.section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

/* Info Section */
.info-section {
    background: var(--primary);
    color: var(--text-white);
    border-radius: 40px;
    padding: 80px;
    margin-bottom: 100px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.info-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

/* Contact Form */
.contact-section {
    background: #fff;
    padding: 80px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fdfdfd;
}

.submit-btn {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary);
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .hero-content { width: 100%; text-align: center; padding: 40px; }
    .hero h1 { font-size: 3rem; }
    .hero-image { display: none; }
    .info-grid, .contact-grid { grid-template-columns: 1fr; }
}
