*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #E8622A; --cream: #FAF4EC; --dark: #1A1A1A; --white: #FFFFFF; --gray: #6B7280; --border: #EDE6DC; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
section { scroll-margin-top: 92px; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 92px; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; background: var(--dark); box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-logo { font-size: 17px; font-weight: 800; color: var(--orange); letter-spacing: 2.5px; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.4px; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 5px; font-weight: 600 !important; }
.nav-cta:hover { background: #cf5524 !important; }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.dropdown { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-8px); background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 0; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 1001; box-shadow: 0 16px 48px rgba(0,0,0,0.45); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 20px; color: rgba(255,255,255,0.72) !important; font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.2s, background 0.2s; letter-spacing: 0.2px; }
.dropdown a:hover { color: var(--orange) !important; background: rgba(255,255,255,0.04); }
.dropdown a::after { content: none !important; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 92px; left: 0; right: 0; background: #111; border-top: 1px solid rgba(255,255,255,0.07); z-index: 998; flex-direction: column; padding: 8px 0 24px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.28s ease, transform 0.28s ease; box-shadow: 0 16px 48px rgba(0,0,0,0.5); max-height: calc(100vh - 92px); overflow-y: auto; }
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; font-weight: 500; padding: 14px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s; letter-spacing: 0.2px; }
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-menu a:last-child { border-bottom: none; }
.mob-section-label { display: block; padding: 12px 28px 6px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; border-bottom: none !important; pointer-events: none; }
.mobile-menu .mob-cta { background: var(--orange); color: var(--white) !important; border-radius: 6px; margin: 16px 28px 0; padding: 15px 28px !important; text-align: center; font-weight: 700 !important; border-bottom: none !important; }
.mobile-menu .mob-cta:hover { background: #cf5524 !important; }
.btn-primary { background: var(--orange); color: var(--white); padding: 15px 36px; border-radius: 5px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; letter-spacing: 0.2px; }
.btn-primary:hover { background: #cf5524; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--orange); padding: 16px 48px; border-radius: 5px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,0.15); }
.page-hero { background: var(--dark); padding: 140px 64px 72px; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.page-hero p { font-size: 16px; color: rgba(250,244,236,0.6); line-height: 1.8; max-width: 620px; margin-bottom: 32px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.content-wrap { max-width: 900px; margin: 0 auto; padding: 56px 64px; }
.content-section { background: var(--white); border-radius: 10px; padding: 36px 40px; margin-bottom: 24px; border-left: 4px solid var(--orange); }
.content-section h2 { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.content-section p { font-size: 14px; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.content-section p:last-child { margin-bottom: 0; }
.content-section a { color: var(--orange); text-decoration: none; font-weight: 600; }
.content-section a:hover { text-decoration: underline; }
.content-section ul { padding-left: 0; list-style: none; margin-bottom: 14px; }
.content-section ul li { font-size: 14px; line-height: 1.75; color: #374151; padding: 6px 0; border-bottom: 1px solid #f3ede6; display: flex; align-items: flex-start; gap: 10px; }
.content-section ul li:last-child { border-bottom: none; }
.content-section ul li::before { content: "→"; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.content-section .faq-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.content-section .faq-item:last-child { border-bottom: none; }
.content-section .faq-item h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
.content-section .faq-item p { font-size: 14px; line-height: 1.75; color: #374151; margin-bottom: 0; }
.cta-section { background: var(--orange); border-radius: 12px; padding: 48px 40px; text-align: center; margin-bottom: 24px; }
.cta-section h2 { color: var(--white); font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 28px; }
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.related-card { background: var(--white); border-radius: 10px; padding: 24px; border-bottom: 3px solid transparent; text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: block; }
.related-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); }
.related-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.related-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }
footer { background: var(--dark); padding: 64px 64px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-social-links { display: flex; flex-direction: column; gap: 14px; }
.footer-social-links a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: rgba(250,244,236,0.45); font-size: 13px; transition: color 0.2s; }
.footer-social-links a:hover { color: var(--orange); }
.footer-social-links a:hover svg path, .footer-social-links a:hover svg rect, .footer-social-links a:hover svg circle, .footer-social-links a:hover svg polygon { fill: var(--orange); }
.footer-social-links svg { width: 18px; height: 18px; flex-shrink: 0; transition: fill 0.2s; }
.footer-social-links svg path, .footer-social-links svg rect, .footer-social-links svg circle, .footer-social-links svg polygon { fill: rgba(250,244,236,0.45); transition: fill 0.2s; }
.footer-brand-name { font-size: 18px; font-weight: 800; color: var(--orange); letter-spacing: 2.5px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(250,244,236,0.48); line-height: 1.75; max-width: 270px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(250,244,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p, .footer-bottom span { font-size: 12px; color: rgba(250,244,236,0.35); }
.modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.75); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: 14px; width: 100%; max-width: 510px; max-height: 92vh; overflow-y: auto; transform: translateY(24px) scale(0.98); transition: transform 0.3s ease; box-shadow: 0 32px 80px rgba(0,0,0,0.35); }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-header { background: var(--dark); padding: 28px 32px 24px; display: flex; align-items: flex-start; justify-content: space-between; border-radius: 14px 14px 0 0; }
.modal-header h2 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.modal-pkg { font-size: 13px; color: var(--orange); font-weight: 600; }
.modal-close { background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.6); width: 30px; height: 30px; border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; transition: background 0.2s, color 0.2s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.modal-body { padding: 30px 32px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--dark); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 7px; }
.req { color: var(--orange); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e5ddd4; border-radius: 7px; font-family: 'Poppins', sans-serif; font-size: 13.5px; color: var(--dark); background: #fdfaf7; outline: none; transition: border-color 0.2s, background 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 88px; }
.submit-btn { width: 100%; padding: 15px; background: var(--orange); color: var(--white); border: none; border-radius: 7px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 6px; letter-spacing: 0.2px; }
.submit-btn:hover { background: #cf5524; }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-msg { display: none; padding: 12px 16px; border-radius: 7px; font-size: 13px; font-weight: 500; margin-top: 14px; line-height: 1.5; }
.form-msg.success { display: block; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-msg.error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
@media (max-width: 1024px) { nav { padding: 0 36px; } footer { padding: 52px 36px 28px; } .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-brand { grid-column: 1 / -1; } .footer-top .footer-col:last-child { grid-column: span 2; } }
@media (max-width: 768px) { nav { padding: 0 20px; } .nav-links { display: none; } .hamburger { display: flex; } .mobile-menu { display: flex; } footer { padding: 44px 24px 24px; } .footer-top { grid-template-columns: 1fr; gap: 28px; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } .form-row { grid-template-columns: 1fr; } .page-hero { padding: 120px 24px 56px; } .content-wrap { padding: 32px 24px; } .content-section { padding: 24px; } .related-services { grid-template-columns: 1fr; } .cta-section { padding: 36px 24px; } }
@media print { nav, .modal-overlay { display: none; } }
