/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar { background: #1a1a2e; color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; align-items: center; }
.top-bar-social a { color: rgba(255,255,255,0.7); margin-right: 12px; transition: color 0.3s; }
.top-bar-social a:hover { color: #3b82f6; }
.top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-info a, .top-bar-info span { color: rgba(255,255,255,0.8); }
.top-bar-info a:hover { color: #3b82f6; }
.top-bar-info i { margin-right: 5px; color: #3b82f6; }

/* ===== NAVBAR ===== */
.navbar { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: relative; z-index: 999; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

/* Logo */
.logo, .footer-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { position: relative; width: 50px; height: 50px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.logo-gear { position: absolute; top: -4px; right: -4px; font-size: 14px; animation: spin 4s linear infinite; color: #fbbf24; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: #1a1a2e; line-height: 1.1; background: linear-gradient(135deg, #1a1a2e, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 11px; color: #6b7280; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a { padding: 10px 14px; font-weight: 500; font-size: 14px; color: #374151; border-radius: 8px; display: flex; align-items: center; gap: 5px; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: #1d4ed8; background: #eff6ff; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); border-radius: 12px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 16px; border-radius: 8px; font-size: 14px; color: #374151; }
.dropdown li a:hover { background: #eff6ff; color: #3b82f6; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); color: #fff; }

/* Nav Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; z-index: 1070; position: relative; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.nav-toggle span { width: 25px; height: 3px; background: #1a1a2e; border-radius: 3px; transition: all 0.3s ease; display: block; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Nav Overlay (all screens, hidden by default) */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; visibility: hidden; transition: all 0.3s ease; -webkit-tap-highlight-color: transparent; }
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ===== HERO / SLIDER ===== */
.hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(59,130,246,0.7) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 80px 0; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(59,130,246,0.4); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: #fff; color: #1a1a2e; border-color: #fff; }
.btn-secondary { background: #10b981; color: #fff; box-shadow: 0 4px 15px rgba(16,185,129,0.3); }
.btn-secondary:hover { transform: translateY(-2px); background: #059669; color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 60px 0; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%); border-radius: 50%; }
.page-header h1 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; }
.page-header .breadcrumb { display: flex; gap: 8px; margin-top: 12px; color: rgba(255,255,255,0.6); font-size: 14px; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb a:hover { color: #3b82f6; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-gray { background: #f8fafc; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.section-title p { color: #6b7280; font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-title .line { width: 60px; height: 4px; background: linear-gradient(90deg, #3b82f6, #1d4ed8); border-radius: 2px; margin: 15px auto 0; }

/* ===== STATS ===== */
.stats { background: linear-gradient(135deg, #3b82f6, #1d4ed8); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; color: #fff; }
.stat-item h3, .stat-value { font-size: 42px; font-weight: 800; font-family: 'Poppins', sans-serif; }
.stat-item p { font-size: 14px; opacity: 0.85; margin-top: 5px; }
.stat-item .stat-icon { font-size: 28px; margin-bottom: 10px; opacity: 0.7; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #fff; border-radius: 16px; padding: 35px 25px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; border: 1px solid #f0f0f0; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #3b82f6, #1d4ed8); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.service-card .icon { width: 70px; height: 70px; margin: 0 auto 20px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #3b82f6; transition: all 0.4s ease; }
.service-card:hover .icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; transform: rotateY(180deg); }
.service-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.service-card p { color: #6b7280; font-size: 14px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; color: #3b82f6; font-weight: 600; font-size: 14px; }
.service-card .card-link:hover { gap: 10px; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-image .experience-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; padding: 20px 25px; border-radius: 16px; text-align: center; box-shadow: 0 10px 30px rgba(59,130,246,0.3); }
.about-image .experience-badge h3 { font-size: 36px; font-weight: 800; line-height: 1; }
.about-image .experience-badge p { font-size: 13px; opacity: 0.9; }
.about-content h2 { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; }
.about-content p { color: #6b7280; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; }
.about-feature i { color: #10b981; font-size: 18px; }
.about-feature span { font-weight: 500; font-size: 14px; }

/* ===== PRICING / INFO ===== */
.info-box { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 20px; padding: 50px; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.info-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.2), transparent); border-radius: 50%; }
.info-box h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.info-box p { color: rgba(255,255,255,0.75); }
.info-box .phone-big { font-size: 36px; font-weight: 800; color: #3b82f6; margin-top: 20px; font-family: 'Poppins', sans-serif; }
.info-box .phone-big a { color: #3b82f6; }
.info-box .phone-big a:hover { color: #60a5fa; }

/* ===== AREAS GRID ===== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card { background: #fff; border-radius: 12px; padding: 25px; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: all 0.3s ease; border: 1px solid #f0f0f0; }
.area-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: #3b82f6; }
.area-card i { font-size: 24px; color: #3b82f6; margin-bottom: 10px; }
.area-card h3 { font-size: 16px; font-weight: 600; color: #1a1a2e; }

/* ===== BRANDS GRID ===== */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brand-card { background: #fff; border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: all 0.3s ease; border: 1px solid #f0f0f0; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 150px; }
.brand-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: #3b82f6; }
.brand-card img { max-height: 60px; margin-bottom: 10px; filter: grayscale(100%); transition: filter 0.3s; }
.brand-card:hover img { filter: grayscale(0%); }
.brand-card h3 { font-size: 16px; font-weight: 600; color: #1a1a2e; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; border: 1px solid #f0f0f0; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-card .card-image { height: 200px; overflow: hidden; }
.blog-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .card-image img { transform: scale(1.1); }
.blog-card .card-body { padding: 25px; }
.blog-card .card-date { font-size: 13px; color: #9ca3af; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: #3b82f6; }
.blog-card p { color: #6b7280; font-size: 14px; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; color: #3b82f6; font-weight: 600; font-size: 14px; }

/* ===== CONTACT ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: #fff; border-radius: 12px; padding: 25px; display: flex; align-items: center; gap: 15px; box-shadow: 0 2px 15px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; transition: all 0.3s; }
.contact-info-card:hover { border-color: #3b82f6; transform: translateX(5px); }
.contact-info-card .icon { width: 50px; height: 50px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #3b82f6; font-size: 20px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; color: #1a1a2e; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: #6b7280; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: #374151; margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 15px; font-family: inherit; transition: all 0.3s ease; background: #fff; }
.form-control:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card { background: #fff; border-radius: 16px; padding: 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* ===== MAP ===== */
.map-container { border-radius: 16px; overflow: hidden; height: 350px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: #fff; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #3b82f6; border-radius: 2px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 15px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.footer-social a:hover { background: #3b82f6; transform: translateY(-3px); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: ''; width: 6px; height: 6px; background: #3b82f6; border-radius: 50%; flex-shrink: 0; }
.footer-col ul li a:hover { color: #3b82f6; padding-left: 5px; }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact li i { color: #3b82f6; margin-top: 3px; }
.footer-contact li a { color: rgba(255,255,255,0.6); }
.footer-contact li a:hover { color: #3b82f6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links a:hover { color: #3b82f6; }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.1); z-index: 999; padding: 8px 0; }
.mobile-bottom-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10px; color: #6b7280; flex: 1; padding: 5px; }
.mobile-bottom-bar a i { font-size: 18px; }
.mobile-bottom-bar a:hover, .mobile-bottom-bar a:active { color: #3b82f6; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 90px; right: 20px; width: 55px; height: 55px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 998; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 90px; right: 85px; width: 45px; height: 45px; background: #3b82f6; color: #fff; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #1d4ed8; transform: translateY(-3px); }

/* ===== COOKIE CONSENT ===== */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -4px 30px rgba(0,0,0,0.15); z-index: 9999; padding: 0; animation: slideUp 0.5s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 1200px; margin: 0 auto; padding: 25px 20px; }
.cookie-content h4 { display: flex; align-items: center; gap: 8px; font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.cookie-icon { font-size: 24px; color: #f59e0b; margin-bottom: 5px; }
.cookie-content p { color: #6b7280; font-size: 14px; margin-bottom: 15px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 22px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.cookie-accept { background: #1d4ed8; color: #fff; }
.cookie-accept:hover { background: #1e40af; }
.cookie-reject { background: #374151; color: #fff; }
.cookie-reject:hover { background: #1f2937; }
.cookie-customize { background: transparent; color: #1d4ed8; border: 2px solid #1d4ed8; }
.cookie-customize:hover { background: #eff6ff; }
.cookie-save { background: #10b981; color: #fff; margin-top: 10px; }
.cookie-save:hover { background: #059669; }
.cookie-settings { margin-top: 15px; padding-top: 15px; border-top: 1px solid #e5e7eb; }
.cookie-option { padding: 8px 0; }
.cookie-option label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.cookie-option small { color: #9ca3af; margin-left: 5px; }

/* ===== ADSENSE ===== */
.adsense-slot { margin: 20px 0; text-align: center; min-height: 90px; }

/* ===== ALERTS ===== */
.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ===== CONTENT ===== */
.content-area { padding: 60px 0; }
.content-area h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; }
.content-area p { color: #4b5563; margin-bottom: 15px; line-height: 1.8; }
.content-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.sidebar-widget { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 15px rgba(0,0,0,0.06); margin-bottom: 25px; }
.sidebar-widget h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: #4b5563; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-widget ul li a:hover { color: #3b82f6; }
.sidebar-widget ul li a i { color: #3b82f6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid, .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-box { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .navbar-inner { position: relative; }
    .nav-toggle { display: flex; order: 2; }
    .nav-cta { order: 3; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; height: 100dvh; background: #fff; flex-direction: column; padding: 80px 30px 30px; z-index: 1060; box-shadow: -5px 0 30px rgba(0,0,0,0.15); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .nav-menu.active { right: 0; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { padding: 14px 0; border-bottom: 1px solid #f0f0f0; font-size: 16px; width: 100%; }
    .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 20px; display: none; min-width: auto; }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown li a { padding: 12px 16px; font-size: 15px; }
    
    .nav-cta { padding: 8px 12px; font-size: 0; }
    .nav-cta i { font-size: 18px; }
    .nav-cta span { display: none; }
    
    .hero { min-height: 400px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .hero-content { padding: 50px 0; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 24px; }
    .section-title p { font-size: 14px; }
    
    .services-grid, .blog-grid { grid-template-columns: 1fr; }
    .areas-grid, .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .content-sidebar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item h3, .stat-value { font-size: 32px; }
    
    .about-content h2 { font-size: 24px; }
    .about-features { grid-template-columns: 1fr; gap: 10px; }
    .about-image .experience-badge { bottom: -10px; right: -10px; padding: 15px 20px; }
    .about-image .experience-badge h3 { font-size: 28px; }
    
    .info-box { padding: 30px 20px; }
    .info-box h2 { font-size: 22px; }
    .info-box .phone-big { font-size: 28px; }
    
    .page-header { padding: 40px 0; }
    .page-header h1 { font-size: 24px; }
    
    .mobile-bottom-bar { display: flex; }
    .footer { padding-bottom: 70px; }
    .whatsapp-float { bottom: 70px; right: 15px; width: 50px; height: 50px; font-size: 24px; }
    .back-to-top { bottom: 70px; right: 75px; width: 40px; height: 40px; font-size: 16px; }
    
    .cookie-content { padding: 20px 15px; }
    .cookie-content h4 { font-size: 14px; }
    .cookie-content p { font-size: 13px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 22px; }
    .hero p { font-size: 14px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 14px; }
    .areas-grid, .brands-grid { grid-template-columns: 1fr; }
    .stat-item h3, .stat-value { font-size: 26px; }
    .section-title h2 { font-size: 22px; }
    .about-content h2 { font-size: 22px; }
    .info-box { padding: 25px 15px; }
    .info-box h2 { font-size: 20px; }
    .info-box .phone-big { font-size: 24px; }
    .cookie-actions { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
    .contact-info-card { padding: 15px; }
    .service-card { padding: 25px 20px; }
}
