:root {
  --primary-navy: #2B3990; --primary-gold: #C5A572; --secondary-gold: #E0C09B;
  --dark-navy: #1A2670; --light-gold: #F4E4D1; --white: #FFFFFF;
  --gray-100: #F8F9FA; --gray-200: #E9ECEF; --gray-600: #6C757D; --gray-800: #212529;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08); --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15); --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --header-height: 120px; --header-height-mobile: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gray-800); overflow-x: hidden; background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
header.main-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-md); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: sticky; top: 0; z-index: 1000; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 30px; height: 100%; }
.header-wrapper { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: stretch; height: 100%; padding: 15px 0; }
.logo-wrapper { display: flex; align-items: center; padding: 10px 0; border-right: 1px solid var(--gray-200); padding-right: 40px; }
.logo { display: block; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }
.logo img { height: 85px; width: auto; object-fit: contain; }
.header-right { display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.header-top-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--gray-200); }
.header-info { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--gray-600); }
.header-info-item { display: flex; align-items: center; gap: 8px; }
.header-info-item i { color: var(--primary-gold); font-size: 16px; }
.header-info a { color: var(--gray-600); text-decoration: none; transition: color 0.3s ease; }
.header-info a:hover { color: var(--primary-gold); }
.header-actions { display: flex; align-items: center; gap: 30px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); color: var(--dark-navy); font-size: 16px; text-decoration: none; transition: all 0.3s ease; }
.social-icons a:hover { background: var(--primary-gold); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.phone-number { display: flex; align-items: center; gap: 10px; color: var(--dark-navy); font-weight: 600; font-size: 17px; text-decoration: none; transition: all 0.3s ease; }
.phone-number i { color: var(--primary-gold); font-size: 20px; }
.phone-number:hover { color: var(--primary-gold); }
.cta-button { background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%); color: var(--white); border: none; padding: 12px 35px; border-radius: 50px; font-weight: 600; font-size: 15px; letter-spacing: 0.5px; transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(197,165,114,0.4); position: relative; overflow: hidden; cursor: pointer; }
.cta-button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.3); transform: translate(-50%,-50%); transition: width 0.6s, height 0.6s; }
.cta-button:hover::before { width: 300px; height: 300px; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(197,165,114,0.5); }
.header-nav-row { display: flex; justify-content: space-between; align-items: center; }
.main-nav { display: flex; align-items: center; }
.main-nav .nav-link { color: var(--dark-navy); font-weight: 500; font-size: 16px; letter-spacing: 0.3px; padding: 8px 20px; margin: 0 5px; text-decoration: none; position: relative; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.main-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--primary-gold); transition: width 0.3s ease; }
.main-nav .nav-link:hover { color: var(--primary-gold); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { width: calc(100% - 40px); }
.nav-link.active { color: var(--primary-gold); font-weight: 600; }
.badge-popular { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: var(--white); font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(197,165,114,0.3); animation: pulse-badge 2s infinite; }
@keyframes pulse-badge { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border: 1px solid rgba(197,165,114,0.2); border-radius: 20px; padding: 20px 0; margin-top: 15px; box-shadow: var(--shadow-xl); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; min-width: 280px; z-index: 9999; }
.main-nav .dropdown:hover .dropdown-menu, .main-nav .dropdown.show .dropdown-menu, .dropdown:hover .dropdown-menu { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }
.main-nav .dropdown-item { display: flex; align-items: center; gap: 15px; padding: 15px 30px; font-weight: 500; color: var(--dark-navy); text-decoration: none; transition: all 0.3s ease; position: relative; overflow: hidden; }
.main-nav .dropdown-item::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--primary-gold); transform: translateX(-100%); transition: transform 0.3s ease; }
.main-nav .dropdown-item:hover { background: rgba(197,165,114,0.1); color: var(--primary-gold); padding-left: 40px; }
.main-nav .dropdown-item:hover::before { transform: translateX(0); }
.main-nav .dropdown-item i { font-size: 18px; width: 25px; text-align: center; }
.main-nav .dropdown-divider { height: 1px; background: var(--gray-200); margin: 10px 30px; }
.hamburger { display: none; flex-direction: column; justify-content: center; width: 45px; height: 45px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 10001; position: relative; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--dark-navy); margin: 5px auto; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
.mobile-menu { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; height: 100dvh; background: var(--white); z-index: 10000; transition: left 0.4s ease; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-top: 0; display: flex; flex-direction: column; }
.mobile-menu.active { left: 0; }
.mobile-menu-head { height: var(--header-height-mobile); min-height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px 0 20px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; }
.mobile-menu-head .mm-logo img { height: 46px; width: auto; display: block; }
.mobile-menu-close { width: 44px; height: 44px; border: none; background: var(--gray-100); border-radius: 50%; color: var(--dark-navy); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; flex-shrink: 0; }
.mobile-menu-close:hover, .mobile-menu-close:focus-visible { background: var(--primary-gold); color: var(--white); }
.mobile-nav { padding: 22px 20px; }
.mobile-nav .nav-link { display: block; padding: 18px 15px; color: var(--dark-navy); font-size: 17px; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--gray-200); transition: all 0.3s ease; }
.mobile-nav .nav-link:hover { color: var(--primary-gold); padding-left: 25px; background: rgba(197,165,114,0.05); }
.mobile-menu-footer { padding: 30px 20px; background: var(--gray-100); margin-top: auto; }
.mobile-contact-info { margin-bottom: 20px; }
.mobile-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: var(--gray-600); font-size: 15px; }
.mobile-contact-item a { color: var(--gray-600); text-decoration: none; }
.mobile-contact-item i { color: var(--primary-gold); font-size: 18px; width: 20px; }
.mobile-social { display: flex; gap: 15px; margin-top: 20px; }
.mobile-social .social-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gray-200); color: var(--dark-navy); font-size: 18px; transition: all 0.3s ease; text-decoration: none; }
.mobile-social .social-icon:hover { background: var(--primary-gold); color: var(--white); }
.mobile-cta { display: block; width: 100%; background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%); color: var(--white); padding: 15px; text-align: center; border-radius: 50px; font-weight: 600; text-decoration: none; margin-top: 20px; transition: all 0.3s ease; }
.mobile-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(197,165,114,0.4); color: var(--white); }
@media (max-width: 1200px) { .header-wrapper { grid-template-columns: 180px 1fr; gap: 25px; } .logo img { height: 75px; } .header-info { gap: 20px; } .header-actions { gap: 20px; } .main-nav .nav-link { padding: 8px 15px; font-size: 15px; } }
@media (max-width: 991px) { header.main-header { height: var(--header-height-mobile); } .header-wrapper { grid-template-columns: auto 1fr auto; gap: 15px; padding: 10px 0; align-items: center; } .logo-wrapper { border-right: none; padding-right: 0; } .logo img { height: 60px; } .header-right { display: none; } .hamburger { display: flex; } }
@media (max-width: 767px) { .header-container { padding: 0 15px; } }
@media (max-width: 480px) { .logo img { height: 50px; } }
::selection { background: var(--primary-gold); color: var(--white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold)); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Footer */
.footer { background: linear-gradient(135deg, var(--primary-navy) 0%, #1A2670 100%); color: var(--white); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(197,165,114,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(197,165,114,0.15) 0%, transparent 50%), radial-gradient(circle at 40% 90%, rgba(197,165,114,0.1) 0%, transparent 50%); pointer-events: none; }
.footer-main { padding: 60px 0 40px; position: relative; z-index: 1; }
.footer-widget { height: 100%; }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 1.2rem; color: var(--white); box-shadow: 0 8px 25px rgba(197,165,114,0.3); }
.logo-text h3 { color: var(--white); font-size: 1.8rem; font-weight: 700; margin: 0; font-family: 'Poppins', sans-serif; }
.logo-text p { color: var(--primary-gold); font-size: 0.9rem; margin: 0; font-weight: 500; }
.footer-desc { color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(197,165,114,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.footer-social a:hover { background: var(--primary-gold); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(197,165,114,0.4); }
.footer-title { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a { color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-menu a:hover { color: var(--primary-gold); transform: translateX(5px); }
.footer-contact .contact-item { display: flex; align-items: flex-start; margin-bottom: 15px; }
.footer-contact .contact-item i { width: 20px; color: var(--primary-gold); margin-right: 12px; margin-top: 3px; flex-shrink: 0; }
.footer-contact .contact-item small { display: block; color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 2px; }
.footer-contact .contact-item a, .footer-contact .contact-item span { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 500; font-size: 0.95rem; line-height: 1.4; }
.footer-contact .contact-item a[href^="tel:"] { white-space: nowrap; }
.footer-contact .contact-item a[href^="mailto:"] { word-break: break-word; }
.footer-contact .contact-item a:hover { color: var(--primary-gold); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--primary-gold); }
.copyright { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.9rem; }
.footer-credit { color: rgba(255,255,255,0.5); margin: 0; font-size: 0.85rem; text-align: right; }
@media (max-width: 768px) { .footer-main { padding: 40px 0 30px; } .footer-nav { gap: 8px 18px; } .footer-nav a { font-size: 0.82rem; } .logo-text h3 { font-size: 1.5rem; } .copyright { text-align: center; margin-bottom: 6px; } .footer-credit { text-align: center; } }

/* Back to top */
#backToTop { position: fixed; right: 22px; bottom: 24px; width: 48px; height: 48px; border: none; border-radius: 50%; background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy)); color: #fff; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, box-shadow .3s; box-shadow: 0 8px 22px rgba(43,57,144,.35); z-index: 1200; }
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { box-shadow: 0 0 0 3px rgba(197,165,114,.55), 0 10px 26px rgba(43,57,144,.45); }
@media (max-width: 600px) { #backToTop { right: 14px; bottom: 80px; width: 44px; height: 44px; } }
