/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Open Sans',sans-serif;color:#333;line-height:1.6;font-size:16px}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ===== CONTAINER ===== */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}

/* ===== TOP BAR ===== */
.topbar{background:#1a1a1a;color:#ccc;font-size:13px;padding:8px 0}
.topbar-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.topbar-left{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.topbar-left a{color:#ccc;transition:color 0.2s}
.topbar-left a:hover{color:#fff}
.topbar-icon{margin-right:2px}
.topbar-sep{color:#555}
.topbar-right{display:flex;align-items:center;gap:10px}
.social-icon{color:#ccc;transition:color 0.2s;display:flex;align-items:center}
.social-icon:hover{color:#f0a500}

/* ===== NAVBAR ===== */
.navbar{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,0.08);position:sticky;top:0;z-index:100}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:72px}
.nav-logo img{height:52px;width:auto}
.nav-menu{display:flex;gap:0;align-items:center}
.nav-menu li{position:relative}
.nav-menu a{display:block;padding:28px 18px;font-size:14px;font-weight:600;color:#333;transition:color 0.2s;letter-spacing:0.02em;text-transform:uppercase;font-size:13px}
.nav-menu a:hover,.nav-menu a.active{color:#f0a500}
.nav-toggle{display:none;background:none;border:none;font-size:24px;cursor:pointer;color:#333}
.has-dropdown:hover .dropdown{display:block}
.dropdown{display:none;position:absolute;top:100%;left:0;background:#fff;min-width:180px;box-shadow:0 4px 20px rgba(0,0,0,0.12);border-top:3px solid #f0a500;z-index:200}
.dropdown li a{padding:12px 18px;font-size:13px;border-bottom:1px solid #f5f5f5}

/* ===== BUTTONS ===== */
.btn-primary{display:inline-block;background:#f0a500;color:#fff;padding:13px 30px;border-radius:4px;font-weight:700;font-size:15px;transition:background 0.2s;border:none;cursor:pointer;letter-spacing:0.02em}
.btn-primary:hover{background:#d4920a}
.btn-outline{display:inline-block;border:2px solid #f0a500;color:#f0a500;padding:11px 28px;border-radius:4px;font-weight:700;font-size:15px;transition:all 0.2s}
.btn-outline:hover{background:#f0a500;color:#fff}
.btn-outline-sm{display:inline-block;border:2px solid #f0a500;color:#f0a500;padding:8px 20px;border-radius:4px;font-weight:600;font-size:13px;transition:all 0.2s}
.btn-outline-sm:hover{background:#f0a500;color:#fff}
.btn-white{display:inline-block;background:#fff;color:#333;padding:13px 30px;border-radius:4px;font-weight:700;font-size:15px;transition:all 0.2s}
.btn-white:hover{background:#f0a500;color:#fff}
.text-center{text-align:center;margin-top:2.5rem}

/* ===== SECTION HELPERS ===== */
.eyebrow{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:0.12em;color:#f0a500;margin-bottom:0.5rem}
.section-center{text-align:center;font-family:'Poppins',sans-serif;font-size:clamp(26px,3vw,36px);font-weight:700;margin-bottom:2.5rem;color:#1a1a1a}
h2{font-family:'Poppins',sans-serif;font-size:clamp(24px,3vw,34px);font-weight:700;color:#1a1a1a;line-height:1.2;margin-bottom:1rem}
h3{font-family:'Poppins',sans-serif;font-size:20px;font-weight:600;color:#1a1a1a;margin-bottom:0.75rem}

/* ===== PAGE HERO ===== */
.page-hero{background:linear-gradient(135deg,#1a1a1a 0%,#2e2e2e 100%);padding:80px 24px;text-align:center;color:#fff}
.page-hero h1{font-family:'Poppins',sans-serif;font-size:clamp(32px,4vw,52px);font-weight:800;margin-bottom:1rem}
.page-hero p{font-size:17px;color:rgba(255,255,255,0.7);max-width:600px;margin:0 auto}

/* ===== HERO ===== */
.hero{background:linear-gradient(135deg,#0f0f0f 0%,#1e2a38 100%);padding:100px 24px;min-height:90vh;display:flex;align-items:center}
.hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;width:100%}
.hero-text h1{font-family:'Poppins',sans-serif;font-size:clamp(32px,4vw,54px);font-weight:800;color:#fff;line-height:1.15;margin-bottom:1.25rem}
.hero-text p{font-size:17px;color:rgba(255,255,255,0.7);margin-bottom:2rem;line-height:1.7;max-width:500px}
.hero-img img{border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,0.4);width:100%;object-fit:cover;max-height:480px}

/* ===== WHO SECTION ===== */
.who-section{padding:80px 24px;background:#fff}
.who-img img{border-radius:10px;width:100%;object-fit:cover;max-height:420px}
.who-text p{color:#555;margin-bottom:1.25rem;font-size:16px;line-height:1.7}
.who-text h2{margin-bottom:1.25rem}

/* ===== HELP SECTION ===== */
.help-section{padding:80px 24px;background:#f8f8f8}
.help-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;max-width:700px;margin:0 auto}
.help-card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.07);transition:transform 0.2s,box-shadow 0.2s}
.help-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,0.12)}
.help-card img{width:100%;height:220px;object-fit:cover}
.help-card-body{padding:1.5rem}
.help-card-body h3{margin-bottom:0.75rem}
.help-card-body p{color:#666;font-size:14px;margin-bottom:1.25rem}

/* ===== EMERGENCY ===== */
.emergency-section{background:#f0a500;padding:80px 24px}
.emergency-inner{}
.emergency-text h2{color:#fff;font-size:clamp(26px,3vw,40px);margin-bottom:1rem}
.emergency-text p{color:rgba(255,255,255,0.85);font-size:16px;margin-bottom:1.75rem;line-height:1.7}
.emergency-img img{border-radius:10px;width:100%;max-height:360px;object-fit:cover}

/* ===== TESTIMONIALS ===== */
.testimonials-section{padding:80px 24px;background:#fff}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonials-grid-2{grid-template-columns:repeat(3,1fr)}
.testimonial-card{background:#f9f9f9;border:1px solid #eee;border-radius:10px;padding:1.75rem;position:relative}
.testimonial-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:#f0a500;border-radius:10px 10px 0 0}
.stars{color:#f0a500;font-size:18px;margin-bottom:0.75rem;letter-spacing:2px}
.testimonial-card p{color:#555;font-size:14px;line-height:1.7;margin-bottom:1rem;font-style:italic}
.testimonial-author{font-weight:700;font-size:14px;color:#1a1a1a}

/* ===== OUR WORK ===== */
.work-section{padding:80px 24px;background:#f8f8f8}
.work-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.work-grid img{border-radius:8px;height:200px;object-fit:cover;width:100%;transition:transform 0.2s,opacity 0.2s}
.work-grid img:hover{transform:scale(1.03);opacity:0.9}

/* ===== BLOG ===== */
.blog-section{padding:80px 24px;background:#fff}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2rem}
.blog-card{background:#fff;border:1px solid #eee;border-radius:10px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,0.05);transition:transform 0.2s,box-shadow 0.2s}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.1)}
.blog-img-placeholder{height:180px;background:#e8e8e8}
.blog-body{padding:1.25rem}
.blog-body h3{font-size:16px;margin-bottom:0.5rem;line-height:1.4}
.blog-body h3 a{color:#1a1a1a;transition:color 0.2s}
.blog-body h3 a:hover{color:#f0a500}
.blog-body p{font-size:13px;color:#777;line-height:1.6;margin-bottom:1rem}
.learn-more{font-size:13px;font-weight:700;color:#f0a500;text-transform:uppercase;letter-spacing:0.06em;transition:color 0.2s}
.learn-more:hover{color:#d4920a}
.blog-full-section{padding:80px 24px;background:#f8f8f8}
.blog-grid-full{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.blog-card-full{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.07)}
.blog-card-full img{width:100%;height:240px;object-fit:cover}
.blog-card-body{padding:1.5rem}
.blog-card-body h2{font-size:18px;margin-bottom:0.75rem;line-height:1.4}
.blog-card-body h2 a{color:#1a1a1a;transition:color 0.2s}
.blog-card-body h2 a:hover{color:#f0a500}
.blog-card-body p{font-size:14px;color:#666;line-height:1.7;margin-bottom:1rem}

/* ===== ABOUT PAGE ===== */
.about-section{padding:80px 24px;background:#fff}
.about-img img{border-radius:10px;width:100%;object-fit:cover;max-height:480px}
.about-text h2{margin-bottom:1rem}
.about-text h3{margin-top:1.5rem;margin-bottom:0.75rem;font-size:18px;color:#f0a500}
.about-text p{color:#555;font-size:15px;line-height:1.7;margin-bottom:1rem}
.values-list{padding-left:0;margin-top:0.5rem}
.values-list li{color:#555;font-size:15px;line-height:1.7;margin-bottom:0.75rem;padding-left:1rem;border-left:3px solid #f0a500}
.why-section{padding:80px 24px;background:#f8f8f8}
.why-text h2{margin-bottom:1rem}
.why-text p{color:#555;font-size:15px;line-height:1.7}
.why-img img{border-radius:10px;width:100%;object-fit:cover;max-height:420px}

/* ===== PRODUCTS PAGE ===== */
.products-section{padding:80px 24px;background:#f8f8f8}
.products-list{display:flex;flex-direction:column;gap:5rem}
.product-item{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.product-item-reverse{direction:rtl}
.product-item-reverse > *{direction:ltr}
.product-item-img{position:relative}
.product-item-img img{border-radius:12px;width:100%;max-height:420px;object-fit:cover;box-shadow:0 8px 30px rgba(0,0,0,0.12)}
.product-type-badge{position:absolute;top:16px;left:16px;background:#f0a500;color:#fff;font-size:12px;font-weight:700;padding:5px 14px;border-radius:3px;letter-spacing:0.1em}
.product-item-name{font-family:'Poppins',sans-serif;font-size:52px;font-weight:800;color:#1a1a1a;margin-bottom:1.5rem;margin-top:0.5rem}
.product-specs-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:0.5rem}
.spec{background:#fff;border:1px solid #eee;border-radius:8px;padding:1rem;text-align:center}
.spec-label{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:#999;margin-bottom:4px}
.spec-value{font-size:16px;font-weight:700;color:#1a1a1a}
.product-item-desc{color:#555;font-size:14px;line-height:1.7;margin-bottom:1.5rem}

/* ===== SPEC COMPARISON TABLE ===== */
.spec-table-section{padding:80px 24px;background:#fff;border-top:1px solid #eee}
.spec-table-intro{text-align:center;color:#666;font-size:15px;line-height:1.7;max-width:680px;margin:0 auto 2.5rem}
.spec-table-wrap{overflow-x:auto;border-radius:10px;box-shadow:0 4px 20px rgba(0,0,0,0.07)}
.spec-table{width:100%;border-collapse:collapse;min-width:640px;background:#fff}
.spec-table thead th{background:#1a1a1a;color:#fff;font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;padding:16px 14px;text-align:center;letter-spacing:0.02em}
.spec-table thead th:first-child{text-align:left;background:#f0a500}
.spec-table tbody td{padding:12px 14px;font-size:14px;text-align:center;border-bottom:1px solid #eee;color:#444}
.spec-table tbody td.feat{text-align:left;font-weight:700;color:#1a1a1a;background:#f9f9f9}
.spec-table tbody tr:nth-child(even) td{background:#fcfcfc}
.spec-table tbody tr:nth-child(even) td.feat{background:#f4f4f4}
.spec-table tbody tr:hover td{background:#fff7e8}
.spec-table tbody tr:hover td.feat{background:#fdecc8}
.spec-table-note{text-align:center;color:#999;font-size:13px;margin-top:1.25rem;font-style:italic}

/* ===== CONTACT PAGE ===== */
.contact-section{padding:80px 24px;background:#fff}
.contact-inner{align-items:flex-start}
.contact-left h2{margin-bottom:1rem}
.contact-left p{color:#555;font-size:15px;line-height:1.7;margin-bottom:1.5rem}
.contact-details{display:flex;flex-direction:column;gap:1.25rem;margin-top:1.5rem}
.contact-detail-item{display:flex;gap:1rem;align-items:flex-start}
.contact-icon{font-size:20px;margin-top:2px;flex-shrink:0}
.contact-detail-item strong{display:block;font-size:14px;font-weight:700;color:#1a1a1a;margin-bottom:4px}
.contact-detail-item p{font-size:14px;color:#555;margin-bottom:2px}
.contact-detail-item a{color:#555;transition:color 0.2s}
.contact-detail-item a:hover{color:#f0a500}
.contact-right h3{font-size:22px;margin-bottom:1.5rem}
.contact-form{display:flex;flex-direction:column;gap:1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{font-size:13px;font-weight:700;color:#333;text-transform:uppercase;letter-spacing:0.04em}
.form-group input,.form-group textarea{border:1px solid #ddd;border-radius:6px;padding:11px 14px;font-size:15px;font-family:'Open Sans',sans-serif;color:#333;outline:none;transition:border-color 0.2s}
.form-group input:focus,.form-group textarea:focus{border-color:#f0a500}
.form-group textarea{resize:vertical}
.map-section{line-height:0}

/* ===== FOOTER ===== */
.footer{}
.footer-cta{background:#1a1a1a;padding:60px 24px}
.footer-cta-inner{display:grid;grid-template-columns:1fr 2fr;gap:3rem;align-items:center}
.footer-cta-img img{border-radius:10px;width:100%;max-height:280px;object-fit:cover}
.footer-cta-text h3{font-family:'Poppins',sans-serif;font-size:clamp(22px,2.5vw,34px);font-weight:700;color:#fff;margin-bottom:1.5rem}
.footer-main{background:#111;padding:60px 24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:2.5rem}
.footer-col p{color:#999;font-size:14px;line-height:1.7}
.footer-col h4{font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;color:#fff;margin-bottom:1.25rem;text-transform:uppercase;letter-spacing:0.06em}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{color:#999;font-size:14px;transition:color 0.2s}
.footer-col ul li a:hover{color:#f0a500}
.footer-bottom{background:#0a0a0a;padding:18px 24px;text-align:center}
.footer-bottom p{color:#666;font-size:13px}
.footer-bottom a{color:#f0a500}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .two-col,.hero-inner,.footer-grid,.footer-cta-inner{grid-template-columns:1fr;gap:2rem}
  .product-item,.product-item-reverse{grid-template-columns:1fr;direction:ltr}
  .testimonials-grid,.testimonials-grid-2,.blog-grid,.blog-grid-full,.work-grid{grid-template-columns:1fr}
  .work-grid{grid-template-columns:repeat(2,1fr)}
  .products-section .product-specs-row{grid-template-columns:1fr}
  .nav-menu{display:none;position:absolute;top:72px;left:0;right:0;background:#fff;flex-direction:column;gap:0;border-top:2px solid #f0a500;box-shadow:0 10px 30px rgba(0,0,0,0.1)}
  .nav-menu.open{display:flex}
  .nav-menu a{padding:14px 24px;border-bottom:1px solid #f0f0f0}
  .nav-toggle{display:block}
  .has-dropdown .dropdown{position:static;box-shadow:none;border:none;border-left:3px solid #f0a500;margin-left:24px;display:block}
  .hero{padding:80px 24px}
  .form-row{grid-template-columns:1fr}
  .contact-inner{grid-template-columns:1fr}
}
@media(max-width:600px){
  .work-grid{grid-template-columns:1fr}
  .testimonials-grid,.testimonials-grid-2{grid-template-columns:1fr}
}
