/* Core Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9fafb;
}

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

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-size: 1.2rem;
    color: #111;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2563eb;
}

.nav-btn {
    background: #2563eb;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.header-phone a {
    text-decoration: none;
    font-weight: 700;
    color: #111;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('hero-bg.jpg') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #94a3b8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-title p {
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f1f5f9;
}

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

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: #475569;
    margin-bottom: 30px;
}

.contact-detail-box {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-detail-box p {
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #fff;
}

.license-info {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media(max-width: 768px) {
    .contact-container, .footer-content {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}