/* Şirinevler Tesisat - Ana CSS */
:root {
    --primary: #1E3A5F;
    --secondary: #FF6B35;
    --accent: #F7931E;
    --dark: #0f1c2e;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #fff;
    --text: #333;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4 { line-height: 1.3; }
h2 span { color: var(--secondary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; font-size: 15px; }
.btn-primary { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--dark); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); }
.btn-success { background: #25d366; color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* Top Bar */
.topbar { background: var(--dark); color: var(--white); padding: 10px 0; font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--secondary); }
.topbar i { margin-right: 5px; }

/* Header */
/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 22px; font-weight: 800; white-space: nowrap; }
.logo-name1 { color: #1E3A5F; }
.logo-name2 { color: #FF6B35; }
.logo-tagline { font-size: 11px; color: #6c757d; white-space: nowrap; }
.header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav > a, .dropdown > a { font-weight: 500; color: var(--text); padding: 10px 0; }
.desktop-nav > a:hover, .dropdown > a:hover { color: var(--secondary); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow); border-radius: var(--radius); opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; padding: 10px 0; z-index: 100; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; color: var(--text); }
.dropdown-menu a:hover { background: var(--light); color: var(--secondary); }
.header-btn { display: inline-flex; }

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn { display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1002; }
.mobile-menu-btn span { display: block; width: 24px; height: 3px; background: var(--primary); margin: 5px auto; border-radius: 3px; transition: 0.3s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Overlay */
.mobile-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1003; opacity: 0; visibility: hidden; transition: 0.3s ease; backdrop-filter: blur(4px); }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100vh; background: var(--white); z-index: 1004; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; box-shadow: -5px 0 30px rgba(0,0,0,0.2); }
.mobile-menu.active { right: 0; }

.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); background: var(--light); }
.mobile-logo img { height: 40px; }
.mobile-close-btn { width: 40px; height: 40px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.mobile-close-btn:hover { background: var(--secondary); transform: rotate(90deg); }

.mobile-menu-body { flex: 1; overflow-y: auto; padding: 15px 0; }
.mobile-nav-link { display: flex; align-items: center; gap: 15px; padding: 15px 25px; color: var(--text); font-weight: 500; font-size: 16px; border-bottom: 1px solid var(--border); transition: 0.3s; }
.mobile-nav-link:hover { background: var(--light); color: var(--secondary); padding-left: 30px; }
.mobile-nav-link i { width: 20px; color: var(--secondary); }

.mobile-dropdown { border-bottom: 1px solid var(--border); }
.mobile-dropdown-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 25px; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 500; font-family: inherit; color: var(--text); transition: 0.3s; }
.mobile-dropdown-btn:hover { background: var(--light); }
.mobile-dropdown-btn span { display: flex; align-items: center; gap: 15px; }
.mobile-dropdown-btn span i { width: 20px; color: var(--secondary); }
.mobile-arrow { transition: 0.3s; color: var(--gray); }
.mobile-dropdown.active .mobile-arrow { transform: rotate(180deg); color: var(--secondary); }

.mobile-dropdown-content { max-height: 0; overflow: hidden; background: var(--light); transition: max-height 0.4s ease; }
.mobile-dropdown.active .mobile-dropdown-content { max-height: 500px; }
.mobile-dropdown-content a { display: block; padding: 12px 25px 12px 60px; color: var(--gray); font-size: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.mobile-dropdown-content a:hover { color: var(--secondary); background: rgba(255,107,53,0.1); padding-left: 65px; }
.mobile-dropdown-content a:last-child { border-bottom: none; }
.mobile-dropdown-content .view-all { color: var(--secondary); font-weight: 600; }

.mobile-menu-footer { padding: 20px; border-top: 1px solid var(--border); background: var(--light); }
.mobile-cta-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px; background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); border-radius: 10px; font-weight: 600; font-size: 15px; margin-bottom: 10px; transition: 0.3s; }
.mobile-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,107,53,0.4); }
.mobile-cta-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); margin-bottom: 0; }
.mobile-cta-btn.whatsapp:hover { box-shadow: 0 5px 20px rgba(37,211,102,0.4); }

