/* ===== GLOBAL ===== */
:root { --primary: #e8232a; --dark: #1a1a1a; --gray: #f5f5f5; --text: #444; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
section { padding: 80px 0; }

/* ===== PRELOADER ===== */
#preloader { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.loader { width: 50px; height: 50px; border: 4px solid #f0f0f0; border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HEADER ===== */
#siteHeader { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s; }
#siteHeader.scrolled .topbar { display: none; }
#siteHeader.scrolled .navbar { background: #fff !important; box-shadow: 0 2px 20px rgba(0,0,0,0.12) !important; }
#siteHeader.scrolled .nav-link { color: var(--dark) !important; }
#siteHeader.scrolled .navbar-brand span { color: var(--dark); }
#siteHeader.scrolled .navbar-toggler i { color: var(--primary) !important; }

/* ===== TOPBAR ===== */
.topbar { background: rgba(0,0,0,0.6); color: #fff; font-size: 13px; padding: 8px 0; backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.topbar a { color: #ccc; margin-left: 6px; }
.topbar a:hover { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar { background: transparent; padding: 0; transition: all 0.4s; }
.brand-icon { width: 45px; height: 45px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.navbar-brand span { font-size: 22px; font-weight: 700; color: #fff; }
.navbar-brand span span { color: var(--primary); }
.nav-link { font-weight: 500; color: rgba(255,255,255,0.9) !important; padding: 22px 15px !important; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.navbar .btn-quote { background: var(--primary); color: #fff !important; padding: 10px 22px !important; border-radius: 4px; margin-left: 10px; }
.navbar .btn-quote:hover { background: #c0181e; }
.navbar-toggler { border: none; outline: none; box-shadow: none !important; }
.navbar-toggler i { color: #fff; font-size: 20px; }

/* ===== HERO SECTION ===== */
.hero-section { position: relative; width: 100%; height: 100vh; min-height: 650px; overflow: hidden; }

/* Video BG */
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 60%, rgba(232,35,42,0.15) 100%); }

/* Hero Content */
.hero-content { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; padding-bottom: 100px; }
.hero-tag { display: inline-flex; align-items: center; background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: 60px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 35px; line-height: 1.8; max-width: 560px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-red { background: var(--primary); color: #fff; padding: 14px 34px; border-radius: 4px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; transition: 0.3s; border: 2px solid var(--primary); }
.btn-red:hover { background: transparent; color: #fff; }
.btn-border { border: 2px solid rgba(255,255,255,0.7); color: #fff; padding: 14px 34px; border-radius: 4px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; transition: 0.3s; }
.btn-border:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* Hero Bar */
.hero-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; background: rgba(10,10,10,0.90); border-top: 3px solid var(--primary); }
.hero-bar-item { display: flex; align-items: center; gap: 15px; padding: 22px 30px; color: #fff; border-right: 1px solid rgba(255,255,255,0.08); transition: 0.3s; }
.hero-bar-item:hover { background: rgba(232,35,42,0.15); }
.hero-bar-item i { font-size: 28px; color: var(--primary); flex-shrink: 0; }
.hero-bar-item strong { display: block; font-size: 15px; font-weight: 700; }
.hero-bar-item span { font-size: 12px; color: #aaa; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 30px 0; }
.stat-item { text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.3); }
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: 40px; font-weight: 800; }
.stat-item p { font-size: 13px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 55px; }
.sec-sub { color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.section-title h2 { font-size: 38px; font-weight: 800; color: var(--dark); }
.section-title h2 span { color: var(--primary); }
.section-title p { color: #777; max-width: 600px; margin: 12px auto 0; font-size: 15px; }
.title-line { width: 55px; height: 3px; background: var(--primary); margin: 15px auto 0; }

/* ===== ABOUT ===== */
.about-section { background: #fff; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 8px; width: 100%; height: 460px; object-fit: cover; }
.exp-badge { position: absolute; bottom: 30px; right: -15px; background: var(--primary); color: #fff; width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 30px rgba(232,35,42,0.5); }
.exp-badge span:first-child { font-size: 38px; font-weight: 800; line-height: 1; }
.exp-badge span:last-child { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.about-content h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
.about-content h2 span { color: var(--primary); }
.about-content > p { color: #666; line-height: 1.8; margin-bottom: 15px; }
.about-feature { display: flex; align-items: flex-start; margin-bottom: 18px; }
.about-feature i { color: var(--primary); font-size: 20px; margin-right: 14px; margin-top: 2px; flex-shrink: 0; }
.about-feature h6 { font-weight: 700; color: var(--dark); margin-bottom: 3px; font-size: 15px; }
.about-feature p { margin: 0; font-size: 13px; color: #777; }
.btn-red-solid { background: var(--primary); color: #fff; padding: 13px 30px; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; transition: 0.3s; border: 2px solid var(--primary); }
.btn-red-solid:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ===== SERVICES ===== */
.services-section { background: var(--gray); }
.service-card { background: #fff; border-radius: 8px; padding: 35px 28px; transition: 0.3s; box-shadow: 0 3px 15px rgba(0,0,0,0.06); height: 100%; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,0,0,0.12); border-bottom-color: var(--primary); }
.service-icon { width: 75px; height: 75px; background: rgba(232,35,42,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: 0.3s; }
.service-card:hover .service-icon { background: var(--primary); }
.service-icon i { font-size: 30px; color: var(--primary); transition: 0.3s; }
.service-card:hover .service-icon i { color: #fff; }
.service-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 12px; font-size: 17px; }
.service-card p { color: #777; font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.srv-link { color: var(--primary); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: 0.3s; }
.srv-link:hover { gap: 10px; }

/* ===== PRODUCTS ===== */
.products-section { background: #fff; }
.product-card { border-radius: 8px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: 0.3s; background: #fff; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.14); }
.product-img { position: relative; overflow: hidden; height: 230px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-overlay { position: absolute; inset: 0; background: rgba(232,35,42,0.88); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay a { color: #fff; border: 2px solid #fff; padding: 10px 24px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.product-overlay a:hover { background: #fff; color: var(--primary); }
.product-body { padding: 22px; }
.product-body h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-body p { color: #777; font-size: 13px; margin: 0; }
.product-tag { position: absolute; top: 15px; left: 15px; background: var(--primary); color: #fff; font-size: 11px; padding: 5px 14px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--dark); padding: 80px 0; }
.why-card { text-align: center; padding: 35px 20px; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; transition: 0.3s; }
.why-card:hover { border-color: var(--primary); background: rgba(232,35,42,0.05); }
.why-icon { width: 85px; height: 85px; border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; transition: 0.3s; }
.why-card:hover .why-icon { background: var(--primary); }
.why-icon i { font-size: 34px; color: var(--primary); transition: 0.3s; }
.why-card:hover .why-icon i { color: #fff; }
.why-card h5 { color: #fff; font-weight: 700; margin-bottom: 12px; font-size: 17px; }
.why-card p { color: #aaa; font-size: 14px; line-height: 1.7; margin: 0; }

/* ===== CTA ===== */
.cta-section { background: var(--primary); padding: 75px 0; }
.cta-section h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 16px; margin: 0; }
.btn-white { background: #fff; color: var(--primary); padding: 14px 36px; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; transition: 0.3s; border: 2px solid #fff; }
.btn-white:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray); }
.testi-card { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 3px 20px rgba(0,0,0,0.07); position: relative; height: 100%; }
.testi-card::before { content: '\201C'; font-size: 90px; color: var(--primary); opacity: 0.12; position: absolute; top: 5px; left: 18px; font-family: Georgia; line-height: 1; }
.stars { color: #ffc107; font-size: 14px; margin-bottom: 15px; }
.testi-card p { color: #666; font-style: italic; line-height: 1.8; margin-bottom: 22px; position: relative; z-index: 1; font-size: 14px; }
.testi-author { display: flex; align-items: center; }
.testi-author img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; margin-right: 14px; border: 3px solid var(--primary); }
.testi-author h6 { font-weight: 700; color: var(--dark); margin: 0 0 3px; }
.testi-author span { font-size: 12px; color: #999; }

/* ===== CLIENTS ===== */
.clients-section { background: #fff; padding: 60px 0; }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 15px; filter: grayscale(100%); opacity: 0.55; transition: 0.3s; }
.client-logo:hover { filter: none; opacity: 1; }
.client-logo img { max-height: 55px; }

/* ===== BLOG ===== */
.blog-section { background: var(--gray); }
.blog-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.07); transition: 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.blog-img { height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: #999; margin-bottom: 12px; }
.blog-meta span { margin-right: 14px; }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-body h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; font-size: 16px; line-height: 1.5; }
.blog-body p { color: #777; font-size: 13px; margin-bottom: 16px; line-height: 1.7; }
.read-more { color: var(--primary); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: 0.3s; }
.read-more:hover { gap: 10px; }

/* ===== FOOTER ===== */
footer { background: #111; color: #aaa; }
.footer-top { padding: 70px 0 40px; }
.footer-brand h4 { color: #fff; font-weight: 800; font-size: 22px; margin-bottom: 15px; }
.footer-brand h4 span { color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 50%; color: #aaa; margin-right: 8px; transition: 0.3s; font-size: 14px; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-widget h5 { color: #fff; font-weight: 700; margin-bottom: 22px; font-size: 16px; position: relative; padding-bottom: 12px; }
.footer-widget h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--primary); }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a { color: #aaa; font-size: 14px; transition: 0.3s; display: flex; align-items: center; }
.footer-widget ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-widget ul li a i { margin-right: 8px; color: var(--primary); font-size: 11px; }
.footer-contact li { display: flex; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-contact li i { color: var(--primary); margin-right: 12px; margin-top: 3px; min-width: 16px; }
.footer-bottom { background: #0a0a0a; padding: 18px 0; font-size: 13px; }
.footer-bottom p { margin: 0; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/page-hero.jpg') center/cover no-repeat; padding: 160px 0 80px; text-align: center; color: #fff; }
.page-hero h1 { font-size: 46px; font-weight: 800; }
.page-hero .breadcrumb { justify-content: center; background: none; margin: 10px 0 0; padding: 0; }
.page-hero .breadcrumb-item a, .page-hero .breadcrumb-item { color: #ccc; font-size: 14px; }
.page-hero .breadcrumb-item.active { color: var(--primary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #aaa; }

/* ===== TEAM ===== */
.team-card { text-align: center; }
.team-img { position: relative; overflow: hidden; border-radius: 8px; margin-bottom: 18px; }
.team-img img { width: 100%; height: 280px; object-fit: cover; transition: 0.4s; }
.team-social-overlay { position: absolute; inset: 0; background: rgba(232,35,42,0.88); display: flex; align-items: center; justify-content: center; gap: 10px; opacity: 0; transition: 0.3s; }
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a { color: #fff; width: 40px; height: 40px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.team-social-overlay a:hover { background: #fff; color: var(--primary); }
.team-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card span { color: var(--primary); font-size: 14px; }

/* ===== SERVICE DETAIL ===== */
.service-detail-card { background: #fff; border-radius: 8px; padding: 40px 30px; box-shadow: 0 3px 20px rgba(0,0,0,0.07); transition: 0.3s; height: 100%; border-top: 3px solid transparent; }
.service-detail-card:hover { border-top-color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.service-detail-card .num { font-size: 55px; font-weight: 800; color: rgba(232,35,42,0.08); line-height: 1; margin-bottom: 10px; }
.service-detail-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.service-detail-card p { color: #777; font-size: 14px; line-height: 1.8; }
.service-detail-card ul { list-style: none; padding: 0; margin-top: 15px; }
.service-detail-card ul li { font-size: 14px; color: #666; padding: 6px 0; border-bottom: 1px dashed #eee; }
.service-detail-card ul li i { color: var(--primary); margin-right: 8px; }

/* ===== FILTER BTNS ===== */
.filter-btns { margin-bottom: 40px; }
.filter-btns .btn { border-radius: 4px; padding: 9px 24px; font-size: 13px; font-weight: 600; margin: 4px; border: 2px solid #ddd; color: var(--dark); transition: 0.3s; }
.filter-btns .btn.active, .filter-btns .btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== CONTACT ===== */
.contact-info-card { background: var(--primary); color: #fff; border-radius: 8px; padding: 40px 30px; height: 100%; }
.contact-info-card h4 { font-weight: 700; margin-bottom: 28px; font-size: 22px; }
.contact-info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
.contact-info-item .icon { width: 46px; height: 46px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; }
.contact-info-item h6 { color: rgba(255,255,255,0.75); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item p { margin: 0; font-size: 14px; }
.contact-form-wrap { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 5px 30px rgba(0,0,0,0.08); }
.contact-form-wrap h4 { font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.form-control { border: 1px solid #e0e0e0; border-radius: 4px; padding: 12px 15px; font-size: 14px; transition: 0.3s; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,35,42,0.1); }
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 420px; border: none; display: block; }

/* ===== BACK TO TOP ===== */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--primary); color: #fff; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; display: none; z-index: 999; box-shadow: 0 4px 15px rgba(232,35,42,0.4); transition: 0.3s; }
#backToTop:hover { background: var(--dark); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 991px) {
  .navbar-collapse { background: #111 !important; padding: 15px 20px 20px; margin-top: 5px; border-top: 3px solid var(--primary); border-radius: 0 0 8px 8px; }
  .nav-link { color: #fff !important; padding: 12px 15px !important; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; display: block; }
  .nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(232,35,42,0.08); border-radius: 4px; }
  .navbar .btn-quote { margin: 12px 0 0 0 !important; display: block; text-align: center; border-radius: 4px; padding: 12px 20px !important; }
  .navbar-toggler i { color: #fff !important; font-size: 22px; }
  #siteHeader.scrolled .navbar-toggler i { color: var(--primary) !important; }
  #siteHeader.scrolled .navbar-collapse { background: #fff !important; border-top: 3px solid var(--primary); }
  #siteHeader.scrolled .nav-link { color: var(--dark) !important; }
  #siteHeader.scrolled .nav-link:hover, #siteHeader.scrolled .nav-link.active { color: var(--primary) !important; }
  .hero-content h1 { font-size: 38px; }
  .hero-bar-item { padding: 14px 16px; }
  .exp-badge { right: 0; }
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
  .hero-content { padding-bottom: 180px; }
  .hero-tag { font-size: 11px; padding: 6px 14px; }
  .btn-red, .btn-border { padding: 11px 20px; font-size: 13px; }
  .hero-bar-item strong { font-size: 12px; }
  .hero-bar-item span { font-size: 11px; }
  .hero-bar-item i { font-size: 20px; }
  .hero-bar-item { padding: 12px 10px; gap: 8px; }
  section { padding: 55px 0; }
  .section-title h2 { font-size: 26px; }
  .about-img-wrap img { height: 300px; }
  .exp-badge { width: 100px; height: 100px; right: 10px; bottom: 10px; }
  .exp-badge span:first-child { font-size: 28px; }
  .about-content h2 { font-size: 26px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding: 15px 0; }
  .stat-item:last-child { border-bottom: none; }
  .cta-section h2 { font-size: 24px; }
  .cta-section { padding: 50px 0; }
  .product-img { height: 200px; }
  .blog-img { height: 180px; }
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 32px; }
  .footer-top { padding: 50px 0 30px; }
  .contact-form-wrap { padding: 25px; }
}

/* ===== MOBILE SMALL ===== */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 24px; line-height: 1.2; }
  .hero-content p { font-size: 13px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-red, .btn-border { width: 100%; justify-content: center; }
  .hero-bar-item { padding: 10px 8px; gap: 6px; }
  .hero-bar-item strong { font-size: 11px; }
  .hero-bar-item span { display: none; }
  .stat-item h3 { font-size: 30px; }
  .section-title h2 { font-size: 22px; }
  .service-card { padding: 25px 18px; }
  .testi-card { padding: 22px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
}
