/* ==========================================
   SORACHARGEDCK — SMART NAVIGATOR UI
   ========================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #f8fafc;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --accent-primary: #2563eb;
    --accent-primary-dark: #1d4ed8;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;
    --accent-amber: #f59e0b;
    --accent-amber-light: #fbbf24;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --heading-color: #0f172a;
    --text-color: #475569;
    --muted-color: #94a3b8;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    line-height: 1.3;
    font-weight: 700;
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary));
    color: #fff;
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading-color);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    border-radius: var(--radius-xs);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--heading-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    padding: 14px 0;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-color);
}

.mobile-nav-link.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.mobile-cta {
    margin-top: 16px;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 50%, #fffbeb 100%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 540px;
}

.search-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    color: var(--heading-color);
    background: var(--bg-primary);
    transition: var(--transition);
    font-family: var(--font-main);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 12px 32px;
    height: fit-content;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover,
.tag.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

/* --- Map Preview --- */
.map-preview {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-bg {
    position: relative;
    height: 350px;
    background: linear-gradient(180deg, #dbeafe 0%, #ecfdf5 50%, #fef3c7 100%);
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: pinBounce 2s ease-in-out infinite;
}

.pin-1 { top: 22%; left: 65%; animation-delay: 0s; }
.pin-2 { top: 42%; left: 30%; animation-delay: 0.3s; }
.pin-3 { top: 60%; left: 55%; animation-delay: 0.6s; }
.pin-4 { top: 70%; left: 20%; animation-delay: 0.9s; }
.pin-5 { top: 15%; left: 40%; animation-delay: 1.2s; }

.pin-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pin-dot-green {
    background: var(--accent-green);
}

.pin-dot-amber {
    background: var(--accent-amber);
}

.pin-label {
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.parking-icon {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.6;
}

.p-icon-1 { top: 30%; left: 75%; }
.p-icon-2 { top: 50%; left: 40%; }
.p-icon-3 { top: 65%; left: 15%; }

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.map-legend {
    display: flex;
    gap: 20px;
    padding: 12px 20px;
    background: #fff;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.blue { background: var(--accent-primary); }
.legend-dot.green { background: var(--accent-green); }
.legend-dot.amber { background: var(--accent-amber); }

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Hotels Grid --- */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hotel-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.parking-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-underground {
    background: rgba(37, 99, 235, 0.9);
    color: #fff;
}

.badge-onsite {
    background: rgba(22, 163, 74, 0.9);
    color: #fff;
}

.badge-private {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
}

.badge-free {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.country-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-card-body {
    padding: 24px;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.hotel-location {
    color: var(--accent-primary);
    font-weight: 600;
}

.hotel-distance {
    color: var(--muted-color);
}

.hotel-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.hotel-card-body p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    padding: 4px 12px;
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-color);
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--muted-color);
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading-color);
}

.price-unit {
    font-size: 0.8rem;
    color: var(--muted-color);
}

/* --- Guide Section --- */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.guide-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guide-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.guide-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.guide-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.guide-list {
    list-style: none;
}

.guide-list li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* --- CTA Section --- */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary));
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--accent-primary);
    border-color: #fff;
}

.cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-card .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.cta-visual {
    flex-shrink: 0;
}

.cta-emoji {
    font-size: 5rem;
}

/* --- Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Hotel Detail --- */
.hotel-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.hotel-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.hotel-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hotel-detail-content .parking-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
}

.hotel-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.hotel-detail-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-box {
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--border);
}

.detail-box:last-child {
    grid-column: 1 / -1;
}

.detail-box h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.detail-box ul {
    list-style: none;
}

.detail-box li {
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.detail-box li:last-child {
    border-bottom: none;
}

/* --- Content Pages --- */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.content-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.content-block p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-block ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.content-block ul li {
    padding: 4px 0;
    line-height: 1.7;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 24px;
}

/* --- Rules Grid --- */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.rule-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rule-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.rule-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Tips --- */
.tips-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.tip-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tip-item:hover {
    box-shadow: var(--shadow);
}

.tip-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary-dark), var(--accent-primary));
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    font-size: 0.9rem;
}

.tip-item h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.tip-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- EV Grid --- */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ev-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.ev-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ev-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.ev-card h4 {
    margin-bottom: 8px;
}

.ev-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- About --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    margin-top: 40px;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.about-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-color);
    font-weight: 500;
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    color: var(--heading-color);
    background: var(--bg-primary);
    transition: var(--transition);
    font-family: var(--font-main);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green-dark);
    border-radius: var(--radius-xs);
    font-weight: 500;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-content p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    padding: 4px 0;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-primary);
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: var(--heading-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .search-row {
        grid-template-columns: 1fr 1fr;
    }

    .hotel-detail {
        grid-template-columns: 1fr;
    }

    .hotel-detail-image {
        position: static;
    }

    .content-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .page-hero {
        padding: 90px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-box:last-child {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-preview {
        display: none;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .ev-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .search-box {
        padding: 16px;
    }

    .quick-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hotel-card-image {
        height: 180px;
    }

    .hotel-card-body {
        padding: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}