@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fff; color: #1a1a2e; min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root { --primary: #1b4332; --primary-light: #2d6a4f; --primary-dark: #081c15; --accent: #d4a12a; --accent-light: #e8b83a; --gray-50: #f7f8f8; --gray-100: #eef0ef; --gray-200: #d9dddb; --gray-500: #6b7c76; --gray-700: #37453f; --gray-900: #161d1a; --shadow-sm: 0 1px 3px rgba(0,0,0,0.06); --shadow-md: 0 4px 16px rgba(0,0,0,0.08); --shadow-lg: 0 12px 40px rgba(0,0,0,0.1); --radius: 10px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.navbar { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-100); position: sticky; top: 0; z-index: 50; }
.navbar .inner { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.navbar .logo { display: flex; align-items: center; gap: 8px; font-size: 1.35rem; font-weight: 400; font-family: 'Pacifico', cursive; color: var(--primary); letter-spacing: 0.02em; text-decoration: none; }
.navbar .logo-img { width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0; }
.footer-logo-img { width: 32px; height: 32px; border-radius: 6px; vertical-align: middle; margin-right: 6px; }
.navbar .nav-links { display: none; align-items: center; gap: 32px; }
.navbar .nav-links a { color: var(--gray-700); font-weight: 500; font-size: 0.9rem; padding: 6px 0; position: relative; transition: color 0.2s; text-decoration: none; }
.navbar .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2.5px; background: var(--accent); border-radius: 2px; transition: width 0.25s ease; }
.navbar .nav-links a:hover::after, .navbar .nav-links a.active::after { width: 70%; }
.navbar .nav-links a:hover { color: var(--primary); }
.navbar .nav-links a.active { color: var(--primary); font-weight: 600; }
.navbar .nav-links .book-btn { background: var(--primary); color: #fff !important; padding: 10px 24px; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; transition: background 0.2s, transform 0.2s; }
.navbar .nav-links .book-btn:hover { background: var(--primary-light); transform: translateY(-1px); }
.menu-btn { display: block; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 8px; color: var(--gray-700); }
@media (min-width: 768px) { .menu-btn { display: none; } .navbar .nav-links { display: flex; } }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray-100); padding: 12px 16px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; color: var(--gray-700); font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border-bottom: none; }

.footer { background: #0a1611; color: #8ba8a0; margin-top: auto; }
.footer .grid { padding: 56px 0; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer .grid { grid-template-columns: repeat(4, 1fr); } }
.footer h3 { color: #d5e3dd; font-weight: 600; margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer .bottom { border-top: 1px solid #1a2e28; padding: 24px 0; text-align: center; font-size: 0.85rem; }

.hero { position: relative; background: linear-gradient(135deg, rgba(8,28,21,0.65), rgba(27,67,50,0.55), rgba(45,106,79,0.45)), url('../images/tiger-1.jpg') center/cover no-repeat; color: #fff; padding: 96px 0 80px; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(transparent, #fff); }
.hero h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.03em; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; color: #d5e3dd; margin-bottom: 28px; max-width: 560px; line-height: 1.7; }
.hero .subtitle { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; margin-bottom: 12px; }
.hero .btns { display: flex; flex-wrap: wrap; gap: 16px; }
.hero .btns .btn-primary { background: var(--accent); color: #111; padding: 14px 36px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; display: inline-block; transition: all 0.2s; }
.hero .btns .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,161,42,0.35); }
.hero .btns .btn-outline { border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 14px 36px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; display: inline-block; transition: all 0.2s; }
.hero .btns .btn-outline:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }
.hero .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .hero .stats { grid-template-columns: repeat(4, 1fr); } }
.hero .stat-value { font-size: 2rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.hero .stat-label { font-size: 0.85rem; color: #a8c3b7; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } .hero { padding: 128px 0 96px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 { font-size: 1.875rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.02em; }
.section-title p { color: var(--gray-500); margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 1.05rem; line-height: 1.6; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }
.highlight-title { background: linear-gradient(135deg, rgba(212,161,42,0.08), rgba(45,106,79,0.06)); padding: 40px 24px 36px; border-radius: 16px; border: 1px solid rgba(212,161,42,0.15); margin-bottom: 52px; }
.highlight-title h2 { font-size: 2rem; }
.highlight-title::after { margin-top: 14px; }
@media (min-width: 640px) { .highlight-title h2 { font-size: 2.4rem; } }
@media (min-width: 640px) { .section-title h2 { font-size: 2.25rem; } .section { padding: 88px 0; } }
.bg-gray { background: var(--gray-50); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; padding: 28px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .badge { position: absolute; top: -8px; right: -8px; background: var(--accent); color: #111; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.04em; }
.service-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-card h3 { font-weight: 600; font-size: 1.125rem; color: var(--gray-900); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.service-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.service-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.service-card a { color: var(--primary); font-weight: 600; font-size: 0.875rem; transition: color 0.2s; }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; padding: 28px; position: relative; transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-md); }
.testimonial-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-card.featured .avatar { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #111; }
.testimonial-card .stars { color: var(--accent); margin-bottom: 10px; font-size: 0.9rem; }
.testimonial-card p { color: var(--gray-700); font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.testimonial-card .name { font-weight: 600; color: var(--gray-900); font-size: 0.9rem; }
.testimonial-card .loc { color: var(--gray-500); font-size: 0.8rem; }
.testimonial-card .featured-badge { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #111; font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.02em; }

.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: none; border: none; cursor: pointer; font-weight: 600; color: var(--gray-900); text-align: left; font-size: 0.95rem; font-family: inherit; transition: background 0.2s; }
.faq-btn svg { transition: transform 0.3s; flex-shrink: 0; color: var(--gray-500); }
.faq-btn.open svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 24px 20px; color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; display: none; }
.faq-answer.open { display: block; }

.page-hero { background: linear-gradient(135deg, rgba(8,28,21,0.65), rgba(27,67,50,0.55), rgba(45,106,79,0.45)), url('../images/tiger-1.jpg') center/cover no-repeat; color: #fff; padding: 72px 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, #fff); }
.page-hero h1 { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.page-hero p { color: #a8c3b7; font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 64px 0; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px 20px 24px; }
.card-body h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 4px; font-size: 1rem; }
.card-body .desc { color: var(--gray-500); font-size: 0.85rem; line-height: 1.6; }
.card-body .price { color: var(--primary); font-weight: 700; font-size: 1.125rem; margin-bottom: 4px; }
.card-body .rating { color: var(--accent); font-weight: 700; }
.card-body .btn { display: inline-block; margin-top: 12px; background: var(--primary); color: #fff; padding: 10px 24px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; border: none; cursor: pointer; font-family: inherit; text-align: center; transition: background 0.2s; }
.card-body .btn:hover { background: var(--primary-light); }
.card-body .btn-accent { background: var(--accent); color: #111; }
.card-body .btn-accent:hover { background: var(--accent-light); }

.booking-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; padding: 64px 0; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 1fr 1fr; } }
.booking-steps .step { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.booking-steps .step-num { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.booking-steps .step-text { color: var(--gray-700); }
.reminder-box { background: #f5f8f6; border: 1px solid #d9dddb; border-radius: var(--radius); padding: 20px; margin-top: 24px; font-size: 0.85rem; color: #37453f; }
.reminder-box strong { display: block; margin-bottom: 8px; }
.reminder-box ul { padding-left: 16px; }
.reminder-box ul li { list-style: disc; margin-bottom: 4px; }

.form-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 36px; max-width: 576px; margin: 0 auto; }
.form-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--gray-900); text-align: center; margin-bottom: 28px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.9rem; outline: none; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: var(--gray-50); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,67,50,0.12); background: #fff; }
.phone-group { display: flex; gap: 8px; }
.phone-group .country-code { width: 90px; flex-shrink: 0; padding: 12px 6px 12px 10px; font-size: 0.8rem; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); outline: none; font-family: inherit; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%236b7c76'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 6px center; }
.phone-group .country-code:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,67,50,0.12); }
.phone-group input { flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.total-box { background: var(--gray-50); border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 20px; }
.total-box .label { font-size: 0.85rem; color: var(--gray-500); }
.total-box .amount { font-size: 2rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.btn-submit { width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; padding: 14px; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,67,50,0.3); }

.guide-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.guide-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.guide-table th { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; padding: 14px 16px; text-align: left; font-weight: 600; }
.guide-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); }
.guide-table tr:last-child td { border-bottom: none; }
.guide-table tr:hover { background: var(--gray-50); }
.guide-type { background: var(--gray-50); border-radius: var(--radius); padding: 24px; margin-bottom: 12px; }
.guide-type h4 { font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.guide-type p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }
.guide-list { margin-top: 24px; }
.guide-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--gray-500); margin-bottom: 8px; }
.guide-list li::before { content: '•'; color: var(--primary); font-weight: 700; }

.success-msg { background: #faf8f5; border: 1px solid #dfd9d0; border-radius: 12px; padding: 36px; text-align: center; }
.success-msg .icon { font-size: 3rem; margin-bottom: 12px; }
.success-msg h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.success-msg p { color: var(--gray-500); font-size: 0.9rem; }
.success-msg button { margin-top: 16px; color: var(--primary); font-weight: 600; background: none; border: none; cursor: pointer; font-size: 1rem; font-family: inherit; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; letter-spacing: -0.02em; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-item .icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--gray-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .label { font-weight: 600; color: var(--gray-900); display: block; margin-bottom: 2px; }
.contact-item .value { color: var(--gray-500); font-size: 0.9rem; }
.contact-item .value a:hover { color: var(--primary); }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { height: 400px; border-radius: 16px; overflow: hidden; }
.about-text h2 { font-size: 1.875rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 16px; }
.about-text p { color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 64px; }
.stats-row .stat-box { background: var(--gray-50); border-radius: 12px; padding: 28px; }
.stats-row .stat-num { font-size: 2rem; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.stats-row .stat-lbl { color: var(--gray-500); font-size: 0.85rem; margin-top: 4px; }
.why-box { background: linear-gradient(135deg, rgba(27,67,50,0.04), rgba(27,67,50,0.08)); border-radius: 16px; padding: 40px; text-align: center; }
.why-box h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 28px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-grid h4 { color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.why-grid p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

.highlight-beyond { background: linear-gradient(135deg, #eaf4ed 0%, #d8e8df 50%, #eaf4ed 100%); padding: 80px 0; position: relative; overflow: hidden; }
.highlight-beyond::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(212,161,42,0.06) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(27,67,50,0.06) 0%, transparent 60%); pointer-events: none; }
.beyond-header { text-align: center; margin-bottom: 48px; position: relative; }
.beyond-badge { display: inline-block; background: rgba(212,161,42,0.12); color: #a07d1e; padding: 6px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.beyond-header h2 { font-size: 2rem; font-weight: 700; color: var(--primary-dark); letter-spacing: -0.02em; margin-bottom: 12px; }
.beyond-header p { color: var(--gray-500); line-height: 1.7; max-width: 600px; margin: 0 auto; font-size: 0.95rem; }
.beyond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto 32px; position: relative; }
@media (max-width: 639px) { .beyond-grid { grid-template-columns: 1fr; } }
.beyond-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; text-decoration: none; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.beyond-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-3px); }
.beyond-card-img { width: 100%; height: 130px; object-fit: cover; border-radius: 10px; margin-bottom: 14px; display: block; }
.beyond-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.beyond-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; }
.beyond-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.beyond-cta { text-align: center; position: relative; }
.beyond-cta .btn-submit { background: var(--accent); color: #111; }
.beyond-cta .btn-submit:hover { background: var(--accent-light); }

.marquee-bar { background: var(--primary-dark); padding: 6px 0; overflow: hidden; position: relative; border-bottom: 2px solid var(--accent); }
.marquee-inner { display: flex; animation: marqueeScroll 18s linear infinite; white-space: nowrap; will-change: transform; width: fit-content; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-content { display: flex; align-items: center; gap: 24px; padding: 0 16px; flex-shrink: 0; }
.marquee-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.marquee-item .tag { background: var(--accent); color: #111; padding: 1px 10px; border-radius: 10px; font-size: 0.7rem; font-weight: 700; margin-right: 2px; }
.marquee-sep { color: rgba(255,255,255,0.3); font-size: 0.8rem; flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.float-btns { position: fixed; right: 20px; bottom: 120px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.float-btn.whatsapp { background: #25D366; animation: pulse-green 2s infinite; }
.float-btn.phone { background: var(--primary); animation: pulse-dark 2s infinite 0.5s; }

@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes pulse-dark { 0% { box-shadow: 0 0 0 0 rgba(27,67,50,0.5); } 70% { box-shadow: 0 0 0 14px rgba(27,67,50,0); } 100% { box-shadow: 0 0 0 0 rgba(27,67,50,0); } }
.float-btn.scroll-top { background: var(--accent); color: #111; font-size: 1.2rem; cursor: pointer; border: none; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.float-btn.scroll-top.show { opacity: 1; pointer-events: auto; }

