/* ==========================================================================
   CSS VARIABILE (CSS CUSTOM PROPERTIES)
   ========================================================================== */

:root {
  /* Culori Principale */
  --primary-blue: #2563eb;
  --primary-cyan: #06b6d4;
  --primary-dark-blue: #1e40af;

  /* Culori Neutre */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --dark-gray: #334155;
  --text-dark: #0f172a;

  /* Culori de Accent */
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --error-red: #ef4444;

  /* Shadow și Efecte */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Fonturi */
  --font-primary: "Roboto", sans-serif; /* Pentru headings (h1-h6, logo, butoane) - Bold */
  --font-secondary: "Inter", sans-serif; /* Pentru body text (paragraphs, links) - Regular */
  --font-accent: "Inter", sans-serif; /* Pentru elemente speciale */

  /* Tranziții */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-secondary); /* Inter */
  font-weight: 400; /* Regular */
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive Container */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary); /* Roboto */
  font-weight: 700; /* Bold */
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700; /* Bold */
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Responsive Typography */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-primary {
  color: var(--primary-blue);
}

.text-cyan {
  color: var(--primary-cyan);
}

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

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

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

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary); /* Roboto */
  font-size: 1rem;
  font-weight: 700; /* Bold */
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Button Sizes */
@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: static;
  background-color: var(--white);
  transition: var(--transition);
}

/* Top Banner */
.top-banner {
  background-color: #d1e7dd;
  padding: 0.5rem 0;
  border-bottom: 1px solid #a3cfbb;
}

.banner-text {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.4;
}

/* Header Principal (Compact) */
.header-main {
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 0.75rem 0;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo (Compact) */
.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-primary); /* Roboto */
  font-size: 1rem;
  font-weight: 700; /* Bold */
  transition: var(--transition);
}

.logo a:hover {
  color: var(--primary-blue);
}

.logo-image {
  height: 100px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-line1,
.logo-line2 {
  font-family: var(--font-primary); /* Roboto Bold */
  font-weight: 700; /* Bold */
  display: block;
}

.logo-line1 {
  font-size: 1.6rem;
  color: #dc2626; /* Red */
  margin-bottom: -1px;
  letter-spacing: 0.3px;
}

.logo-line2 {
  font-size: 1.6rem;
  color: var(--primary-blue); /* Blue palette color */
  letter-spacing: 0.3px;
}

/* Contact Info */
.header-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: var(--transition);
  background-color: #2563eb;
  padding: 10px 18px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.contact-email i {
  color: var(--white);
}

.contact-phone {
  background-color: #2563eb !important;
  border-radius: 0 !important;
}

.contact-phone i {
  color: var(--white);
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-label {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  line-height: 1;
}

.contact-name {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  line-height: 1;
}

.contact-item:hover {
  background-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transform: none;
}

.contact-item:hover .contact-value {
  color: var(--white);
}

.contact-item:hover i {
  transform: none;
}

/* Mobile contact adjustments */
@media (max-width: 767px) {
  .header-main-content {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .logo-image {
    height: 60px;
  }

  .logo-line1,
  .logo-line2 {
    font-size: 1.6rem;
  }

  .header-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-item {
    gap: 8px;
    padding: 8px 14px;
    border-radius: 0;
  }

  .contact-item i {
    font-size: 1.1rem;
    align-self: center;
  }

  .contact-label {
    font-size: 0.65rem;
  }

  .contact-value {
    font-size: 0.95rem;
    font-weight: 900;
  }

  .contact-name {
    font-size: 0.95rem;
    margin-top: 1px;
  }
}

/* Services Navigation (Compact Subheader) */
.services-nav {
  background-color: var(--white);
  padding: 0.9rem 0; /* Match header compact vertical spacing */
  border-bottom: 1px solid #e2e8f0; /* Subtle light blue-gray separator */
}

.services-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px; /* Comfortable 12px spacing between icon and text */
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px; /* Refined padding for better touch target */
  border-radius: var(--radius-lg);
  transition: var(--transition);
  z-index: 10000;
  position: relative;
  font-family: var(--font-primary);
  font-weight: 600; /* Slightly reduced for better balance */
  color: var(--text-dark);
  min-height: 48px; /* Ensure proper touch target size */
}

.mobile-menu-toggle:hover {
  background-color: rgba(
    37,
    99,
    235,
    0.08
  ); /* Subtle blue background on hover */
  color: var(--primary-blue);
  transform: translateY(-1px); /* Subtle lift effect */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center; /* Center the hamburger lines */
}

.hamburger-line {
  width: 28px;
  height: 3.5px;
  background-color: currentColor;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger-text {
  font-size: 1.1rem;
  white-space: nowrap;
  font-weight: 600; /* Matches button weight for consistency */
  letter-spacing: 0.025em; /* Subtle letter spacing for readability */
}

/* Hide text on very small screens */
@media (max-width: 320px) {
  .hamburger-text {
    display: none;
  }

  .mobile-menu-toggle {
    padding: 12px;
    gap: 0;
    min-width: 48px; /* Maintain square touch target */
  }

  .hamburger-line {
    width: 30px;
    height: 4px;
  }
}

/* Hide hamburger button when menu is active (it will be replaced by close button) */
.mobile-menu-toggle.active {
  display: none;
}

/* Mobile Menu Close Button */
.menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10000;
}

.menu-close-btn:hover {
  background-color: var(--light-gray);
}

.menu-close-btn i {
  font-size: 24px;
  color: var(--text-dark);
  transition: var(--transition);
}

.menu-close-btn:hover i {
  color: var(--primary-blue);
  transform: scale(1.1);
}

/* Mobile Off-Canvas Menu */
.services-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 9999;
  padding: 0;
  padding-top: 60px;
  overflow-y: auto;
  border-top: 1px solid var(--primary-blue);
}

.services-menu.active {
  display: flex;
}

.service-item {
  margin: 0;
  border-bottom: 1px solid #eee;
}

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

.service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-secondary); /* Inter */
  font-weight: 500; /* Medium */
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  background-color: transparent;
  min-height: 70px;
}

