/* ==========================================================================
   JAKOBSEN RØR AS - Sørlandet Coastal Professional
   A design inspired by the contrast of white trehus against deep fjord blue
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties - Coastal Sørlandet Palette
   -------------------------------------------------------------------------- */
:root {
  /* Primary Colors */
  --fjord-deep: #1A5276;
  --fjord-medium: #2471A3;
  --fjord-light: #5499C7;

  /* Coastal Whites */
  --trehus-white: #FDFEFE;
  --pearl-white: #F8F9FA;
  --soft-white: #EBF5FB;

  /* Sea Accents */
  --sea-green: #48C9B0;
  --sea-green-light: #76D7C4;
  --sea-foam: #A3E4D7;

  /* Sand Tones */
  --sjosanden: #E8D5B7;
  --sand-light: #F5EFE6;
  --sand-warm: #D4C4A8;

  /* Evening & Contrast */
  --evening-blue: #2C3E50;
  --midnight: #1B2631;
  --charcoal: #34495E;

  /* Functional */
  --emergency-red: #E74C3C;
  --emergency-red-dark: #C0392B;
  --success-green: #27AE60;

  /* Typography Scale */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'DM Sans', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 82, 118, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 82, 118, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 82, 118, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 82, 118, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Font Imports
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--evening-blue);
  background-color: var(--trehus-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background-color: var(--sea-green);
  color: var(--trehus-white);
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--sea-green);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fjord-deep);
}

.display-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
}

p {
  max-width: 65ch;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--charcoal);
  opacity: 0.8;
}

a {
  color: var(--fjord-deep);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--sea-green);
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: var(--space-4xl) 0;
}

.section-lg {
  padding: var(--space-5xl) 0;
}

/* --------------------------------------------------------------------------
   Background Patterns & Textures
   -------------------------------------------------------------------------- */
.bg-wave-pattern {
  position: relative;
}

.bg-wave-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%2348C9B0' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.bg-gradient-coastal {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--trehus-white) 50%, var(--sand-light) 100%);
}

.bg-fjord {
  background-color: var(--fjord-deep);
  color: var(--trehus-white);
}

.bg-fjord h1, .bg-fjord h2, .bg-fjord h3, .bg-fjord h4 {
  color: var(--trehus-white);
}

.bg-sand {
  background-color: var(--sand-light);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--fjord-deep);
  color: var(--trehus-white);
  box-shadow: 0 4px 14px rgba(26, 82, 118, 0.3);
}

.btn-primary:hover {
  background-color: var(--fjord-medium);
  color: var(--trehus-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
}

.btn-secondary {
  background-color: var(--trehus-white);
  color: var(--fjord-deep);
  border: 2px solid var(--fjord-deep);
}

.btn-secondary:hover {
  background-color: var(--fjord-deep);
  color: var(--trehus-white);
}

.btn-accent {
  background-color: var(--sea-green);
  color: var(--trehus-white);
  box-shadow: 0 4px 14px rgba(72, 201, 176, 0.3);
}

.btn-accent:hover {
  background-color: var(--sea-green-light);
  color: var(--evening-blue);
  transform: translateY(-2px);
}

.btn-emergency {
  background-color: var(--emergency-red);
  color: var(--trehus-white);
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);
  animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
  background-color: var(--emergency-red-dark);
  color: var(--trehus-white);
}

@keyframes pulse-emergency {
  0%, 100% { box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5); }
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background-color: rgba(253, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: var(--space-sm) 0;
  border-bottom-color: rgba(26, 82, 118, 0.1);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--fjord-medium) 100%);
  border-radius: var(--radius-md);
  color: var(--trehus-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fjord-deep);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--evening-blue);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sea-green);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--fjord-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--fjord-deep);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--sea-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fjord-deep);
  transition: all var(--transition-base);
  border-radius: 2px;
}

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

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

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

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(253, 254, 254, 0.97) 0%,
    rgba(235, 245, 251, 0.95) 40%,
    rgba(232, 213, 183, 0.3) 100%
  );
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

/* Decorative wave elements */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 2;
}

.hero-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--soft-white);
  border: 1px solid var(--sea-foam);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fjord-deep);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sea-green);
}

.hero-title {
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .highlight {
  color: var(--sea-green);
  position: relative;
}

.hero-title .display-accent {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--fjord-medium);
  font-size: 0.7em;
  margin-top: var(--space-sm);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(26, 82, 118, 0.1);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--charcoal);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--sea-green);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--sea-green);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: var(--sjosanden);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Floating stats card */
.hero-stats-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--trehus-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: floatUp 3s ease-in-out infinite;
}

.stats-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sea-green) 0%, var(--sea-green-light) 100%);
  border-radius: var(--radius-md);
  color: var(--trehus-white);
}

.stats-icon svg {
  width: 24px;
  height: 24px;
}

.stats-content {
  line-height: 1.3;
}

.stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fjord-deep);
}

