:root {
    --primary: #0f172a;
    --secondary: #b45309;
    --accent: #f59e0b;
    --text: #334155;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; line-height: 1.6; color: var(--text); background-color: var(--white); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
.main-header { background-color: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 20px; letter-spacing: 1px; color: var(--primary); font-weight: 400; }
.logo-bold { font-weight: 800; color: var(--secondary); }
.main-nav a { text-decoration: none; color: var(--text); margin-left: 25px; font-weight: 600; font-size: 14px; transition: color 0.3s; }
.main-nav a:hover, .main-nav a.active { color: var(--secondary); }

/* Hero Section */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #020617 100%); color: var(--white); padding: 100px 0; text-align: center; }
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 18px; max-width: 800px; margin: 0 auto 35px auto; color: #94a3b8; }
.btn { display: inline-block; background-color: var(--secondary); color: var(--white); padding: 14px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; transition: background 0.3s; border: none; }
.btn:hover { background-color: #92400e; }

/* Stats Bar */
.stats-bar { background-color: var(--primary); color: var(--white); padding: 40px 0; border-top: 4px solid var(--secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 36px; color: var(--accent); font-weight: 800; }
.stat-item p { font-size: 14px; color: #cbd5e1; text-transform: uppercase; letter-spacing: 1px; }

/* Density & Content Sections */
.section-padding { padding: 80px 0; }
.section-padding:nth-child(even) { background-color: var(--bg-light); }
.section-title { font-size: 32px; color: var(--primary); margin-bottom: 15px; font-weight: 800; text-align: center; }
.section-subtitle { text-align: center; max-width: 700px; margin: 0 auto 50px auto; color: #64748b; }

/* Services Grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { font-size: 20px; color: var(--primary); margin-bottom: 15px; font-weight: 700; }

/* Split Block */
.split-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 50px; align-items: center; }
.split-img { width: 100%; height: 400px; object-fit: cover; border-radius: 6px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

blockquote { background-color: #fffbeb; border-left: 4px solid var(--accent); padding: 25px; margin: 30px 0; font-size: 15px; color: #78350f; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; }
textarea.form-control { height: 120px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

/* Footer */
.main-footer { background-color: #0f172a; color: #94a3b8; padding: 70px 0 30px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 40px; }
.main-footer h4 { color: var(--white); margin-bottom: 20px; font-size: 16px; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 25px; text-align: center; font-size: 13px; }