  .google-section {
    background: #fff;
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .google-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .google-img {
    width: 180px;
    max-width: 40vw;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  }
  .google-text {
    flex: 1;
    min-width: 220px;
  }
  .google-text h2 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 900;
    color: #e10600;
    margin-bottom: 1rem;
  }
  .google-text p {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 0;
  }
  @media (max-width: 700px) {
    .google-content {
      flex-direction: column;
      gap: 1.2rem;
      text-align: center;
    }
    .google-img {
      width: 120px;
      max-width: 80vw;
    }
  }
  .cta-centered {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  /* --- Modern High-Impact Footer --- */
  .footer-divider {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, #e10600 0%, #1976d2 100%);
    box-shadow: 0 -2px 16px 0 #1976d2cc;
    opacity: 0.85;
  }
  .footer-main {
    background: #101217 url('assets/footer-texture.png'); /* optional faint grid texture */
    color: #e3f2fd;
    position: relative;
    padding: 3.5rem 2vw 0 2vw;
    overflow: hidden;
  }
  .footer-watermark {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-headline);
    font-size: 7rem;
    font-weight: 900;
    color: #fff1;
    letter-spacing: 18px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  .footer-brand h3 {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  .footer-desc {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
  }
  .footer-contact {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }
  .footer-icon {
    color: #e10600;
    font-size: 1.1em;
    margin-right: 0.3em;
  }
  .footer-social {
    display: none;
    gap: 0.7em;
    margin-top: 0.5em;
  }
  .footer-social-icon img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(1.2) drop-shadow(0 1px 2px #1976d2aa);
    transition: filter 0.2s, transform 0.2s;
  }
  .footer-social-icon:hover img {
    filter: none;
    transform: scale(1.12) rotate(-6deg);
  }
  .footer-links h4,
  .footer-hours h4,
  .footer-trust h4 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 900;
    color: #e10600;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li {
    margin-bottom: 0.7em;
  }
  .footer-links a {
    color: #e3f2fd;
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.2s;
  }
  .footer-links a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #e10600;
    transition: width 0.2s;
    position: absolute;
    left: 0;
    bottom: -2px;
  }
  .footer-links a:hover {
    color: #e10600;
  }
  .footer-links a:hover:after {
    width: 100%;
  }
  .footer-hours .footer-clock {
    font-size: 1.08rem;
    color: #e3f2fd;
    margin-top: 0.5em;
  }
  .footer-trust .footer-payments {
    display: flex;
    gap: 0.7em;
    margin-bottom: 0.7em;
  }
  .footer-trust .footer-payments img {
    width: 38px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.1) drop-shadow(0 1px 2px #1976d2aa);
    background: #fff2;
    border-radius: 6px;
    padding: 2px 4px;
  }
  .footer-trustline {
    font-size: 0.98rem;
    color: #b0b0b0;
    margin-top: 0.7em;
  }
  .footer-bar {
    background: #18191d;
    color: #b0b0b0;
    text-align: center;
    font-size: 1rem;
    padding: 1.1rem 0 1.1rem 0;
    margin-top: 2.2rem;
    border-top: 1px solid #222b;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  .footer-bar-links a {
    color: #e3f2fd;
    text-decoration: none;
    margin: 0 0.3em;
    font-size: 0.98rem;
    transition: color 0.2s;
  }
  .footer-bar-links a:hover {
    color: #e10600;
  }
  @media (max-width: 1100px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }
  @media (max-width: 700px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 1.2rem;
      padding-bottom: 1.2rem;
    }
    .footer-watermark {
      font-size: 2.7rem;
      top: 10px;
    }
    .footer-main {
      padding: 2rem 2vw 0 2vw;
    }
  }
  text-align: center;
.section-divider {
  width: 100%;
  text-align: center;
  font-family: var(--font-headline);
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  margin: 2.8rem 0 2.8rem 0;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  animation: fadeSlideIn 1.2s cubic-bezier(0.77,0,0.175,1) both;
  background: none;
  color: #fff;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
  text-shadow: 0 2px 12px rgba(25,118,210,0.18), 0 1px 0 #222;
}
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.google-section {
  background: #fff;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.google-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.google-img {
  width: 180px;
  max-width: 40vw;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.google-text {
  flex: 1;
  min-width: 220px;
}
.google-text h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  color: #e10600;
  margin-bottom: 1rem;
}
.google-text p {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .google-content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .google-img {
    width: 120px;
    max-width: 80vw;
  }
}
.services-slogan {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 900;
  color: #e10600;
  text-align: center;
  margin: 2.5rem auto 2.5rem auto;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 900px;
  padding: 0 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}
}
.core-services-grid.all-services {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  background: #f7f7f9;
  padding: 3.5rem 2vw 3.5rem 2vw;
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .core-services-grid.all-services {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem 0.5vw 1.2rem 0.5vw;
  }
}
.core-services-grid.double {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  background: #fff;
  padding: 2.5rem 1vw 2.5rem 1vw;
  gap: 2.5rem;
}
.core-services-grid.double .core-service-card {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
}
.core-services-grid.double .core-service-img {
  height: 220px;
  max-width: 420px;
}
@media (max-width: 900px) {
  .core-services-grid.double {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem 0.5vw 1.2rem 0.5vw;
  }
}
.core-services-grid.single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  background: #fff;
  padding: 2.5rem 1vw 2.5rem 1vw;
}
.core-services-grid.single .core-service-card {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
}
.core-services-grid.single .core-service-img {
  height: 220px;
  max-width: 420px;
}
/* --- Modern Service Sections --- */
.section-title {
  font-family: var(--font-headline);
  font-size: 2.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #222;
  margin-bottom: 2.2rem;
  text-align: center;
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  background: #f7f7f9;
  padding: 3.5rem 2vw 3.5rem 2vw;
  border-radius: 18px;
  margin-bottom: 3.5rem;
}
.core-service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.core-service-card:hover {
  box-shadow: 0 6px 32px rgba(200,0,0,0.13);
  transform: translateY(-6px) scale(1.03);
}
.core-service-img {
  width: 100%;
  height: 220px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.core-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #eee;
}
.core-service-card h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b80000;
  margin: 0 0 0.7rem 0;
}
.core-service-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.core-service-card .btn-red {
  margin-top: auto;
  background: #e10600;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.7em 1.7em;
  transition: background 0.2s;
}
.core-service-card .btn-red:hover {
  background: #b80000;
}