body.menu-open { overflow: hidden; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), var(--dark)); color: var(--white); padding: 80px 0 100px; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 450px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,53,0.2); padding: 8px 16px; border-radius: 50px; font-size: 14px; margin-bottom: 20px; }
.hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.hero h1 span { color: var(--secondary); }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 500px; }
.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }
.hero-features { display: flex; gap: 30px; }
.hero-features .feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hero-features i { font-size: 20px; color: var(--secondary); }
.hero-card { background: var(--white); color: var(--text); border-radius: var(--radius); padding: 30px; }
.hero-card h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: 20px; }
.hero-card h3 i { color: var(--secondary); }
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
.brand-item { background: var(--light); padding: 10px 15px; border-radius: 8px; font-size: 13px; font-weight: 500; text-align: center; }
.hero-phone { display: flex; align-items: center; gap: 15px; background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); padding: 15px 20px; border-radius: 10px; }
.hero-phone i { font-size: 24px; }
.hero-phone small { font-size: 12px; opacity: 0.9; }
.hero-phone strong { font-size: 18px; display: block; }

/* Sections */
.section { padding: 80px 0; }
.section-gray { background: var(--light); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-header h2 { font-size: 36px; margin-bottom: 15px; }
.section-header p { color: var(--gray); font-size: 18px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 35px 30px; text-align: center; box-shadow: var(--shadow); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--secondary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.service-icon i { font-size: 32px; color: var(--white); }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card { display: flex; align-items: center; gap: 15px; background: var(--white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; }
.area-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.area-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--secondary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.area-card h3 { font-size: 16px; margin-bottom: 3px; }
.area-card p { font-size: 13px; color: var(--gray); }

/* Why Us Section */
.why-us { background: linear-gradient(135deg, var(--primary), var(--dark)); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { font-size: 36px; margin-bottom: 20px; }
.why-text p { opacity: 0.9; margin-bottom: 25px; font-size: 17px; }
.check-list { margin-bottom: 30px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 16px; }
.check-list i { color: var(--secondary); }
.why-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: var(--radius); text-align: center; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--secondary); }
.stat-text { font-size: 14px; opacity: 0.9; margin-top: 5px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-grid-page { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--primary), var(--dark)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img i { font-size: 48px; color: rgba(255,255,255,0.3); }
.blog-cat { position: absolute; top: 15px; left: 15px; background: var(--secondary); color: var(--white); padding: 5px 12px; border-radius: 5px; font-size: 12px; font-weight: 600; }
.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 15px; color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.blog-content h3 { font-size: 18px; margin-bottom: 10px; }
.blog-content h3 a:hover { color: var(--secondary); }
.blog-content p { color: var(--gray); font-size: 14px; margin-bottom: 15px; }
.blog-link { color: var(--secondary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.blog-link:hover { gap: 10px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 15px; overflow: hidden; box-shadow: var(--shadow); }
.faq-q { width: 100%; padding: 20px 25px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; font-family: inherit; }
.faq-q i { transition: 0.3s; color: var(--secondary); }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: 0.3s; }
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { padding: 0 25px 20px; color: var(--gray); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 36px; margin-bottom: 15px; }
.cta-section p { font-size: 18px; opacity: 0.95; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--primary), var(--dark)); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 36px; margin-bottom: 10px; }
.breadcrumb { font-size: 14px; opacity: 0.8; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { margin: 0 10px; }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }
.main-content { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.main-content h2 { font-size: 24px; margin: 30px 0 15px; color: var(--primary); }
.main-content h2:first-child { margin-top: 0; }
.main-content p { margin-bottom: 15px; }
.main-content ul { margin: 15px 0 15px 20px; }
.main-content ul li { margin-bottom: 8px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 25px; }
.widget { background: var(--white); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.widget h4 { font-size: 18px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--light); }
.widget ul li { margin-bottom: 12px; }
.widget ul li a { display: flex; align-items: center; gap: 10px; color: var(--text); }
.widget ul li a:hover { color: var(--secondary); }
.widget ul li a i { color: var(--secondary); font-size: 12px; }
.widget-cta { background: linear-gradient(135deg, var(--primary), var(--dark)); color: var(--white); text-align: center; }
.widget-cta h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.widget-cta p { opacity: 0.9; margin-bottom: 20px; }
.widget-cta .btn { margin-bottom: 10px; }

/* CTA Box */
.cta-box { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: var(--white); padding: 30px; border-radius: var(--radius); text-align: center; margin-top: 40px; }
.cta-box h3 { font-size: 22px; margin-bottom: 10px; }
.cta-box p { opacity: 0.95; margin-bottom: 20px; }

/* Mini Services */
.mini-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.mini-service { background: var(--light); padding: 20px; border-radius: 10px; text-align: center; }
.mini-service i { font-size: 28px; color: var(--secondary); margin-bottom: 10px; }
.mini-service h4 { font-size: 16px; margin-bottom: 8px; }
.mini-service p { font-size: 13px; color: var(--gray); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 8px; color: var(--text); box-shadow: var(--shadow); }
.pagination a:hover, .pagination a.active { background: var(--secondary); color: var(--white); }

/* Post Single */
.post-meta { display: flex; gap: 20px; color: var(--gray); font-size: 14px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.post-meta a { color: var(--secondary); }
.post-image { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.post-content { line-height: 1.8; }
.post-share { display: flex; align-items: center; gap: 15px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border); }
.post-share a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; color: var(--text); }
.post-share a:hover { background: var(--secondary); color: var(--white); }

/* Related Posts */
.related-posts { margin-top: 50px; }
.related-posts h3 { font-size: 22px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--light); padding: 20px; border-radius: 10px; }
.related-card:hover { background: var(--primary); color: var(--white); }
.related-card h4 { font-size: 15px; margin-bottom: 8px; }
.related-card span { font-size: 13px; opacity: 0.7; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 350px 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; background: var(--white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-item i { font-size: 24px; color: var(--secondary); }
.contact-item h4 { font-size: 16px; margin-bottom: 5px; }
.contact-item a, .contact-item p { color: var(--gray); }
.contact-item a:hover { color: var(--secondary); }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--secondary); }
.form-control.error { border-color: #dc3545; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Alerts */
.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 45px; margin-bottom: 15px; }
.footer-col h4 { font-size: 18px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--secondary); }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-list i { color: var(--secondary); margin-top: 3px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); }
.social-links a:hover { background: var(--secondary); }
.footer-seo { padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-seo p { font-size: 14px; opacity: 0.7; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 14px; opacity: 0.6; }
.footer-bottom a { color: var(--secondary); }

/* Float Buttons */
.whatsapp-btn, .call-btn { position: fixed; bottom: 25px; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.3); animation: pulse 2s infinite; }
.whatsapp-btn { right: 25px; background: #25d366; }
.call-btn { right: 100px; background: var(--secondary); }
.back-top { position: fixed; bottom: 100px; right: 25px; width: 45px; height: 45px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; font-size: 18px; }
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--secondary); }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .services-grid, .areas-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-text { text-align: center; }
    .why-stats { order: -1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .logo-title { font-size: 16px; }
    .logo-tagline { font-size: 9px; }
    .logo-icon svg { width: 32px; height: 38px; }
    .topbar { display: none; }
    .header { padding: 12px 0; }
    .logo img { height: 40px; }
    .desktop-nav { display: none; }
    .header-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 50px 0 70px; }
    .hero h1 { font-size: 28px; }
    .hero-btns { flex-direction: column; }
    .hero-features { flex-wrap: wrap; gap: 15px; }
    .section { padding: 50px 0; }
    .services-grid, .areas-grid, .blog-grid, .blog-grid-page { grid-template-columns: 1fr; }
    .section-header h2, .cta-section h2, .page-header h1 { font-size: 26px; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .contact-list { text-align: left; }
    .mini-services { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .call-btn { right: 25px; bottom: 100px; }
    .why-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.no-content { text-align: center; padding: 60px 20px; color: var(--gray); }