.service-link:hover,
.service-link:active {
  background-color: var(--light-gray);
  color: var(--primary-blue);
}

.service-link:hover .service-icon,
.service-link:active .service-icon {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
    hue-rotate(214deg) brightness(91%) contrast(87%);
}

/* Mobile Service Icons - Larger and Colored */
.service-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition);
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
    hue-rotate(214deg) brightness(91%) contrast(87%);
}

.service-link span {
  flex: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Main Content */
.main-content {
  position: relative;
}

/* Responsive Navigation (Compact) */
@media (min-width: 768px) {
  .header-main {
    padding: 1rem 0;
  }

  .logo-image {
    height: 100px;
  }

  .logo-line1,
  .logo-line2 {
    font-size: 2rem;
  }

  .contact-item {
    padding: 12px 20px;
    gap: 10px;
  }

  .contact-item i {
    font-size: 1.4rem;
  }

  .contact-value {
    font-size: 1.25rem;
  }

  .services-nav {
    padding: 0.6rem 0;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .menu-close-btn {
    display: none;
  }

  .services-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    z-index: auto;
    overflow-y: visible;
  }

  .service-item {
    border-bottom: none;
  }

  .service-link {
    flex-direction: row;
    align-items: center;
    padding: 0.4rem 0.6rem;
    gap: 0.4rem;
    min-width: 130px;
    text-align: left;
    font-size: 0.55rem;
    background-color: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: 0;
    box-shadow: none;
    line-height: 1.2;
    min-height: auto;
    font-weight: 500;
  }

  .service-link:hover {
    border-color: var(--primary-blue);
    background-color: var(--light-gray);
  }

  .service-icon {
    width: 14px;
    height: 14px;
    filter: none;
  }

  .service-link:hover .service-icon {
    transform: none;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
      hue-rotate(214deg) brightness(91%) contrast(87%);
  }
}

@media (min-width: 1024px) {
  .header-main {
    padding: 1.2rem 0;
  }

  .logo-image {
    height: 120px;
  }

  .logo-line1,
  .logo-line2 {
    font-size: 2.2rem;
  }

  .contact-item {
    padding: 14px 22px;
    gap: 12px;
    border-radius: 0;
  }

  .contact-item i {
    font-size: 1.5rem;
  }

  .contact-value {
    font-size: 1.35rem;
  }

  .services-nav {
    padding: 0.7rem 0;
  }

  .services-menu {
    gap: 1.5rem;
  }

  .service-link {
    min-width: 140px;
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .service-icon {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 1280px) {
  .logo-image {
    height: 140px;
  }

  .logo-line1,
  .logo-line2 {
    font-size: 2.8rem;
    letter-spacing: 0.4px;
  }

  .services-menu {
    gap: 1.8rem;
  }

  .service-link {
    min-width: 160px;
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  background: linear-gradient(
    135deg,
    #003d5c 0%,
    #00698f 50%,
    var(--primary-cyan) 100%
  );
  padding: 2.5rem 0 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* Coloana 1: Mesaj Principal */
.hero-message {
  color: var(--white);
  text-align: left;
}

.hero-main-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-slogan {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.hero-benefits {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
}

.hero-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--white) !important;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.hero-benefits .benefit-item span {
  color: var(--white) !important;
}

.hero-benefits .benefit-item:hover {
  background-color: transparent;
  transform: none;
  box-shadow: none;
  cursor: default;
}

.hero-benefits .benefit-item:last-child {
  margin-bottom: 0;
}

.hero-benefits .benefit-item i {
  color: var(--success-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  background-color: var(--error-red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary-cta:hover {
  background-color: var(--primary-blue);
}

/* Coloana 2: Imagine Tehnician */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  order: 3;
  margin-bottom: 0;
}

.technician-img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Coloana 3: Contact CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  order: 2;
}

.cta-card {
  background: linear-gradient(135deg, var(--warning-orange) 0%, #f59e0b 100%);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 320px;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.phone-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.btn-primary-cta:hover {
  background-color: var(--primary-dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary-cta i {
  font-size: 1.1rem;
}

/* Hero Section Responsive */
@media (min-width: 768px) {
  .hero-section {
    padding: 3.5rem 0 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-message {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-slogan {
    font-size: 1.15rem;
  }

  .benefit-item {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem 0 0 0;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-slogan {
    font-size: 1.25rem;
  }

  .benefit-item {
    font-size: 1.1rem;
  }

  .technician-img {
    max-height: 450px;
  }
}

@media (min-width: 1280px) {
  .hero-main-title {
    font-size: 3.5rem;
  }

  .hero-slogan {
    font-size: 1.35rem;
  }

  .benefit-item {
    font-size: 1.15rem;
  }

  .technician-img {
    max-height: 500px;
  }
}

.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-item span {
  font-weight: 600;
  color: var(--text-dark);
}

/* Hero Responsive */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
    min-height: 80vh;
  }

  .hero-container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .feature-item {
    flex-direction: row;
    text-align: left;
    padding: 2rem;
  }

  .feature-item i {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 0 3rem;
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */

.why-us-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image Column */
.why-us-image {
  width: 100%;
  order: 1;
}

.why-us-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Content Column */
.why-us-content {
  order: 2;
}

.why-us-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

/* Benefits List */
.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--light-gray);
  border-radius: 0;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  border-radius: 0;
}

.benefit-info {
  flex: 1;
}

.benefit-label {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--medium-gray);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.benefit-value {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

/* CTA Button */
.btn-why-us-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  margin-top: 1.5rem;
  background-color: var(--error-red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-why-us-cta:hover {
  background-color: var(--primary-blue);
}

/* Responsive Why Us Section */
@media (min-width: 768px) {
  .why-us-section {
    padding: 5rem 0;
  }

  .why-us-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }

  .why-us-image {
    order: 1;
  }

  .why-us-content {
    order: 2;
  }

  .why-us-title {
    font-size: 2rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .benefit-value {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .why-us-section {
    padding: 6rem 0;
  }

  .why-us-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
  }

  .why-us-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .benefit-label {
    font-size: 0.75rem;
  }

  .benefit-value {
    font-size: 1rem;
  }
}

@media (min-width: 1280px) {
  .why-us-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   TRUST SIGNAL STRIP
   ========================================================================== */

.trust-strip {
  background-color: #f5f5f5;
  padding: 1.75rem 0 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.trust-icon {
  font-size: 2rem;
  color: var(--primary-blue);
}

.trust-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Responsive Trust Strip */
@media (min-width: 768px) {
  .trust-strip {
    padding: 2rem 0 3rem 0;
  }

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

  .trust-icon {
    font-size: 2.25rem;
  }

  .trust-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    padding: 2.5rem 0 3.5rem 0;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-item {
    flex-direction: row;
    gap: 1rem;
    padding: 0 1.5rem;
    border-right: 1px solid #d1d5db;
  }

  .trust-item:last-child {
    border-right: none;
  }

  .trust-icon {
    font-size: 2rem;
  }

  .trust-text {
    font-size: 0.875rem;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .trust-icon {
    font-size: 2.25rem;
  }

  .trust-text {
    font-size: 0.95rem;
  }
}

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

.services-cards-section {
  background-color: var(--light-gray);
  padding: 4rem 0;
}

/* Section Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-pretitle {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.services-pretitle::before,
.services-pretitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--medium-gray);
}

.services-main-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.services-subtitle {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Service Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card-item {
  background-color: var(--white);
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  text-align: center;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0;
  display: block;
}

.service-card-title {
  padding: 0 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.service-card-btn {
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Card */
.service-cta-card {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-cyan) 100%
  );
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 2rem 1.5rem;
}

.service-cta-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-cta-description {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-cta-btn {
  background-color: var(--white);
  color: var(--primary-blue);
  font-weight: 700;
}

/* Responsive Services Section */
@media (min-width: 768px) {
  .services-cards-section {
    padding: 5rem 0;
  }

  .services-header {
    margin-bottom: 4rem;
  }

  .services-pretitle {
    font-size: 0.95rem;
    gap: 1.25rem;
  }

  .services-pretitle::before,
  .services-pretitle::after {
    width: 50px;
  }

  .services-main-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1.125rem;
  }

  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card-item {
    padding: 2.5rem 2rem;
  }

  .service-card-image {
    width: 100%;
    height: 220px;
  }

  .service-card-title {
    font-size: 1.35rem;
  }

  .service-card-description {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .services-cards-section {
    padding: 6rem 0;
  }

  .services-pretitle {
    font-size: 0.875rem;
  }

  .services-main-title {
    font-size: 1.75rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .service-card-item {
    padding: 2.5rem 2rem;
  }

  .service-card-image {
    width: 100%;
    height: 240px;
    margin-bottom: 1.5rem;
  }

  .service-card-title {
    font-size: 1.15rem;
  }

  .service-card-description {
    font-size: 0.95rem;
  }
}

@media (min-width: 1280px) {
  .services-main-title {
    font-size: 2rem;
  }

  .services-cards-grid {
    gap: 2.5rem;
  }

  .service-card-item {
    padding: 3rem 2.5rem;
  }

  .service-card-image {
    width: 100%;
    height: 260px;
  }

  .service-card-title {
    font-size: 1.25rem;
  }

  .service-card-description {
    font-size: 1rem;
  }
}

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

.cta-section {
  background-image: url("../images/plumberworking.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 300px;
}

.cta-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  padding: 3rem 0;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Left Visual Strip */
.cta-strip {
  display: none;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-cyan) 100%
  );
  width: 200px;
  min-height: 250px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: skewY(-5deg);
}

.cta-strip-icon {
  font-size: 4rem;
  color: var(--white);
  z-index: 1;
  position: relative;
}

/* Right Content Block */
.cta-content {
  flex: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-description {
  font-family: var(--font-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--error-red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.cta-button:hover {
  background-color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Responsive CTA Section */
@media (min-width: 768px) {
  .cta-section {
    min-height: 350px;
  }

  .cta-overlay {
    padding: 4rem 0;
  }

  .cta-container {
    padding: 0 2rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-description {
    font-size: 1.25rem;
  }

  .cta-button {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    min-height: 250px;
  }

  .cta-overlay {
    padding: 2.5rem 0;
  }

  .cta-container {
    padding: 0 3rem;
  }

  .cta-strip {
    display: flex;
  }

  .cta-content {
    text-align: left;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1280px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .cta-strip {
    width: 200px;
    min-height: 240px;
  }

  .cta-strip-icon {
    font-size: 3.5rem;
  }
}

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

.services {
  padding: 4rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

/* Services Responsive */
@media (min-width: 768px) {
  .services {
    padding: 6rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

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

  .service-card {
    padding: 2.5rem;
  }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.about-description {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.about-features {
  display: grid;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: var(--success-green);
  font-size: 1.25rem;
}

.feature span {
  color: var(--dark-gray);
}

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* About Responsive */
@media (min-width: 768px) {
  .about {
    padding: 6rem 0;
  }

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

  .about-content {
    text-align: left;
  }

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

@media (min-width: 1024px) {
  .about-stats {
    gap: 3rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */

.projects {
  padding: 4rem 0;
  background-color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  transform: translateY(60%);
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Projects Responsive */
@media (min-width: 768px) {
  .projects {
    padding: 6rem 0;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .project-card img {
    height: 300px;
  }
}

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

  .project-card img {
    height: 250px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark-gray);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.testimonial-rating {
  color: var(--warning-orange);
}

/* Testimonials Responsive */
@media (min-width: 768px) {
  .testimonials {
    padding: 6rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact {
  padding: 4rem 0;
  background-color: var(--white);
}

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

/* Contact Info */
.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-item:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--medium-gray);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-dark-blue);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition);
  min-height: 44px;
}

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

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

/* Contact Responsive */
@media (min-width: 768px) {
  .contact {
    padding: 6rem 0;
  }

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

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

  .contact-form {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.footer {
  background-color: var(--text-dark);
  padding: 2rem 0;
}

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

.footer-text {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

.footer-credit {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--medium-gray);
  margin: 0.5rem 0 0 0;
  line-height: 1.6;
}

.footer-credit a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Responsive Footer */
@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 0;
  }

  .footer-text {
    font-size: 0.95rem;
  }

  .footer-credit {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   FOOTER (OLD)
   ========================================================================== */

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 1.5rem;
  color: var(--primary-cyan);
}

.footer-logo span {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-cyan);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact i {
  color: var(--primary-cyan);
  width: 16px;
}

.footer-contact a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-cyan);
}

/* Footer Responsive */
@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

/* ==========================================================================
   ANIMATIONS & INTERACTIONS
   ========================================================================== */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ==========================================================================
   ACCESSIBILITY & FOCUS STATES
   ========================================================================== */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 2000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */

/* Service Page Hero Section */
.service-page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/herobanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.service-page-header {
  text-align: center;
}

/* Page-specific hero backgrounds */
.hero-incalzire {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/heatingsystempage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-water {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/watersystempaeg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-sanitare {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/canalizareservice.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-comercial {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/comercialprojects.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
}

.back-link i {
  font-size: 0.875rem;
}

.service-page-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

/* Service Page Content Section */
.service-page-content {
  padding: 4rem 0;
  background-color: var(--white);
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* Service Image */
.service-page-image {
  width: 100%;
}

.service-detail-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 500px;
}

/* Service Text Content */
.service-page-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-section-title {
  font-family: var(--font-primary);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.service-paragraph {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin: 0;
}

.service-subsection-title {
  font-family: var(--font-primary);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1rem 0;
}

/* Service Features List */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.service-feature-item:hover {
  background-color: #e8f4f8;
  transform: translateX(5px);
}

.service-feature-item i {
  color: var(--success-green);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-feature-item:nth-child(odd) i {
  color: var(--primary-cyan);
}

/* Service CTA Box */
.service-cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-cyan) 100%
  );
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-top: 1rem;
}

.cta-box-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.cta-box-text {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.95;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary-blue);
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cta-button:hover {
  background-color: var(--warning-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-cta-button i {
  font-size: 1.125rem;
}

/* ==========================================================================
   SERVICE DETAIL CONTENT SECTION
   ========================================================================== */

.service-detail-section {
  padding: 4rem 0;
  background-color: var(--white);
}

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

/* Left Column - Content */
.service-detail-content {
  width: 100%;
}

.content-block {
  margin-bottom: 3rem;
}

.content-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.content-subtitle {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 1.5rem 0;
}

.content-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
}

.content-text:last-child {
  margin-bottom: 0;
}

/* Service List */
.service-list {
  list-style: disc;
  padding: 0;
  margin: 1.5rem 0 0 0;
  padding-left: 1.5rem;
}

.service-list li {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--medium-gray);
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-list li::marker {
  color: var(--primary-blue);
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* Service CTA Button */
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: var(--error-red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.service-cta-btn:hover {
  background-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: none;
}

.service-cta-btn i {
  font-size: 1.125rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 0;
  transition: none;
}

.step-item:hover {
  background-color: var(--light-gray);
  transform: none;
  box-shadow: none;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-cyan) 100%
  );
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 0.5rem 0;
}

.step-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin: 0;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.benefit-item:hover {
  background-color: #e8f4f8;
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  /* color: var(--primary-cyan); */
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Right Column - Sidebar */
.service-detail-sidebar {
  width: 100%;
}

/* Sticky Contact Widget */
.sticky-contact-widget {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-cyan) 100%
  );
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.widget-title {
  font-family: var(--font-primary);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
  text-align: center;
}

.widget-text {
  font-size: 0.9375rem;
  color: var(--white);
  opacity: 0.95;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  text-align: center;
}

.widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  margin-bottom: 1rem;
}

.widget-btn:last-child {
  margin-bottom: 0;
}

.widget-btn-primary {
  background-color: var(--white);
  color: var(--primary-blue);
}

.widget-btn-primary:hover {
  background-color: var(--warning-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.widget-btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.widget-btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Quick Navigation Widget */
.quick-nav-widget {
  background-color: var(--white);
  padding: 0;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.quick-nav-widget .widget-title {
  background-color: var(--light-gray);
  padding: 1rem 1.25rem;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #e5e7eb;
}

.quick-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-nav-item {
  margin-bottom: 0;
  border-bottom: 1px solid #e5e7eb;
}

.quick-nav-item:last-child {
  border-bottom: none;
}

.quick-nav-item a {
  display: block;
  padding: 1rem 1.25rem;
  background-color: var(--white);
  color: var(--dark-gray);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 0;
  transition: var(--transition);
  border-left: 0;
  line-height: 1.5;
}

.quick-nav-item a:hover {
  background-color: var(--light-gray);
  color: var(--text-dark);
  transform: none;
}

.quick-nav-item.active a {
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 500;
}

/* Service Page Responsive */
@media (min-width: 768px) {
  .service-page-hero {
    padding: 6rem 0 5rem;
  }

  .service-page-title {
    font-size: 2.5rem;
  }

  .service-page-content {
    padding: 5rem 0;
  }

  .service-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .service-section-title {
    font-size: 2.25rem;
  }

  .service-paragraph {
    font-size: 1.125rem;
  }

  .service-features-list {
    gap: 1.25rem;
  }

  .service-feature-item {
    padding: 1rem;
  }

  .service-cta-box {
    padding: 2.5rem;
  }

  .cta-box-title {
    font-size: 1.75rem;
  }

  /* Service Detail Section Responsive */
  .service-detail-section {
    padding: 5rem 0;
  }

  .service-detail-grid {
    grid-template-columns: 65% 35%;
    gap: 4rem;
    align-items: start;
  }

  .content-title {
    font-size: 2rem;
  }

  .content-subtitle {
    font-size: 1.625rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .service-page-hero {
    padding: 8rem 0 7rem;
  }

  .service-page-title {
    font-size: 3rem;
  }

  .service-page-grid {
    gap: 5rem;
  }

  .service-detail-img {
    max-height: 600px;
  }

  .service-section-title {
    font-size: 2.5rem;
  }

  /* Service Detail Section Desktop */
  .service-detail-section {
    padding: 6rem 0;
  }

  .content-title {
    font-size: 2.25rem;
  }

  .content-subtitle {
    font-size: 1.75rem;
  }

  /* Sticky Sidebar on Desktop */
  .sticky-contact-widget {
    position: sticky;
    top: 2rem;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .header,
  .nav-toggle,
  .hero-buttons,
  .contact-form,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
  }

  .main {
    padding-top: 0;
  }

  .section-title {
    page-break-after: avoid;
  }
}
