@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Inter:wght@400;700&display=swap');

:root {
    --primary: #dc2626;
    --secondary: #991b1b;
    --bg: #fef2f2;
    --text: #1f2937;
    --font-main: 'Poppins', sans-serif;
    --font-head: 'Inter', serif;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--bg); color: var(--text); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); margin-bottom: 1rem; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; border-radius: var(--radius); font-weight: 600; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--secondary); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.full-width { width: 100%; }

/* Header Styles */
.header { padding: 20px 0; background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header-v2 .container { flex-direction: column; gap: 20px; }
.nav ul { display: flex; gap: 20px; }
.nav a { font-weight: 500; }
.nav a:hover { color: var(--primary); }
.mobile-hidden { display: block; }
@media (max-width: 768px) { .mobile-hidden { display: none; } .grid-2 { grid-template-columns: 1fr; } .nav { display: none; } }

/* Hero Styles */
.hero { padding: 100px 0; position: relative; background-size: cover; background-position: center; }
.hero-v1 { color: #fff; min-height: 600px; display: flex; align-items: center; }
.hero-v1 .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero-v1 .container { position: relative; z-index: 1; }
.hero-v2, .hero-v3 { background: var(--bg); }
.hero-v4 { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 150px 0; }
.hero h2 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Services Styles */
.services { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h3 { font-size: 2.5rem; color: var(--primary); }
.card, .service-item { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; }
.card:hover, .service-item:hover { transform: translateY(-5px); }
.icon, .service-item i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.services-v3 .service-row { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }

/* About Styles */
.about { padding: 80px 0; background: #fff; }
.about-v3 { background: var(--bg); }
.check-list li { margin-bottom: 10px; }
.check-list i { color: var(--primary); margin-right: 10px; }
.stats { margin-top: 40px; }
.stat { background: var(--primary); color: #fff; padding: 20px; border-radius: var(--radius); display: flex; flex-direction: column; }
.stat strong { font-size: 2rem; }

/* Contact Styles */
.contact { padding: 80px 0; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: var(--radius); }
.contact-info i { color: var(--primary); font-size: 20px; margin-bottom: 10px; }
.info-box { text-align: center; padding: 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; }
.contact-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Footer Styles */
.footer { background: #1f2937; color: #fff; padding: 60px 0 20px; }
.footer h4 { color: #fff; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer a:hover { color: var(--primary); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-v2 .footer-nav { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.footer-v2 .social-links { justify-content: center; margin-bottom: 30px; }