/* --- Commercial & Specialized Section --- */
.services-alt {
  background: #fff;
  padding: 0 0 3.5rem 0;
}
.services-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.services-row.reverse {
  flex-direction: row-reverse;
}
.services-img-col {
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-img-col img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.10);
  object-fit: cover;
}
.services-text-col {
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 520px;
  padding: 2.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.services-text-col h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #b80000;
  margin-bottom: 1.1rem;
}
.services-text-col p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.2rem;
}
.services-text-col .btn-red {
  background: #e10600;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.7em 1.7em;
  transition: background 0.2s;
}
.services-text-col .btn-red:hover {
  background: #b80000;
}

@media (max-width: 1100px) {
  .core-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-row {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .services-row.reverse {
    flex-direction: column;
  }
  .services-img-col, .services-text-col {
    max-width: 100%;
    min-width: 0;
    padding: 0.5rem 0;
  }
}
/* Divider text between sections */
.section-divider {
  width: 100%;
  text-align: center;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue-light);
  margin: 2.5rem 0 2.5rem 0;
  letter-spacing: 1px;
}
/* Imagen de la sección About */
.about-photo {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--accent-blue);
  box-shadow: 0 2px 12px rgba(25,118,210,0.15);
  background: #16202a;
}

/* Testimonial Section */
.testimonial {
  background: var(--secondary-bg);
  color: var(--text-main);
  padding: 3rem 1.5rem;
  text-align: center;
}
.testimonial h2 {
  font-family: var(--font-headline);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-blue-light);
  margin-bottom: 1.5rem;
}
.testimonial blockquote {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
  font-style: italic;
  background: rgba(10,12,18,0.7);
  border-left: 5px solid var(--accent-blue);
  padding: 1.5rem 1.2rem;
  border-radius: 12px;
}
.testimonial-author {
  font-weight: bold;
  color: var(--accent-blue);
  font-size: 1.1rem;
}
/*
  ORTIZ ELECTRIC LLC Website Styles
  Bold, modern, industrial, premium, dark theme with red accents
*/

:root {
  --primary-bg: #0a0c12; /* negro azulado */
  --secondary-bg: #131a24; /* azul oscuro */
  --accent-blue: #1976d2; /* azul principal */
  --accent-blue-hover: #0d47a1; /* azul más oscuro */
  --accent-blue-light: #64b5f6; /* azul claro */
  --text-main: #e3f2fd; /* azul muy claro casi blanco */
  --text-muted: #90a4ae; /* azul grisáceo */
  --overlay-black: rgba(0,0,0,0.55);
  --font-headline: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--primary-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100%;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-bg);
  padding: 0 2rem;
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.logo {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-blue);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}
.nav-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0;
  letter-spacing: 1px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-menu a:hover {
  color: var(--accent-blue);
}
.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8em 2em;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}
.btn-red {
  background: var(--accent-blue);
  color: #fff;
  border: none;
}
.btn-red:hover {
  background: var(--accent-blue-hover);
}
.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}
.btn-outline:hover {
  background: var(--accent-blue);
  color: #fff;
}
.nav-call {
  margin-left: 2rem;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--overlay-black);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}
.hero-content h1 {
  font-family: var(--font-headline);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services {
  background: var(--secondary-bg);
  padding: 5rem 1.5rem 4rem 1.5rem;
  text-align: center;
}
.services h2 {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}
.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
  background: #16202a;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
}
.service-icon {
  font-size: 6rem;
  margin-bottom: 1.2rem;
  color: var(--accent-blue-light);
}
.service-card h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.about {
  background: var(--primary-bg);
  padding: 5rem 1.5rem 4rem 1.5rem;
}
.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-image {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder {
  width: 320px;
  height: 220px;
  background: #23242a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2rem;
  font-style: italic;
  border: 2px dashed #444;
}
.about-text {
  flex: 2 1 400px;
  min-width: 280px;
}
.about-text h2 {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.about-text p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}
.contact-info {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 1rem;
}
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
}
.contact-info a:hover {
  text-decoration: underline;
}

  background: var(--accent-blue);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem 1.5rem;
}
.cta h2 {
  font-family: var(--font-headline);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center !important;
}

.footer {
  background: #18191d;
  color: #888;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-content, .service-cards {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .about-image, .about-text {
    min-width: 0;
  }
  .nav-menu {
    gap: 1.2rem;
    justify-content: center;
  }
}
@media (max-width: 700px) {
    .hero-bg {
      left: 50%;
      transform: translateX(-50%);
      min-width: 100vw;
      min-height: 100vh;
      object-fit: cover;
      object-position: center;
    }
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 0;
  }
  .nav-call {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .cta h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .services h2, .about-text h2 {
    font-size: 1.1rem;
  }
  .cta h2 {
    font-size: 1rem;
  }
  .service-card {
    min-width: 140px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .image-placeholder {
    width: 100%;
    height: 120px;
    font-size: 0.9rem;
  }
}
