:root {
    --primary: #005eb8;
    --primary-dark: #004a94;
    --primary-light: #e8f4fd;
    --accent: #00a3e0;
    --accent-soft: #b3e5fc;
    --text: #1a2332;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg: #ffffff;
    --bg-warm: #f5f9ff;
    --bg-blue: #eef5fc;
    --border: #dbeafe;
    --shadow: 0 4px 20px rgba(0, 94, 184, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 94, 184, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 76px; padding: 0 5%; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff !important; padding: 11px 26px; border-radius: 50px; font-weight: 600; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0, 94, 184, 0.3); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 94, 184, 0.4); }
.nav-cta::after { display: none !important; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary); font-size: 1.5rem; cursor: pointer; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-blue) 50%, var(--primary-light) 100%); padding: 120px 5% 80px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -10%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,163,224,0.12) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,94,184,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-content { max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 22px; border-radius: 50px; box-shadow: var(--shadow); margin-bottom: 28px; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.hero-badge .stars { color: #f5a623; letter-spacing: 2px; }
.hero-badge .score { color: var(--primary); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 20px; }
.hero-title span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.35s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; box-shadow: 0 4px 20px rgba(0, 94, 184, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 94, 184, 0.5); }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; max-width: 520px; display: block; border-radius: var(--radius-lg); }
.hero-image-wrap::before { content: ''; position: absolute; inset: -12px; border: 2px solid var(--accent-soft); border-radius: 32px; z-index: -1; }
.floating-tag { position: absolute; background: #fff; padding: 12px 20px; border-radius: 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; z-index: 2; animation: float 4s ease-in-out infinite; }
.floating-tag.tag-1 { top: 8%; right: -10px; color: var(--primary); }
.floating-tag.tag-2 { bottom: 12%; left: -20px; color: var(--accent); animation-delay: 2s; }
.floating-tag svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.section { padding: 100px 5%; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); margin-bottom: 14px; background: var(--primary-light); padding: 6px 18px; border-radius: 50px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; }
.about-section { background: var(--bg); }
.about-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; display: block; border-radius: var(--radius-lg); }
.about-image::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid var(--accent-soft); border-radius: var(--radius-lg); z-index: -1; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 20px; line-height: 1.3; }
.about-text p { color: var(--text-light); margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: var(--bg-warm); border-radius: 12px; border-left: 3px solid var(--primary); transition: all 0.3s; }
.about-feature:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.about-feature svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.about-feature strong { color: var(--text); font-weight: 600; }
.about-feature span { color: var(--text-light); font-size: 0.95rem; }
.services-section { background: linear-gradient(180deg, var(--bg-blue) 0%, var(--bg-warm) 100%); }
.services-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); padding: 40px 28px; text-align: center; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-light), var(--bg-blue)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--primary); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.otc-section { background: var(--bg); }
.otc-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.otc-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 20px; line-height: 1.3; }
.otc-text p { color: var(--text-light); margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.otc-text .highlight { background: linear-gradient(90deg, var(--primary-light), transparent); padding: 16px 20px; border-radius: 12px; border-left: 4px solid var(--primary); margin: 24px 0; }
.otc-text .highlight p { margin: 0; color: var(--text); font-weight: 500; }
.otc-logos { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.otc-logo-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; display: flex; align-items: center; gap: 12px; transition: all 0.3s; box-shadow: var(--shadow); }
.otc-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.otc-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary-light), var(--bg-blue)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 0.85rem; }
.otc-logo-card span { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.otc-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.otc-visual img { width: 100%; display: block; border-radius: var(--radius-lg); }
.otc-visual::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid var(--accent-soft); border-radius: var(--radius-lg); z-index: -1; }
.atm-section { background: linear-gradient(180deg, var(--bg-blue) 0%, var(--bg-warm) 100%); }
.atm-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.atm-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #fff, var(--bg-blue)); padding: 40px; min-height: 400px; }
.atm-visual img { max-width: 100%; max-height: 420px; display: block; border-radius: var(--radius); object-fit: contain; }
.atm-visual::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid var(--accent-soft); border-radius: var(--radius-lg); z-index: -1; }
.atm-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 20px; line-height: 1.3; }
.atm-text p { color: var(--text-light); margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.atm-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.atm-feature { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: #fff; border-radius: 12px; border: 1px solid var(--border); transition: all 0.3s; }
.atm-feature:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.atm-feature svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.atm-feature span { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.gallery-section { background: var(--bg); }
.gallery-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; }
.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-side { display: flex; flex-direction: column; gap: 24px; }
.gallery-side-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); flex: 1; }
.gallery-side-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; }
.gallery-overlay h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 4px; }
.gallery-overlay p { font-size: 0.9rem; opacity: 0.85; }
.info-section { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%); }
.info-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.info-card { background: #fff; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.4s; }
.info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.info-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.info-card-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 6px 16px rgba(0, 94, 184, 0.25); }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); }
.hours-table { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.hours-table td { padding: 12px 18px; font-size: 0.95rem; border-radius: 10px; }
.hours-table td:first-child { font-weight: 600; color: var(--text); width: 38%; }
.hours-table td:last-child { color: var(--text-light); text-align: right; font-weight: 500; }
.hours-table tr.today td { background: var(--primary-light); color: var(--primary); font-weight: 700; }
.hours-table tr.today td:first-child { color: var(--primary-dark); }
.closed { color: #e53e3e !important; font-weight: 600 !important; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-radius: 12px; transition: all 0.3s; border: 1px solid transparent; }
.contact-item:hover { background: var(--bg-warm); border-color: var(--border); transform: translateX(4px); }
.contact-item-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-item div strong { display: block; color: var(--text); margin-bottom: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-item div span, .contact-item div a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.contact-item div a:hover { color: var(--primary); }
.map-wrap { margin-top: 20px; border-radius: var(--radius); overflow: hidden; height: 200px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2) contrast(1.05); transition: filter 0.4s; }
.map-wrap:hover iframe { filter: grayscale(0) contrast(1); }
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden; padding: 100px 5%; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,163,224,0.15) 0%, transparent 70%); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }
.cta-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 40px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.btn-transparent { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-transparent:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }
footer { background: #0a1628; color: rgba(255,255,255,0.5); padding: 40px 5%; text-align: center; }
footer a { color: var(--accent-soft); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: #fff; }
.footer-madeby { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-madeby a { color: var(--accent); font-weight: 600; text-decoration: none; }
.footer-madeby a:hover { color: #fff; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .floating-tag { display: none; }
    .about-grid, .otc-grid, .atm-grid, .services-grid, .gallery-grid, .info-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 5%; }
    .otc-logos { justify-content: center; }
}
.reveal { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }
