/* Shared service page styles */
:root {
    --midnight: #002037;
    --deep-blue: #003d5c;
    --marine: #005580;
    --gold: #e6c200;
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #0d1b2a;
    --muted: #5a6a80;
    --border: #dfe6ee;
}

body { background: var(--bg); color: var(--text); }
.service-shell { max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; }

.service-hero {
    position: relative;
    overflow: hidden;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-blue) 50%, var(--marine) 100%);
    border-radius: 0;
    padding: 120px 24px 80px;
    color: white;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    display: grid;
    gap: 16px;
    text-align: center;
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.32;
}
.service-hero > * { position: relative; z-index: 1; max-width: 960px; width: min(960px, calc(100% - 32px)); justify-self: center; }
.service-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 0; font-weight: 700; }
.service-hero p { margin: 0; font-size: 16px; max-width: 600px; opacity: 0.95; line-height: 1.6; }

.service-back {
    position: absolute;
    top: 96px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}
.service-back:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.service-back svg { width: 18px; height: 18px; }

.overview-card {
    background: var(--card); border-radius: 18px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid var(--border); margin-top: 32px; display: grid; gap: 20px;
}
.overview-card h2 { margin: 0; color: var(--midnight); font-size: 24px; }
.overview-card p { margin: 0; color: var(--muted); line-height: 1.8; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 32px 0; }
.info-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,0.06); display: grid; gap: 12px;
}
.info-icon { font-size: 32px; }
.info-label { color: var(--muted); font-weight: 600; font-size: 14px; }
.info-value { color: var(--midnight); font-size: 18px; font-weight: 700; }

.section-head { margin-top: 48px; margin-bottom: 24px; }
.section-head h2 { margin: 0 0 8px; color: var(--midnight); font-size: 28px; }
.section-head p { margin: 0; color: var(--muted); font-size: 15px; }

.spots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }
.spot-card {
    background: var(--card); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--border); transition: all 0.3s ease; display: grid; gap: 0;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.spot-image { width: 100%; height: 180px; object-fit: cover; display: block; }
.spot-content { padding: 20px; display: grid; gap: 12px; }
.spot-name { margin: 0; font-size: 18px; color: var(--midnight); font-weight: 700; }
.spot-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.spot-meta { font-size: 13px; color: var(--muted); display: flex; gap: 8px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px; }
.product-card {
    background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.06); border: 1px solid var(--border); transition: all 0.2s ease; display: grid; gap: 0;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.product-image { width: 100%; height: 160px; object-fit: cover; }
.product-content { padding: 16px; display: grid; gap: 10px; }
.product-name { margin: 0; font-size: 16px; color: var(--midnight); font-weight: 700; }
.product-desc { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.product-where { font-size: 12px; color: var(--muted); padding-top: 8px; border-top: 1px solid var(--border); }
.product-btn { display: inline-block; background: var(--midnight); color: white; padding: 8px 12px; border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: 600; margin-top: 8px; transition: all 0.2s ease; }
.product-btn:hover { background: var(--deep-blue); }

.resort-card {
    background: var(--card); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--border); transition: all 0.3s ease;
}
.resort-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.resort-image { width: 100%; height: 200px; object-fit: cover; }
.resort-content { padding: 24px; display: grid; gap: 12px; }
.resort-name { margin: 0; font-size: 20px; color: var(--midnight); font-weight: 700; }
.resort-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.resort-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; padding-top: 12px; border-top: 1px solid var(--border); }
.resort-badge { background: rgba(230, 194, 0, 0.14); color: var(--midnight); padding: 6px 10px; border-radius: 6px; }
.resort-cta { margin-top: 12px; }
.resort-cta a { display: inline-block; background: var(--midnight); color: white; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.resort-cta a:hover { background: var(--deep-blue); }

.timeline-steps { display: grid; gap: 20px; margin-bottom: 40px; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; }
.step-icon {
    width: 60px; height: 60px; border-radius: 12px; background: rgba(230, 194, 0, 0.14); color: var(--midnight);
    display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
}
.step-content h3 { margin: 0 0 6px; color: var(--midnight); font-size: 18px; }
.step-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.tips-box {
    background: linear-gradient(135deg, rgba(0, 32, 55, 0.04), rgba(230, 194, 0, 0.04)); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin: 40px 0;
}
.tips-box h3 { margin: 0 0 16px; color: var(--midnight); font-size: 20px; }
.tips-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.tips-list li { color: var(--muted); font-size: 14px; padding-left: 24px; position: relative; line-height: 1.6; }
.tips-list li:before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.cta-section {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-blue) 100%); color: white; padding: 40px; border-radius: 14px; text-align: center; margin: 60px 0;
}
.cta-section h2 { margin: 0 0 12px; font-size: 28px; }
.cta-section p { margin: 0 0 20px; opacity: 0.95; }
.cta-btn { display: inline-block; background: var(--gold); color: var(--midnight); padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.2s ease; }
.cta-btn:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .service-shell { padding: 0 16px 60px; }
    .service-hero { padding: 80px 20px 60px; }
    .overview-card { padding: 24px; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .spots-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .resort-grid { grid-template-columns: 1fr; }
    .step { grid-template-columns: 50px 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .info-grid { grid-template-columns: 1fr; }
    .resort-meta { font-size: 12px; gap: 8px; }
    .step { gap: 12px; }
    .cta-section { padding: 28px 16px; }
    .service-hero { padding: 72px 16px 52px; }
}
