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

:root {
  --sky-blue: #0072c6;
  --sky-dark: #004a80;
  --sky-light: #e8f4fc;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --grey-bg: #f5f7fa;
  --border: #ddd;
  --green: #28a745;
  --red: #dc3545;
  --max-width: 1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: var(--sky-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--sky-dark);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.site-logo:hover { text-decoration: none; }

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

.site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--white); text-decoration: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.phone-number {
  display: inline-block;
  background: var(--white);
  color: var(--sky-dark);
  font-size: 2rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 8px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  transition: transform 0.2s;
  text-decoration: none;
}

.phone-number:hover {
  transform: scale(1.03);
  text-decoration: none;
}

.call-cost {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 8px;
}

.call-cost strong { font-weight: 600; }

/* Services Grid */
.services {
  padding: 60px 20px;
  background: var(--grey-bg);
}

.services h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--sky-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--sky-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card .card-number {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-decoration: none;
}

.service-card .card-number:hover { background: var(--sky-blue); color: var(--white); text-decoration: none; }

/* Info Section */
.info-section {
  padding: 60px 20px;
}

.info-section .container { max-width: var(--max-width); }

.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--sky-dark);
}

.info-section p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.info-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.info-section li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* Disclaimer Banner */
.disclaimer-banner {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 16px 24px;
  margin: 30px auto;
  max-width: var(--max-width);
  font-size: 0.85rem;
  color: #856404;
  line-height: 1.5;
}

.disclaimer-banner strong { color: #664d03; }

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding: 40px 20px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.footer-col a:hover { color: var(--white); }

.footer-col p { margin-bottom: 6px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom p { margin-bottom: 4px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: var(--white);
  padding: 16px 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a { color: #8bb8e8; }

.cookie-buttons { display: flex; gap: 10px; }

.btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.9; }

.btn-accept { background: var(--green); color: var(--white); }
.btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

/* Content Pages (privacy, terms) */
.content-page {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 2rem;
  color: var(--sky-dark);
  margin-bottom: 24px;
}

.content-page h2 {
  font-size: 1.3rem;
  color: var(--sky-dark);
  margin: 30px 0 12px;
}

.content-page p, .content-page li {
  color: var(--text-light);
  margin-bottom: 12px;
}

.content-page ul { padding-left: 24px; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: 1.6rem; }
  .phone-number { font-size: 1.5rem; padding: 12px 24px; }

  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--sky-dark); padding: 16px 20px; gap: 12px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .services { padding: 40px 16px; }
  .services-grid { grid-template-columns: 1fr; }

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

  .cookie-inner { flex-direction: column; text-align: center; }
}