.stats-label {
  font-size: 0.875rem;
  color: var(--charcoal);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  background: var(--pearl-white);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sea-green);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--sea-green);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--trehus-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fjord-deep) 0%, var(--sea-green) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--sea-foam) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--fjord-deep);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--fjord-medium) 100%);
  color: var(--trehus-white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.service-description {
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--sea-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--fjord-deep);
  font-size: 0.9375rem;
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Emergency Banner
   -------------------------------------------------------------------------- */
.emergency-banner {
  background: linear-gradient(135deg, var(--emergency-red) 0%, var(--emergency-red-dark) 100%);
  color: var(--trehus-white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.emergency-text {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.emergency-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.emergency-icon svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.emergency-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--trehus-white);
  margin-bottom: var(--space-xs);
}

.emergency-description {
  opacity: 0.9;
  font-size: 1rem;
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.emergency-phone a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--trehus-white);
  color: var(--emergency-red);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
}

.emergency-phone a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.emergency-phone svg {
  width: 24px;
  height: 24px;
}

/* --------------------------------------------------------------------------
   Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-section {
  position: relative;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-image-wrapper {
  position: relative;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.why-image-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sea-green) 0%, var(--sea-green-light) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.why-quote {
  position: absolute;
  bottom: 40px;
  right: -60px;
  background: var(--trehus-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.why-quote-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--fjord-deep);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.why-quote-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.why-text-content {
  padding: var(--space-xl) 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-item {
  display: flex;
  gap: var(--space-lg);
}

.why-item-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  color: var(--fjord-deep);
  transition: all var(--transition-base);
}

.why-item:hover .why-item-icon {
  background: var(--fjord-deep);
  color: var(--trehus-white);
}

.why-item-icon svg {
  width: 28px;
  height: 28px;
}

.why-item-content h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.why-item-content p {
  font-size: 0.9375rem;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Coverage Area Section
   -------------------------------------------------------------------------- */
.coverage-section {
  background: var(--fjord-deep);
  color: var(--trehus-white);
  position: relative;
  overflow: hidden;
}

.coverage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2348C9B0' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.coverage-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.coverage-header .section-label {
  color: var(--sea-green-light);
}

.coverage-header .section-label::before,
.coverage-header .section-label::after {
  background: var(--sea-green-light);
}

.coverage-header h2 {
  color: var(--trehus-white);
}

.coverage-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.coverage-area {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.coverage-area:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.coverage-area-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--trehus-white);
  margin-bottom: var(--space-md);
}

.coverage-area-title svg {
  width: 20px;
  height: 20px;
  color: var(--sea-green-light);
}

.coverage-places {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.coverage-places li {
  background: rgba(72, 201, 176, 0.15);
  color: var(--sea-green-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--sand-light);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--trehus-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--sea-foam);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--sjosanden);
  color: var(--sjosanden);
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--fjord-light) 0%, var(--sea-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trehus-white);
  font-weight: 600;
  font-size: 1.125rem;
}

.testimonial-info {
  line-height: 1.4;
}

.testimonial-name {
  font-weight: 600;
  color: var(--fjord-deep);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--evening-blue) 100%);
  color: var(--trehus-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(72, 201, 176, 0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--trehus-white);
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 100%;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--sea-green);
  color: var(--evening-blue);
}

.cta-buttons .btn-primary:hover {
  background: var(--sea-green-light);
}

.cta-buttons .btn-secondary {
  border-color: var(--trehus-white);
  color: var(--trehus-white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--trehus-white);
  color: var(--fjord-deep);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--sea-green) 0%, var(--sea-green-light) 100%);
}

.footer-brand .logo-name {
  color: var(--trehus-white);
}

.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--sea-green);
  color: var(--trehus-white);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--trehus-white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sea-green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--sea-green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--sea-green-light);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--sea-green-light);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fjord-deep);
  margin-bottom: var(--space-sm);
}

.form-label .required {
  color: var(--emergency-red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--evening-blue);
  background: var(--trehus-white);
  border: 2px solid var(--soft-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sea-green);
  box-shadow: 0 0 0 3px rgba(72, 201, 176, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--charcoal);
  opacity: 0.5;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--sea-green);
}

.form-checkbox-label {
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* --------------------------------------------------------------------------
   Page Headers
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--pearl-white) 100%);
  padding: calc(100px + var(--space-4xl)) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--sea-foam) 100%);
  opacity: 0.2;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--charcoal);
}

.breadcrumb a:hover {
  color: var(--fjord-deep);
}

.breadcrumb span {
  color: var(--charcoal);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--fjord-deep);
  font-weight: 500;
}

.page-title {
  margin-bottom: var(--space-lg);
}

.page-description {
  font-size: 1.125rem;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Service Detail Page
   -------------------------------------------------------------------------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-4xl);
}

.service-detail-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.service-detail-content p {
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--charcoal);
}

.service-detail-content ul li svg {
  width: 20px;
  height: 20px;
  color: var(--sea-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--pearl-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.sidebar-card-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--sea-foam);
}

.sidebar-services {
  list-style: none;
}

