*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #2c3e50; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(0,0,0,0.06); transition: all 0.3s; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; }
.logo-img { height: 55px; width: auto; border-radius: 4px; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav-link { font-weight: 500; font-size: 0.88rem; color: #34495e; letter-spacing: 0.3px; position: relative; transition: color 0.3s; text-transform: uppercase; }
.nav-link:hover { color: #c0392b; }
.nav-phone { background: #c0392b; color: #fff !important; padding: 9px 20px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; transition: background 0.3s; }
.nav-phone:hover { background: #a93226; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #2c3e50; border-radius: 1px; transition: all 0.3s; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: 1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.6) 0%, rgba(44,62,80,0.4) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 20px; max-width: 850px; animation: fadeInUp 1s ease; }
.hero-tag { display: inline-block; background: rgba(192,57,43,0.9); color: #fff; padding: 6px 18px; border-radius: 3px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.hero-title { font-family: 'Lora', serif; font-size: 3.4rem; font-weight: 600; margin-bottom: 18px; line-height: 1.15; }
.hero-subtitle { font-size: 1.15rem; margin-bottom: 35px; font-weight: 300; opacity: 0.92; letter-spacing: 0.5px; }
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-indicator { color: rgba(255,255,255,0.8); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce 2s infinite; }
.scroll-arrow { width: 1px; height: 30px; background: rgba(255,255,255,0.5); position: relative; }
.scroll-arrow::after { content: ''; position: absolute; bottom: 0; left: -3px; width: 7px; height: 7px; border-right: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); transform: rotate(45deg); }

/* Buttons */
.btn { display: inline-block; padding: 14px 34px; border-radius: 3px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; cursor: pointer; border: none; letter-spacing: 0.5px; }
.btn-primary { background: #c0392b; color: #fff; }
.btn-primary:hover { background: #a93226; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(192,57,43,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: #fff; color: #2c3e50; }

/* Stats */
.stats-bar { background: #f8f9fa; padding: 50px 0; border-bottom: 1px solid #e9ecef; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { display: block; font-family: 'Lora', serif; font-size: 2.6rem; font-weight: 600; color: #c0392b; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: #666; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* Sections */
.section-tag { display: inline-block; color: #c0392b; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Lora', serif; font-size: 2.3rem; color: #2c3e50; margin-bottom: 18px; line-height: 1.2; }
.section-title.center { text-align: center; }
.section-subtitle { color: #666; font-size: 1.05rem; margin-bottom: 45px; }
.section-subtitle.center { text-align: center; }
.section-header { text-align: center; margin-bottom: 20px; }

/* About */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-content p { margin-bottom: 16px; color: #555; font-size: 1.02rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: #444; }
.feature-icon { color: #c0392b; font-size: 1.1rem; }
.about-image { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services { padding: 100px 0; background: #f8f9fa; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: all 0.35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.service-color { height: 5px; }
.service-body { padding: 30px 28px; }
.service-body h3 { font-size: 1.15rem; margin-bottom: 12px; color: #2c3e50; font-weight: 600; }
.service-body p { color: #666; font-size: 0.92rem; margin-bottom: 15px; }
.service-body ul { list-style: none; padding-left: 0; }
.service-body ul li { padding: 4px 0; padding-left: 18px; position: relative; color: #555; font-size: 0.88rem; }
.service-body ul li::before { content: '\2713'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* Service Area */
.service-area { background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); padding: 70px 0; }
.area-content { text-align: center; }
.area-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 25px; }
.area-tag { background: rgba(255,255,255,0.1); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.area-tag:hover { background: rgba(255,255,255,0.2); }

/* Gallery */
.gallery { padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.gallery-item { border-radius: 4px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { height: 300px; }

/* Contact */
.contact { padding: 100px 0; background: #f8f9fa; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info p { color: #555; margin-bottom: 30px; font-size: 1.02rem; }
.contact-card { background: #fff; border-radius: 4px; padding: 30px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid #eee; }
.contact-row:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; color: #c0392b; }
.contact-row div { display: flex; flex-direction: column; }
.contact-row strong { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-row a, .contact-row span { color: #2c3e50; font-weight: 500; font-size: 0.95rem; }
.contact-row a:hover { color: #c0392b; }
.contact-form-wrapper { background: #fff; border-radius: 4px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form h3 { font-family: 'Lora', serif; font-size: 1.4rem; color: #2c3e50; margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: #444; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: 3px; font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s; background: #fafbfc; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #c0392b; background: #fff; }

/* Footer */
.footer { background: #1a1a2e; color: #a0a0a0; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; }
.footer-logo { height: 55px; width: auto; border-radius: 4px; margin-bottom: 15px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-links h4 { color: #fff; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a0a0a0; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #e74c3c; }
.footer-bottom { border-top: 1px solid #2a2a40; padding: 22px 0; text-align: center; font-size: 0.85rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wide { grid-column: span 1; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 30px; gap: 18px; transform: translateX(-100%); transition: transform 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { transform: translateX(0); }
    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .about, .services, .contact, .gallery { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .contact-form-wrapper { padding: 25px; }
    .stat-number { font-size: 2rem; }
}
