:root { --primary-blue: #0056A7; --primary-blue-light: #1E6EB5; --accent-orange: #FF6B35; --accent-orange-dark: #E55A2B; --bg-gray: #F8F9FA; --bg-white: #FFFFFF; --text-dark: #1A1A2E; --text-gray: #4A5568; --text-light: #718096; --shadow: 0 10px 30px rgba(0,0,0,0.08); --shadow-sm: 0 2px 8px rgba(0,0,0,0.06); --radius: 12px; --transition: all 0.3s ease; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Be Vietnam Pro', sans-serif; color: var(--text-dark); background: var(--bg-white); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary-blue); color: white; padding: 8px 14px; z-index: 9999; }
.skip-link:focus { top: 0; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-weight: 800; font-size: 1.35rem; color: var(--primary-blue); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent-orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); }

.hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0056A7 0%, #003D73 100%); color: white; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%); bottom: -100px; right: -100px; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 20px; }
.hero-content p:first-child { font-weight: 500; letter-spacing: 2px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.hero p:last-child { font-size: 1.1rem; opacity: 0.95; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 36px; border-radius: 50px; font-weight: 700; cursor: pointer; border: none; transition: var(--transition); font-family: inherit; text-align: center; }
.btn-primary { background: var(--accent-orange); color: white; box-shadow: 0 4px 15px rgba(255,107,53,0.35); }
.btn-primary:hover { background: var(--accent-orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary-blue); }
.btn-light { border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-light:hover { background: var(--primary-blue); color: white; }
.btn-large { padding: 16px 44px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.section { padding: 80px 0; }
.section-title { font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 48px; color: var(--text-dark); }
.animate { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--bg-white); padding: 32px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid #E2E8F0; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-orange); }
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--primary-blue); }
.service-card p { font-size: 0.92rem; color: var(--text-gray); }

.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.reason-item { background: var(--bg-white); padding: 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); }
.reason-icon { font-size: 2.5rem; margin-bottom: 12px; }
.reason-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.reason-item p { font-size: 0.9rem; color: var(--text-gray); }

.price-grid { background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid #E2E8F0; }
.price-table th { background: var(--primary-blue); color: white; font-weight: 700; }
.price-table tr:hover td { background: #F8F9FA; }
.price-note { font-size: 0.85rem; color: var(--text-light); border-bottom: none; }

.faq { background: var(--bg-gray); }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-list details { background: var(--bg-white); padding: 20px 24px; border-radius: var(--radius); margin-bottom: 14px; border: 1px solid #E2E8F0; }
.faq-list summary { font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; font-weight: 700; color: var(--accent-orange); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 14px; font-size: 0.94rem; color: var(--text-gray); line-height: 1.7; }

.cta-section { background: linear-gradient(135deg, var(--primary-blue) 0%, #003D73 100%); color: white; padding: 70px 0; }
.cta-content { text-align: center; max-width: 750px; margin: 0 auto; }
.cta-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.page-header { background: linear-gradient(135deg, var(--primary-blue) 0%, #003D73 100%); color: white; padding: 130px 0 60px; text-align: center; }
.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; opacity: 0.92; }

.about-content { background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; color: var(--primary-blue); }
.about-text p { margin-bottom: 18px; color: var(--text-gray); font-size: 1rem; line-height: 1.7; }
.about-text h3 { margin: 28px 0 14px; font-size: 1.25rem; font-weight: 700; }
.about-text ul { margin-left: 20px; margin-bottom: 20px; }
.about-text li { margin-bottom: 10px; font-size: 0.96rem; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

.company-info { background: var(--bg-gray); padding: 36px; border-radius: var(--radius); margin-bottom: 60px; }
.company-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 24px; color: var(--primary-blue); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #E2E8F0; }
.info-table th { text-align: left; padding: 14px 16px; font-weight: 700; width: 30%; }
.info-table td { padding: 14px 16px; color: var(--text-gray); }

.stats-section { margin-bottom: 60px; }
.stats-section h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 36px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat-item { background: var(--bg-white); padding: 32px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid #E2E8F0; }
.stat-number { font-size: 2.3rem; font-weight: 800; color: var(--accent-orange); margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: var(--text-gray); }

.gallery-section { margin-bottom: 40px; }
.gallery-section h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 36px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.gallery-grid img { border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition); width: 100%; }
.gallery-grid img:hover { transform: scale(1.02); }

.contact-page { background: var(--bg-white); }
.contact-methods { margin-bottom: 60px; }
.contact-methods h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; }
.methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.method-card { background: var(--bg-gray); padding: 28px; border-radius: var(--radius); text-align: center; transition: var(--transition); }
.method-card:hover { transform: translateY(-4px); }
.method-icon { font-size: 2.5rem; margin-bottom: 12px; }
.method-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.phone { font-size: 1.2rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 6px; }
.method-card .hours { font-size: 0.85rem; color: var(--text-light); }

.order-form-section { max-width: 850px; margin: 0 auto 60px; }
.order-form-section h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; }
.contact-form { background: var(--bg-gray); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #CBD5E0; border-radius: 8px; font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: var(--bg-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; font-size: 0.85rem; }
.form-check a { color: var(--primary-blue); text-decoration: underline; }

.office-map { max-width: 900px; margin: 0 auto; }
.office-map h2 { font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 24px; }
.map-placeholder { background: var(--bg-gray); padding: 32px; border-radius: var(--radius); text-align: center; }
.map-placeholder img { max-width: 100%; margin: 0 auto 16px; }
.map-placeholder p { margin-bottom: 8px; color: var(--text-gray); }

.legal-box { background: var(--bg-gray); padding: 32px; border-radius: var(--radius); border-left: 4px solid var(--accent-orange); }
.legal-box h3 { margin: 24px 0 12px; font-size: 1.15rem; font-weight: 700; color: var(--primary-blue); }
.legal-box p, .legal-box li { color: var(--text-gray); }
.legal-box ul { margin-left: 20px; margin-bottom: 16px; }
.legal-box li { margin-bottom: 6px; }
.date { font-size: 0.85rem; color: var(--text-light); margin-top: 20px; }

.footer { background: #0A1929; color: #A0ABB8; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 32px; }
.footer-brand h3 { color: white; font-weight: 800; margin-bottom: 12px; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-nav h4, .footer-contact h4 { color: white; margin-bottom: 12px; font-size: 0.95rem; font-weight: 700; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav a:hover { color: var(--accent-orange); }
.footer-contact p { font-size: 0.88rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #1E2A3A; padding-top: 18px; text-align: center; font-size: 0.8rem; }

.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-orange); color: white; border: none; font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-orange-dark); transform: translateY(-2px); }

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.7rem; }
    .price-table th, .price-table td { padding: 12px; font-size: 0.85rem; }
}