* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color:#333; line-height:1.6; background:#fff; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
.container { max-width:1400px; margin:0 auto; padding:0 20px; }

/* ===== TOP HEADER ===== */
.top-header { background:#0f2b4d; color:#fff; padding:8px 0; font-size:13px; }
.top-header .container { display:flex; justify-content:space-between; align-items:center; }
.top-header .left-info { display:flex; gap:25px; align-items:center; }
.top-header .left-info span { display:flex; align-items:center; gap:6px; opacity:0.85; }
.top-header .right-info { display:flex; gap:20px; align-items:center; }
.top-header .right-info a { color:#fff; opacity:0.85; transition:opacity 0.3s; font-size:13px; }
.top-header .right-info a:hover { opacity:1; }

/* ===== MAIN NAV ===== */
.main-nav { background:#fff; padding:0; border-bottom:1px solid #eee; position:sticky; top:0; z-index:1000; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.main-nav .container { display:flex; justify-content:space-between; align-items:center; height:70px; }
.logo { display:flex; align-items:center; gap:8px; font-size:20px; font-weight:700; color:#0f2b4d; }
.logo-img { width:40px; height:40px; background:#0f2b4d; border-radius:6px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; font-weight:700; }
.nav-links { display:flex; gap:0; align-items:center; height:70px; }
.nav-links a { padding:0 15px; height:70px; display:flex; align-items:center; font-size:14px; font-weight:500; color:#333; transition:all 0.3s; border-bottom:3px solid transparent; position:relative; text-transform:uppercase; }
.nav-links .dropdown > a { text-transform:uppercase; }
.nav-links a:hover { color:#0f2b4d; }
.nav-links a.active { color:#0f2b4d; border-bottom-color:#0f2b4d; }
.nav-links .dropdown { position:relative; }
.nav-links .dropdown:hover .sub-menu { opacity:1; visibility:visible; transform:translateY(0); }
.sub-menu { position:absolute; top:100%; left:0; background:#fff; min-width:280px; box-shadow:0 5px 20px rgba(0,0,0,0.1); border-radius:0 0 4px 4px; padding:0; opacity:0; visibility:hidden; transform:translateY(10px); transition:all 0.3s; border-top:2px solid #0f2b4d; }
.sub-menu a { height:auto; padding:12px 20px; display:flex; align-items:center; justify-content:space-between; font-size:14px; border:none; border-bottom:1px solid #e8e8e8; color:#333; transition:all 0.2s; }
.sub-menu a:last-child { border-bottom:none; }
.sub-menu a:hover { background:#f5f5f5; color:#0f2b4d; padding-left:25px; }
.sub-menu a::after { content:'›'; color:#999; font-size:18px; transition:color 0.2s; }
.sub-menu a:hover::after { color:#0f2b4d; }
.nav-right { display:flex; gap:10px; align-items:center; }
.nav-btn { background:#0f2b4d; color:#fff; padding:8px 16px; border-radius:3px; font-size:13px; font-weight:500; transition:background 0.3s; }
.nav-btn:hover { background:#1a3a3c; }
.nav-phone { font-size:13px; color:#0f2b4d; font-weight:600; display:flex; align-items:center; gap:4px; }

.global-menu { position:absolute; top:100%; left:auto; right:0; background:#fff; min-width:160px; border-radius:12px; padding:8px 0; opacity:0; visibility:hidden; transform:translateY(10px); transition:all 0.3s; box-shadow:0 4px 20px rgba(0,0,0,0.15); z-index:2000; }
.global-menu a { display:flex; align-items:center; justify-content:space-between; padding:10px 16px; font-size:13px; border:none; border-bottom:1px solid #f0f0f0; color:#333; transition:all 0.2s; }
.global-menu a:last-child { border-bottom:none; }
.global-menu a:hover { background:#f5f5f5; color:#0f2b4d; padding-left:20px; }
.global-menu a.active { color:#e67e22; font-weight:600; }
.global-menu a.active::after { content:'✓'; color:#e67e22; font-size:12px; }

.mobile-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.mobile-toggle span { width:25px; height:3px; background:#0f2b4d; border-radius:2px; }

/* ===== HERO CAROUSEL ===== */
.hero { position:relative; min-height:600px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.hero-slides { position:absolute; top:0; left:0; width:100%; height:100%; z-index:1; }
.hero-slide { position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition:opacity 1s ease-in-out; }
.hero-slide.active { opacity:1; }
.hero-slide img { width:100%; height:100%; object-fit:cover; filter:brightness(1.2) contrast(1.1); }
.hero-slide::after { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:linear-gradient(135deg, rgba(15,43,77,0.45) 0%, rgba(26,58,92,0.35) 50%, rgba(45,74,110,0.25) 100%); }
.hero-content { position:relative; z-index:2; text-align:center; color:#fff; max-width:850px; padding:60px 20px; }
.hero-label { font-size:13px; text-transform:uppercase; letter-spacing:3px; opacity:0.7; margin-bottom:20px; }
.hero h1 { font-size:52px; font-weight:700; line-height:1.2; margin-bottom:25px; text-shadow:0 2px 20px rgba(0,0,0,0.3); }
.hero p { font-size:18px; opacity:0.85; margin-bottom:35px; max-width:650px; margin-left:auto; margin-right:auto; line-height:1.7; }
.hero-btns { display:flex; gap:15px; justify-content:center; flex-wrap:wrap; }
.btn-hero { padding:14px 35px; border-radius:3px; font-size:15px; font-weight:600; transition:all 0.3s; display:inline-flex; align-items:center; gap:8px; cursor:pointer; border:none; }
.btn-hero-primary { background:#e67e22; color:#fff; }
.btn-hero-primary:hover { background:#d35400; transform:translateY(-2px); box-shadow:0 4px 15px rgba(230,126,34,0.3); }
.btn-hero-secondary { background:rgba(255,255,255,0.1); color:#fff; border:2px solid rgba(255,255,255,0.3); }
.btn-hero-secondary:hover { background:rgba(255,255,255,0.2); border-color:#fff; }

/* Carousel Arrows */
.carousel-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3); color:#fff; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all 0.3s; opacity:0; }
.hero:hover .carousel-arrow { opacity:1; }
.carousel-arrow:hover { background:rgba(255,255,255,0.3); }
.carousel-arrow.prev { left:25px; }
.carousel-arrow.next { right:25px; }

/* Carousel Dots */
.carousel-dots { position:absolute; bottom:25px; left:50%; transform:translateX(-50%); z-index:3; display:flex; gap:10px; }
.carousel-dot { width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,0.4); border:2px solid transparent; cursor:pointer; transition:all 0.3s; }
.carousel-dot.active { background:#e67e22; border-color:#fff; transform:scale(1.2); }

/* ===== SECTIONS COMMON ===== */
.section { padding:80px 0; }
.section-title { text-align:center; margin-bottom:50px; }
.section-title .subtitle { font-size:14px; text-transform:uppercase; letter-spacing:3px; color:#0f2b4d; font-weight:600; margin-bottom:12px; opacity:0.7; }
.section-title h2 { font-size:36px; font-weight:700; color:#0f2b4d; margin-bottom:15px; }
.section-title p { font-size:16px; color:#666; max-width:600px; margin:0 auto; line-height:1.7; }
.section-title .line { width:60px; height:3px; background:#e67e22; margin:20px auto 0; }

/* ===== WHAT WE OFFER ===== */
.offer-section { background:#f8f9fa; }
.offer-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:25px; }
.offer-card { background:#fff; border-radius:6px; overflow:hidden; box-shadow:0 3px 15px rgba(0,0,0,0.06); transition:all 0.3s; border:1px solid #eee; }
.offer-card:hover { transform:translateY(-8px); box-shadow:0 15px 40px rgba(0,0,0,0.12); }
.offer-card .img-wrap { height:200px; background:linear-gradient(135deg, #e8ecf1 0%, #d5dde5 100%); display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.offer-card .img-wrap img { width:100%; height:100%; object-fit:cover; }
.offer-card .img-wrap .placeholder { color:#888; font-size:13px; text-align:center; padding:20px; }
.offer-card .content { padding:25px; }
.offer-card h3 { font-size:18px; font-weight:600; color:#0f2b4d; margin-bottom:12px; }
.offer-card p { font-size:14px; color:#666; line-height:1.6; margin-bottom:15px; }
.offer-card .link { color:#e67e22; font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:5px; transition:gap 0.3s; }
.offer-card .link:hover { gap:10px; }

/* ===== PRODUCT DESC ===== */
.prod-desc-section { background:#fff; padding:60px 0; }
.prod-desc-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.prod-desc-grid.reverse { direction:rtl; }
.prod-desc-grid.reverse > * { direction:ltr; }
.prod-desc-img { border-radius:6px; overflow:hidden; box-shadow:0 8px 30px rgba(0,0,0,0.08); height:350px; background:linear-gradient(135deg, #e8ecf1 0%, #d5dde5 100%); display:flex; align-items:center; justify-content:center; }
.prod-desc-img img { width:100%; height:100%; object-fit:cover; }
.prod-desc-content h3 { font-size:28px; font-weight:700; color:#0f2b4d; margin-bottom:20px; }
.prod-desc-content h3 span { color:#e67e22; }
.prod-desc-content p { font-size:15px; color:#666; line-height:1.8; margin-bottom:15px; }
.prod-desc-content .highlight { color:#0f2b4d; font-weight:600; }
.prod-desc-content .btn-line { display:inline-flex; align-items:center; gap:8px; color:#0f2b4d; font-weight:600; font-size:15px; margin-top:15px; transition:gap 0.3s; }
.prod-desc-content .btn-line:hover { gap:12px; color:#e67e22; }

/* ===== HOT PRODUCTS ===== */
.hot-section { background:#f8f9fa; }
.hot-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:25px; }
.hot-card { background:#fff; border-radius:6px; overflow:hidden; box-shadow:0 3px 15px rgba(0,0,0,0.06); transition:all 0.3s; border:1px solid #eee; }
.hot-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,0.12); }
.hot-card .img-wrap { height:220px; background:linear-gradient(135deg, #e8ecf1 0%, #d5dde5 100%); display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.hot-card .img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.3s; }
.hot-card:hover .img-wrap img { transform:scale(1.05); }
.hot-card .img-wrap .placeholder { color:#888; font-size:13px; text-align:center; padding:20px; }
.hot-card .content { padding:22px; }
.hot-card h3 { font-size:17px; font-weight:600; color:#0f2b4d; margin-bottom:8px; line-height:1.4; }
.hot-card p { font-size:13px; color:#888; line-height:1.6; margin-bottom:15px; min-height:60px; }
.hot-card .actions { display:flex; gap:10px; }
.hot-card .actions a { flex:1; text-align:center; padding:10px; font-size:13px; font-weight:500; border-radius:3px; transition:all 0.3s; }
.hot-card .actions .btn-outline { background:transparent; color:#0f2b4d; border:1px solid #0f2b4d; }
.hot-card .actions .btn-outline:hover { background:#0f2b4d; color:#fff; }
.hot-card .actions .btn-accent { background:#e67e22; color:#fff; border:1px solid #e67e22; }
.hot-card .actions .btn-accent:hover { background:#d35400; border-color:#d35400; }

/* ===== ABOUT ===== */
.about-section { background:#fff; }
.about-wrap { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.about-img { border-radius:6px; overflow:hidden; box-shadow:0 10px 40px rgba(0,0,0,0.1); height:450px; background:linear-gradient(135deg, #0f2b4d 0%, #1a3a5c 100%); display:flex; align-items:center; justify-content:center; position:relative; }
.about-img img { width:100%; height:100%; object-fit:cover; }
.about-img .placeholder { color:rgba(255,255,255,0.7); font-size:15px; text-align:center; padding:30px; }
.about-content .subtitle { font-size:14px; text-transform:uppercase; letter-spacing:3px; color:#0f2b4d; font-weight:600; margin-bottom:12px; opacity:0.7; }
.about-content h2 { font-size:36px; font-weight:700; color:#0f2b4d; margin-bottom:20px; line-height:1.3; }
.about-content h2 span { color:#e67e22; }
.about-content p { font-size:15px; color:#666; line-height:1.8; margin-bottom:15px; }
.about-stats { display:grid; grid-template-columns:repeat(2, 1fr); gap:20px; margin-top:30px; }
.about-stat { text-align:center; padding:20px; background:#f8f9fa; border-radius:4px; border-left:3px solid #e67e22; }
.about-stat .num { font-size:36px; font-weight:700; color:#0f2b4d; line-height:1; }
.about-stat .label { font-size:13px; color:#666; margin-top:8px; }
.about-btn { display:inline-flex; align-items:center; gap:8px; background:#0f2b4d; color:#fff; padding:12px 30px; border-radius:3px; font-size:15px; font-weight:500; margin-top:20px; transition:background 0.3s; }
.about-btn:hover { background:#1a3a5c; }

/* ===== VIDEO ===== */
.video-section { background:#0f2b4d; padding:80px 0; text-align:center; color:#fff; }
.video-section .section-title h2 { color:#fff; }
.video-section .section-title p { color:rgba(255,255,255,0.7); }
.video-container { max-width:800px; margin:40px auto 0; position:relative; border-radius:8px; overflow:hidden; box-shadow:0 15px 50px rgba(0,0,0,0.3); }
.video-placeholder { aspect-ratio:16/9; background:linear-gradient(135deg, #1a3a5c 0%, #0f2b4d 100%); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:15px; }
.video-play { width:80px; height:80px; background:rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:32px; color:#fff; cursor:pointer; transition:all 0.3s; border:3px solid rgba(255,255,255,0.3); }
.video-play:hover { background:rgba(255,255,255,0.25); transform:scale(1.1); }
.video-label { font-size:14px; opacity:0.7; }

/* ===== BLOGS ===== */
.blog-section { background:#f8f9fa; }
.blog-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:25px; }
.blog-card { background:#fff; border-radius:6px; overflow:hidden; box-shadow:0 3px 15px rgba(0,0,0,0.06); transition:all 0.3s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,0.12); }
.blog-card .img-wrap { height:200px; background:linear-gradient(135deg, #e8ecf1 0%, #d5dde5 100%); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.blog-card .img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.3s; }
.blog-card:hover .img-wrap img { transform:scale(1.05); }
.blog-card .content { padding:22px; }
.blog-card .date { font-size:13px; color:#888; margin-bottom:8px; }
.blog-card h3 { font-size:17px; font-weight:600; color:#0f2b4d; margin-bottom:10px; line-height:1.4; }
.blog-card p { font-size:14px; color:#666; line-height:1.6; margin-bottom:15px; }
.blog-card .read-more { color:#e67e22; font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:5px; }
.blog-card .read-more:hover { gap:10px; }

/* ===== GLOBAL NETWORK ===== */
.global-section { background:linear-gradient(135deg, #0f2b4d 0%, #1a3a5c 50%, #2d4a6e 100%); color:#fff; padding:100px 0; position:relative; overflow:hidden; }
.global-section::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/><circle cx="50" cy="50" r="60" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></svg>'); background-size:200px; opacity:0.5; }
.global-content { position:relative; z-index:2; text-align:center; }
.global-content .subtitle { font-size:14px; text-transform:uppercase; letter-spacing:3px; color:rgba(255,255,255,0.7); font-weight:600; margin-bottom:15px; }
.global-content h2 { font-size:40px; font-weight:700; margin-bottom:20px; }
.global-content h2 span { color:#e67e22; }
.global-content > p { max-width:700px; margin:0 auto 40px; font-size:16px; line-height:1.8; opacity:0.85; }
.global-stats { display:grid; grid-template-columns:repeat(3, 1fr); gap:30px; max-width:700px; margin:50px auto; }
.global-stat { padding:30px; background:rgba(255,255,255,0.06); border-radius:6px; border:1px solid rgba(255,255,255,0.1); }
.global-stat .num { font-size:48px; font-weight:700; color:#e67e22; line-height:1; }
.global-stat .label { font-size:15px; opacity:0.8; margin-top:10px; }
.global-btn { display:inline-flex; align-items:center; gap:10px; background:#e67e22; color:#fff; padding:14px 40px; border-radius:3px; font-size:16px; font-weight:600; transition:all 0.3s; margin-top:20px; }
.global-btn:hover { background:#d35400; transform:translateY(-2px); box-shadow:0 4px 15px rgba(230,126,34,0.3); }

/* ===== CONTACT CTA ===== */
.contact-cta { background:#e67e22; padding:60px 0; text-align:center; color:#fff; }
.contact-cta h2 { font-size:32px; font-weight:700; margin-bottom:15px; }
.contact-cta p { font-size:16px; opacity:0.95; margin-bottom:25px; max-width:600px; margin-left:auto; margin-right:auto; }
.contact-cta .btn-white { background:#fff; color:#e67e22; padding:14px 40px; border-radius:3px; font-size:16px; font-weight:600; display:inline-flex; align-items:center; gap:8px; transition:all 0.3s; }
.contact-cta .btn-white:hover { background:#f8f9fa; transform:translateY(-2px); box-shadow:0 4px 15px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
.footer { background:#0a1f38; color:rgba(255,255,255,0.7); padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-col h4 { color:#fff; font-size:18px; font-weight:600; margin-bottom:20px; position:relative; padding-bottom:10px; }
.footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:2px; background:#e67e22; }
.footer-col p { font-size:14px; line-height:1.8; margin-bottom:15px; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:14px; color:rgba(255,255,255,0.7); transition:color 0.3s; }
.footer-col ul li a:hover { color:#e67e22; }
.footer-contact { display:flex; flex-direction:column; gap:10px; }
.footer-contact span { font-size:14px; display:flex; align-items:center; gap:8px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding:20px 0; text-align:center; font-size:13px; color:rgba(255,255,255,0.5); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position:fixed; bottom:25px; right:25px; width:55px; height:55px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:26px; font-weight:700; box-shadow:0 4px 15px rgba(37,211,102,0.4); z-index:999; cursor:pointer; transition:all 0.3s; text-decoration:none; }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 20px rgba(37,211,102,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width:992px) {
  .offer-grid, .hot-grid, .blog-grid { grid-template-columns:repeat(2, 1fr); }
  .about-wrap, .prod-desc-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .hero h1 { font-size:38px; }
  .global-stats { grid-template-columns:1fr; }
  .global-content h2 { font-size:32px; }
}
@media (max-width:768px) {
  .top-header .left-info { display:none; }
  .nav-links { display:none; position:absolute; top:70px; left:0; width:100%; background:#fff; flex-direction:column; height:auto; padding:10px 0; box-shadow:0 5px 20px rgba(0,0,0,0.1); }
  .nav-links.active { display:flex; }
  .nav-links a { height:auto; padding:12px 20px; border:none; }
  .sub-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; padding-left:20px; border:none; }
  .mobile-toggle { display:flex; }
  .nav-btn { display:none; }
  .nav-phone { display:none; }

  .offer-grid, .hot-grid, .blog-grid, .about-stats { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .hero h1 { font-size:28px; }
  .hero p { font-size:16px; }
  .section-title h2 { font-size:28px; }
  .prod-desc-grid.reverse { direction:ltr; }
  .global-stats { grid-template-columns:1fr; }
  .section { padding:50px 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation:fadeInUp 0.6s ease forwards; }

/* ===== INQUIRY FORM ===== */
.inquiry-form { max-width:900px; margin:40px auto; background:#fff; padding:40px; border-radius:8px; box-shadow:0 4px 20px rgba(0,0,0,0.06); border:1px solid #eee; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:25px; margin-bottom:20px; }
.form-group { display:flex; flex-direction:column; }
.form-group.full-width { grid-column:1 / -1; }
.form-group label { font-size:14px; font-weight:600; color:#0f2b4d; margin-bottom:8px; }
.form-group label .required { color:#e74c3c; }
.form-group input,
.form-group select,
.form-group textarea { padding:12px 15px; border:1px solid #ddd; border-radius:4px; font-size:14px; color:#333; background:#fafafa; transition:all 0.3s; font-family:inherit; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline:none; border-color:#0f2b4d; background:#fff; box-shadow:0 0 0 3px rgba(15,43,77,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:#aaa; }
.form-group select { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 15px center; padding-right:35px; }
.form-group input[type="file"] { padding:10px; background:#fff; cursor:pointer; }
.form-group .file-hint { font-size:12px; color:#888; margin-top:5px; font-style:italic; }
.form-submit { text-align:center; margin-top:30px; }
.btn-submit { display:inline-flex; flex-direction:column; align-items:center; background:#e67e22; color:#fff; border:none; padding:16px 50px; border-radius:4px; font-size:18px; font-weight:600; cursor:pointer; transition:all 0.3s; box-shadow:0 4px 15px rgba(230,126,34,0.3); }
.btn-submit:hover { background:#d35400; transform:translateY(-2px); box-shadow:0 6px 20px rgba(230,126,34,0.4); }
.btn-submit small { font-size:12px; font-weight:400; opacity:0.9; margin-top:4px; }

/* Form success / error messages */
.form-success { background:#d4edda; color:#155724; padding:15px 20px; border-radius:4px; margin-bottom:20px; border-left:4px solid #28a745; }
.form-error { background:#f8d7da; color:#721c24; padding:15px 20px; border-radius:4px; margin-bottom:20px; border-left:4px solid #dc3545; }

@media (max-width:768px) {
  .form-row { grid-template-columns:1fr; gap:15px; }
  .inquiry-form { padding:25px; margin:20px 15px; }
  .btn-submit { padding:14px 30px; font-size:16px; }
}

/* ===== THANKS PAGE ===== */
.btn-primary { display:inline-flex; align-items:center; gap:8px; background:#0f2b4d; color:#fff; padding:14px 30px; border-radius:4px; font-size:15px; font-weight:600; transition:all 0.3s; }
.btn-primary:hover { background:#1a3a5c; transform:translateY(-2px); box-shadow:0 4px 15px rgba(15,43,77,0.2); }
.btn-secondary { display:inline-flex; align-items:center; gap:8px; background:transparent; color:#0f2b4d; padding:14px 30px; border-radius:4px; font-size:15px; font-weight:600; border:2px solid #0f2b4d; transition:all 0.3s; margin-left:15px; }
.btn-secondary:hover { background:#0f2b4d; color:#fff; transform:translateY(-2px); }

/* Page content styling */
.page-content { max-width:900px; margin:0 auto; background:#fff; padding:40px; border-radius:8px; box-shadow:0 4px 20px rgba(0,0,0,0.06); }
.page-content h2 { font-size:28px; font-weight:700; color:#0f2b4d; margin:30px 0 15px; }
.page-content h2:first-child { margin-top:0; }
.page-content h3 { font-size:20px; font-weight:600; color:#0f2b4d; margin:25px 0 12px; }
.page-content p { color:#666; line-height:1.8; margin-bottom:15px; }
.page-content ul { margin:15px 0; padding-left:20px; }
.page-content ul li { color:#666; margin-bottom:8px; line-height:1.6; }
.page-content strong { color:#0f2b4d; }
.page-content table { width:100%; border-collapse:collapse; margin:20px 0; }
.page-content th { background:#f8f9fa; padding:12px 15px; text-align:left; font-weight:600; color:#0f2b4d; border:1px solid #eee; }
.page-content td { padding:12px 15px; border:1px solid #eee; color:#666; }
.page-content hr { border:none; border-top:1px solid #eee; margin:30px 0; }