.sidebar-services li {
  margin-bottom: var(--space-xs);
}

.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--trehus-white);
  color: var(--fjord-deep);
  box-shadow: var(--shadow-sm);
}

.sidebar-services a.active {
  border-left: 3px solid var(--sea-green);
}

.sidebar-services svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.sidebar-services a:hover svg,
.sidebar-services a.active svg {
  opacity: 1;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--fjord-medium) 100%);
  color: var(--trehus-white);
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--trehus-white);
  margin-bottom: var(--space-md);
}

.sidebar-cta p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
}

.sidebar-cta .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Pricing Page
   -------------------------------------------------------------------------- */
.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.pricing-card {
  background: var(--trehus-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--sea-green);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Mest valgt';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--sea-green);
  color: var(--trehus-white);
  padding: var(--space-xs) var(--space-2xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-header {
  background: var(--pearl-white);
  padding: var(--space-xl);
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--sea-foam) 100%);
}

.pricing-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fjord-deep);
}

.pricing-period {
  font-size: 1rem;
  color: var(--charcoal);
}

.pricing-body {
  padding: var(--space-xl);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--charcoal);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--sea-green);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.pricing-cta .btn {
  width: 100%;
}

.pricing-note {
  background: var(--sand-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pricing-note h3 {
  margin-bottom: var(--space-md);
}

.pricing-note p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal);
}

/* Hourly Rates Table */
.rates-table {
  background: var(--trehus-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--space-4xl);
}

.rates-table-header {
  background: var(--fjord-deep);
  color: var(--trehus-white);
  padding: var(--space-xl);
}

.rates-table-header h3 {
  color: var(--trehus-white);
  margin-bottom: var(--space-xs);
}

.rates-table table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th,
.rates-table td {
  padding: var(--space-md) var(--space-xl);
  text-align: left;
  border-bottom: 1px solid var(--soft-white);
}

.rates-table th {
  background: var(--pearl-white);
  font-weight: 600;
  color: var(--fjord-deep);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:hover td {
  background: var(--soft-white);
}

.rate-value {
  font-weight: 600;
  color: var(--fjord-deep);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-intro-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--sea-foam);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

.about-intro-text h2 {
  margin-bottom: var(--space-lg);
}

.about-intro-text p {
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
}

.values-section {
  background: var(--pearl-white);
  padding: var(--space-4xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4xl);
}

.values-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--fjord-medium) 100%);
  border-radius: var(--radius-lg);
  color: var(--trehus-white);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.value-description {
  color: var(--charcoal);
  font-size: 0.9375rem;
}

/* Owner Profile */
.owner-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  background: var(--trehus-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.owner-image {
  position: relative;
}

.owner-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.owner-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--sea-green);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.owner-content h3 {
  margin-bottom: var(--space-xs);
}

.owner-title {
  color: var(--sea-green);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.owner-content p {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.owner-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--soft-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--fjord-deep);
}

.credential-badge svg {
  width: 18px;
  height: 18px;
  color: var(--sea-green);
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-info p {
  color: var(--charcoal);
  margin-bottom: var(--space-2xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--pearl-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-method:hover {
  background: var(--soft-white);
  transform: translateX(8px);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fjord-deep) 0%, var(--fjord-medium) 100%);
  border-radius: var(--radius-md);
  color: var(--trehus-white);
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-method-content a,
.contact-method-content p {
  color: var(--charcoal);
  font-size: 0.9375rem;
  margin: 0;
}

.contact-method-content a:hover {
  color: var(--sea-green);
}

.contact-hours {
  background: var(--sand-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.contact-hours h4 {
  margin-bottom: var(--space-md);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--sand-warm);
  font-size: 0.9375rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--charcoal);
}

.hours-time {
  font-weight: 500;
  color: var(--fjord-deep);
}

.contact-form-wrapper {
  background: var(--trehus-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-header {
  margin-bottom: var(--space-xl);
}

.contact-form-header h3 {
  margin-bottom: var(--space-sm);
}

.contact-map {
  margin-top: var(--space-4xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --------------------------------------------------------------------------
   Animations & Effects
   -------------------------------------------------------------------------- */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stats-card {
    left: auto;
    right: 20px;
    bottom: -20px;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .why-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .why-quote {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: var(--space-lg);
    max-width: 100%;
  }

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

  .service-sidebar {
    position: static;
  }

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

  .owner-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-image {
    max-width: 250px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .nav-main {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--trehus-white);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: var(--space-lg);
  }

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

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-link {
    padding: var(--space-md);
    border-bottom: 1px solid var(--soft-white);
    width: 100%;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: calc(100px + var(--space-2xl)) 0 var(--space-3xl);
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
  }

  .emergency-text {
    flex-direction: column;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .rates-table {
    overflow-x: auto;
  }

  .rates-table table {
    min-width: 500px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

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

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

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .footer,
  .emergency-banner,
  .cta-section,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  h1, h2, h3, h4 {
    color: #000;
    page-break-after: avoid;
  }

  .section {
    padding: 20pt 0;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
