/* ============================================
   TERMOS - Vodoinstalaterski obrt Rijeka
   Conversion-Optimized Design System
   ============================================ */

/* System fonts for zero CLS and fast loading */

/* CSS Variables */
:root {
  /* Brand Colors */
  --orange: #e5670a;
  --orange-dark: #c85a09;
  --orange-light: #ff7a1a;
  --blue: #0d82be;
  --blue-dark: #0a6a9c;
  --blue-light: #2083cf;
  --blue-pale: #e8f4fa;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f0f4f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography - System fonts for zero CLS */
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-gap: clamp(4rem, 8vw, 7rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-orange: 0 10px 40px -10px rgba(229, 103, 10, 0.5);
  --shadow-blue: 0 10px 40px -10px rgba(13, 130, 190, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--gray-600);
  max-width: 65ch;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER - Sticky with prominent phone
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 16px;
  background: var(--blue);
  border-radius: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-800);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
  }

  .nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
  }

  .nav a:hover,
  .nav a.active {
    color: var(--gray-900);
  }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}

.header-phone:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.header-phone svg {
  width: 20px;
  height: 20px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  5%, 15% { transform: rotate(-15deg); }
  10%, 20% { transform: rotate(15deg); }
  25% { transform: rotate(0); }
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

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

.mobile-nav a {
  display: block;
  padding: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a.active {
  color: var(--orange);
}

/* ============================================
   HERO - Maximum conversion focus
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 50%, var(--gray-50) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(13, 130, 190, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated water drops */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

/* Hero Graphics */
.hero-graphics {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Water Drops */
.water-drop {
  position: absolute;
  opacity: 0.15;
  color: var(--blue);
}

.water-drop-1 {
  top: 15%;
  left: 5%;
  width: 60px;
  height: 60px;
  animation: float 6s ease-in-out infinite;
}

.water-drop-2 {
  top: 60%;
  left: 8%;
  width: 40px;
  height: 40px;
  animation: float 8s ease-in-out infinite 1s;
}

.water-drop-3 {
  top: 25%;
  right: 15%;
  width: 80px;
  height: 80px;
  animation: float 7s ease-in-out infinite 0.5s;
}

.water-drop-4 {
  top: 70%;
  right: 5%;
  width: 50px;
  height: 50px;
  animation: float 5s ease-in-out infinite 2s;
}

.water-drop-5 {
  top: 40%;
  left: 15%;
  width: 35px;
  height: 35px;
  animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Pipe Graphics */
.pipe-graphic {
  position: absolute;
  opacity: 0.08;
  color: var(--blue-dark);
}

.pipe-1 {
  bottom: 20%;
  left: -50px;
  width: 200px;
  height: 200px;
  transform: rotate(-15deg);
}

.pipe-2 {
  top: 10%;
  right: -30px;
  width: 150px;
  height: 150px;
  transform: rotate(25deg);
}

/* Wrench Graphics */
.wrench-graphic {
  position: absolute;
  opacity: 0.06;
  color: var(--orange);
}

.wrench-1 {
  bottom: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  transform: rotate(45deg);
}

.wrench-2 {
  top: 20%;
  left: 3%;
  width: 100px;
  height: 100px;
  transform: rotate(-30deg);
}

/* Faucet Graphic */
.faucet-graphic {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 180px;
  height: 180px;
  opacity: 0.07;
  color: var(--blue);
  transform: rotate(-10deg);
}

/* Water Stream Animation */
.water-stream {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 100px;
  height: 200px;
  opacity: 0.1;
}

.water-stream svg {
  width: 100%;
  height: 100%;
}

.stream-drop {
  animation: drip 2s ease-in infinite;
  opacity: 0;
}

.stream-drop:nth-child(2) { animation-delay: 0.4s; }
.stream-drop:nth-child(3) { animation-delay: 0.8s; }
.stream-drop:nth-child(4) { animation-delay: 1.2s; }
.stream-drop:nth-child(5) { animation-delay: 1.6s; }

@keyframes drip {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(150px); }
}

/* Bubbles */
.bubbles {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 150px;
  height: 150px;
}

.bubble {
  position: absolute;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.1;
  animation: rise 4s ease-in infinite;
}

.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 20%;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 50%;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 25px;
  height: 25px;
  left: 70%;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 12px;
  height: 12px;
  left: 35%;
  animation-delay: 1.5s;
}

.bubble:nth-child(5) {
  width: 18px;
  height: 18px;
  left: 80%;
  animation-delay: 0.5s;
}

@keyframes rise {
  0% {
    opacity: 0.1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0.5);
  }
}

/* Hide some graphics on mobile for cleaner look */
@media (max-width: 768px) {
  .pipe-graphic,
  .wrench-graphic,
  .faucet-graphic,
  .water-stream,
  .bubbles {
    display: none;
  }

  .water-drop {
    opacity: 0.1;
  }

  .water-drop-1 { width: 40px; height: 40px; }
  .water-drop-3 { width: 50px; height: 50px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero h1 span {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px -10px rgba(229, 103, 10, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

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

/* Hero visual */
.hero-visual {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

/* Hero Illustration */
.hero-illustration {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.12;
  color: var(--blue);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Water ripple effect behind card */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13, 130, 190, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: ripple 4s ease-in-out infinite;
  z-index: 0;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13, 130, 190, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: ripple 4s ease-in-out infinite 1s;
  z-index: 0;
}

@keyframes ripple {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
}

.hero-card-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero-card-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: var(--radius-md);
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.hero-card-phone:hover {
  transform: scale(1.02);
}

.hero-card-phone-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-phone-icon svg {
  width: 28px;
  height: 28px;
}

.hero-card-phone-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-card-phone-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.hero-card-feature svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.hero-card-feature span {
  font-weight: 600;
  color: var(--gray-800);
}

/* ============================================
   EMERGENCY BANNER
   ============================================ */

.emergency-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.emergency-text {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.emergency-text svg {
  width: 24px;
  height: 24px;
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.emergency-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--white);
  color: var(--orange);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.emergency-phone:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: var(--section-gap) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle water pattern background */
.services::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%3Cpath d='M30 10 l4 4 a6 6 0 1 1-8 0z' fill='%230d82be' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--blue);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--blue);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-us {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-orange);
}

.why-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonial-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.testimonial-quote {
  font-size: 4rem;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--white);
  max-width: none;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.testimonial-stars svg {
  width: 24px;
  height: 24px;
  color: #fbbf24;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(229, 103, 10, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin: 0 auto 2rem;
}

.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem 3rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}

.cta-phone-big:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px -15px rgba(229, 103, 10, 0.7);
}

.cta-phone-big svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--gray-300);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer .logo-text {
  color: var(--white);
}

.footer .logo-text span {
  color: var(--gray-300);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: var(--gray-300);
  padding: 0.5rem 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-bottom p {
  color: var(--gray-200);
  font-size: 0.875rem;
}

/* ============================================
   FLOATING CALL BUTTON (Mobile)
   ============================================ */

.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #b34d08;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 10px 40px -10px rgba(179, 77, 8, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

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

.floating-call svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .floating-call {
    display: none;
  }
}

/* ============================================
   INNER PAGES - Services & Contact
   ============================================ */

.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Services page detailed cards */
.services-detailed {
  padding: var(--section-gap) 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .service-detail-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}

.service-detail-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.service-detail-content h3 {
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  margin-bottom: 1rem;
}

.service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-list span {
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Contact page */
.contact-section {
  padding: var(--section-gap) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-item-content h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-item-content a:hover {
  color: var(--orange);
}

.contact-map {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* Working hours */
.working-hours {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--gray-200);
}

.working-hours h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.working-hours h3 svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.hours-row span:first-child {
  color: var(--gray-600);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--gray-900);
}

.hours-row.emergency {
  background: rgba(229, 103, 10, 0.1);
  margin: 0 -1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.hours-row.emergency span {
  color: var(--orange);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
