:root {
  --primary-color: #003571;
  --primary-dark: #002a5a;
  --secondary-color: #b48a47;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #ffffff;
  --gray-light: #f8f8f8;
  --gray-lighter: #fafafa;
  --border-color: #e5e5e5;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

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

/* Hide WordPress admin bar */
#wpadminbar {
  display: none !important;
}

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global text justify for all list items */
li {
  text-align: justify;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

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

/* Premium CTA Button Style */
.btn-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  width: max-content;
  align-items: center;
  text-align: center;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  background: color-mix(in srgb, var(--primary-color) 85%, white);
  color: var(--white);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Header Phone Button */
.header-phone {
  display: flex;
  align-items: center;
}

.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phone-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.phone-btn:hover {
  background: color-mix(in srgb, var(--secondary-color) 85%, black);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.4);
}

.phone-btn:hover::before {
  width: 100%;
  height: 100%;
}

.phone-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

/* Pulse animation for phone button */
@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(180, 138, 71, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(180, 138, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(180, 138, 71, 0);
  }
}

.phone-btn {
  animation: phone-pulse 2s infinite;
}

.phone-btn:hover {
  animation: none;
}

/* Header Calculator */
.header-calculator {
  display: flex;
  align-items: center;
}

.calculator-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none;
  gap: 6px;
  padding: 0 8px;
}

.calculator-btn:hover {
  background: color-mix(in srgb, var(--secondary-color) 90%, black);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.4);
  text-decoration: none;
}

.calculator-icon {
  display: flex;
  align-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.calculator-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Solar Calculator Page Styles */
.calculator-header-section {
  padding: 80px 0 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    color-mix(in srgb, var(--primary-color) 85%, black)
  );
  color: var(--white);
  text-align: center;
}

.calculator-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white) !important;
}

.calculator-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.5;
}

.calculator-iframe-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.calculator-iframe-wrapper {
  max-width: 1200px;
  max-height: 1550px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.calculator-iframe-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

.calculator-fallback {
  padding: 40px;
  text-align: center;
  background: var(--light-gray);
  border-radius: 10px;
}

.calculator-fallback a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: underline;
}

.calculator-content-section {
  padding: 60px 0;
}

.calculator-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .calculator-header-section {
    padding: 60px 0 40px;
  }

  .calculator-title {
    font-size: 2.2rem;
  }

  .calculator-description {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .calculator-iframe-section {
    padding: 60px 0;
  }

  .calculator-iframe-wrapper {
    margin: 0 15px;
    border-radius: 10px;
    padding: 20px;
  }

  .calculator-iframe-wrapper iframe {
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  .calculator-title {
    font-size: 1.8rem;
  }

  .calculator-iframe-wrapper iframe {
    min-height: 360px;
  }
}
.header-search-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta .btn-cta {
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 20px;
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(180, 138, 71, 0.3);
}

.header-cta .btn-cta:hover {
  background: color-mix(in srgb, var(--secondary-color) 90%, black);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.4);
}

/* CTA Button with Icon Support */
.btn-cta .btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon {
  transform: translateX(2px);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--secondary-color) 90%, black);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Header Styles */
.header-announcement {
  background: var(--primary-color);
  color: var(--text-dark);
  text-align: center;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.header-announcement a {
  color: var(--text-dark);
  text-decoration: none;
}

.header-announcement a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--primary-color);
  position: relative;
  z-index: 1000;
}

body {
  overflow-x: hidden;
}

.header-top {
  background: var(--gray-light);
  padding: 8px 0;
  font-size: 0.875rem;
  max-height: 100px;
  overflow: hidden;
}

.header-main {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: var(--primary-color);
  box-shadow: var(--shadow-sm);
  z-index: 1001;
  width: 100%;
}

.header-main.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  box-shadow: var(--shadow-md);
}

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

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-color);
}

.contact-info a {
  color: var(--text-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 53, 113, 0.4);
  border-color: var(--primary-color);
}

.social-links a:hover::before {
  transform: scale(1);
}

.social-icon {
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.social-links a:hover .social-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1) rotate(5deg);
}

.social-links a:active {
  transform: translateY(-1px) scale(1.02);
}

.social-facebook {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

.social-linkedin {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>');
}

.social-instagram {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zM5.838 12a6.162 6.162 0 1 1 12.324 0 6.162 6.162 0 0 1-12.324 0zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm4.965-10.405a1.44 1.44 0 1 1 2.881.001 1.44 1.44 0 0 1-2.881-.001z"/></svg>');
}

.social-youtube {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>');
}

.social-twitter {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/></svg>');
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher a {
  color: var(--text-dark);
  font-weight: 500;
}

.language-switcher .current-lang {
  color: var(--primary-color);
}

.language-switcher .separator {
  color: var(--text-lighter);
}

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

.site-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Logo Sizing */
.site-logo {
  max-height: 45px;
  width: auto;
  max-width: 200px;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  max-width: 180px;
}

.site-branding img {
  max-height: 45px;
  width: auto;
  max-width: 200px;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
  max-width: 180px;
}

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

.brand-text {
  color: var(--text-dark);
}

.brand-highlight {
  color: var(--primary-color);
}

.nav-menu-wrapper {
  display: flex;
  /* justify-content: center; */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  padding: 8px 0;
  display: block;
  position: relative;
  transition: var(--transition);
}

/* Underline effect only for non-parent menu items */
.nav-menu > li:not(.menu-item-has-children) > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu > li:not(.menu-item-has-children) > a:hover::after {
  width: 100%;
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
  color: var(--secondary-color);
}

.nav-menu > li.current-menu-item:not(.menu-item-has-children) > a::after,
.nav-menu > li.current_page_item:not(.menu-item-has-children) > a::after {
  width: 100%;
}

/* Dropdown arrow for parent menu items */
.nav-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu .menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  width: auto;
  height: auto;
  border: none;
  background: none;
  position: relative;
  bottom: auto;
  left: auto;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-40%) translateY(-10px);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0, 53, 113, 0.15);
  border-radius: 16px;
  min-width: 280px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  border: 1px solid rgba(0, 53, 113, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(0);
}

.nav-menu .sub-menu li {
  margin: 0;
  position: relative;
}

.nav-menu .sub-menu a {
  padding: 10px 20px 10px 20px;
  margin: 0 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}

.nav-menu .sub-menu a::after {
  display: none;
}

.nav-menu .sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu .sub-menu a:hover {
  color: var(--primary-color);
  background: rgba(0, 53, 113, 0.05);
  font-weight: 500;
  transform: translateX(5px);
}

.nav-menu .sub-menu a:hover::before {
  transform: scaleY(1);
}

.nav-menu .sub-menu li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* Footer Styles */
.site-footer {
  background: var(--primary-color);
  color: var(--white);
  margin: 16px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(253, 185, 19, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.footer-main {
  padding: 80px 0 50px;
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: grid;
  gap: 50px;
}

/* 3 columns when footer menu exists */
.footer-columns:has(.footer-menu) {
  grid-template-columns: 2fr 1fr 1.5fr;
}

/* 2 columns when no footer menu */
.footer-columns:not(:has(.footer-menu)) {
  grid-template-columns: 2fr 1.5fr;
}

/* Fallback for browsers that don't support :has() */
@supports not (selector(:has(*))) {
  .footer-columns {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.footer-column {
  position: relative;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  animation: titleUnderline 0.8s ease-out;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: footerFloat 6s ease-in-out infinite;
}

.footer-logo {
  margin-bottom: 25px;
  display: block;
}

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

.footer-brand .brand-highlight {
  color: var(--secondary-color);
  position: relative;
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.3);
}

.social-link:hover .social-icon {
  filter: brightness(0);
}

.footer-social .social-icon {
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
  transition: var(--transition);
}

.footer-links li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.6rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links li:hover {
  padding-left: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  font-size: 0.95rem;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  border-radius: 6px;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--secondary-color);
  background: rgba(253, 185, 19, 0.1);
  padding: 6px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

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

.contact-item address {
  font-style: normal;
  line-height: 1.6;
}

/* Footer contact section centering with aligned start points */
.footer-contact {
  display: flex;
  flex-direction: column;
 
}

.footer-contact .contact-item {
  width: 100%;
  max-width: 280px;
  justify-content: flex-start;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #4a90e2;
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1200;
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #357abd;
  transform: translateY(-3px);
}

.back-to-top svg {
  stroke: var(--white);
  width: 20px;
  height: 20px;
}

/* Page Content */
.site-content {
  min-height: 500px;
}

.site-main {
  padding: 0;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  margin: 40px auto;
  border-radius: 20px;
  padding: 0px 16px;
  overflow: hidden;
  max-width: 1340px;
}

.hero-section .container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-text {
  max-width: 500px;
  margin-left: 60px;
  color: var(--white);
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  margin-top: 2rem;
}

.btn-large {
  padding: 12px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Achievements Section - Premium Parallax Design */
.achievements-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  background-image: url("https://ecovillesolar.ch/wp-content/uploads/2022/11/hero03-scaled-1.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Dark overlay for better text visibility */
.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 53, 113, 0.92) 0%,
    rgba(0, 53, 113, 0.85) 50%,
    rgba(180, 138, 71, 0.88) 100%
  );
  z-index: 1;
}

.achievements-section .container {
  position: relative;
  z-index: 3;
}

.achievements-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.achievements-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.achievements-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.achievements-grid {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.achievements-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.achievement-item {
  background: transparent;

  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.achievement-item:hover {
  transform: translateY(-5px);
}

.achievement-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 25px;
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
}

.achievement-item:hover .achievement-icon {
  transform: scale(1.1);
}

.achievement-icon img {
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon img {
  transform: scale(1.1);
}

.achievement-icon-placeholder {
  background: transparent;
}

.achievement-icon-placeholder svg {
  color: var(--white);
  width: 45px;
  height: 45px;
}

.achievement-content {
  flex: 1;
}

.achievement-description {
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-item:hover .achievement-description {
  color: var(--secondary-color);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .achievements-grid {
    flex-direction: column;
    gap: 30px;
  }

  .achievements-column {
    gap: 10px;
  }

  .achievement-item {
    gap: 20px;
  }

  .achievement-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

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

  .achievements-section {
    background-attachment: scroll;
    padding: 100px 0;
  }
}

/* Video Benefits Section */
.video-benefits-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-benefits-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 53, 113, 0.4) 0%,
    rgba(0, 53, 113, 0.3) 50%,
    rgba(180, 138, 71, 0.35) 100%
  );
  z-index: 2;
}

.video-benefits-section .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.video-benefits-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 20px;
}

.benefits-content-left {
  padding-right: 20px;
  text-align: left;
}

.video-benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  padding-left: 8px;
  border-bottom-color: var(--secondary-color);
}

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

.benefit-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), #c9a05c);
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(180, 138, 71, 0.4);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(180, 138, 71, 0.6);
}

.benefit-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.benefit-icon-placeholder {
  background: linear-gradient(135deg, var(--secondary-color), #c9a05c);
}

.benefit-icon-placeholder svg {
  color: var(--white);
  width: 20px;
  height: 20px;
}

.benefit-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text {
  color: var(--secondary-color);
}

.benefits-content-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-logo {
  max-width: 200px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.benefits-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.benefits-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .video-benefits-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .benefits-content-left {
    padding-right: 0;
  }

  .video-benefits-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .video-benefits-section {
    min-height: 800px;
    padding: 60px 0;
  }

  .benefits-list {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .video-benefits-section {
    padding: 50px 0;
    min-height: 900px;
  }

  .video-benefits-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .benefits-list {
    gap: 12px;
  }

  .benefit-item {
    padding: 10px 0;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    border-radius: 50% !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 / 1;
  }

  .benefit-icon img,
  .benefit-icon-placeholder svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .benefit-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .benefits-logo {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .benefit-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
  }

  .benefit-icon img,
  .benefit-icon-placeholder svg {
    width: 16px !important;
    height: 16px !important;
  }

  .benefit-text {
    font-size: 0.9rem;
  }
}

/* Solar Journey Section */
.solar-journey-section {
  padding: 40px 0 100px;
  background: #fafafa;
}

.solar-journey-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.solar-journey-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

@media (max-width: 1024px) {
  .journey-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .journey-steps-grid {
    grid-template-columns: 1fr;
  }
}

.journey-step-card {
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  height: 250px;
  perspective: 1000px;
}

.step-front,
.step-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
}

.step-front {
  background: var(--primary-color);
  border-radius: 12px;
  transform: rotateY(0deg);
}

.step-back {
  background: var(--primary-color);
  border-radius: 12px;
  transform: rotateY(180deg);
}

.journey-step-card:hover .step-front {
  transform: rotateY(-180deg);
}

.journey-step-card:hover .step-back {
  transform: rotateY(0deg);
}

.step-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  margin-bottom: 20px;
}

.step-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 16px;
  margin-bottom: 20px;
}

.step-icon img {
  width: 70px;
  height: 70px;
  filter: brightness(0) invert(1);
}

.step-icon-placeholder {
  background: var(--secondary-color);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}

.step-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.step-description {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.journey-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke-width: 2;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-phone {
  background: linear-gradient(135deg, var(--primary-color), #004a9f);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 53, 113, 0.3);
}

.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 53, 113, 0.4);
  color: var(--white);
}

.cta-quote {
  background: linear-gradient(135deg, var(--secondary-color), #c9a05c);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.3);
}

.cta-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 138, 71, 0.4);
  color: var(--white);
}

.cta-separator {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .journey-steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .solar-journey-title {
    font-size: 2.5rem;
  }

  .journey-step-card {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .solar-journey-section {
    padding: 80px 0 60px;
  }

  .solar-journey-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .journey-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 3rem;
  }

  .journey-step-card {
    height: 160px;
  }

  .step-front,
  .step-back {
    padding: 20px 15px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .step-icon img {
    width: 32px;
    height: 32px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .journey-cta {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .cta-separator {
    font-size: 1rem;
  }
}

/* Go Solar Benefits Section */
.go-solar-benefits-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--gray-lighter) 0%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.go-solar-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 53, 113, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.benefits-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.benefits-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* For exactly 7 items, create a 3-3-1 layout */
@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* First row - 3 items */
  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(3) {
    /* First row automatically fills 3 columns */
  }

  /* Second row - 3 items */
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5),
  .benefit-card:nth-child(6) {
    /* Second row automatically fills 3 columns */
  }

  /* Third row - 1 item centered */
  .benefit-card:nth-child(7) {
    grid-column: 2 / 3;
  }
}

.benefit-card {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 53, 113, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 53, 113, 0.3);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(180, 138, 71, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.4);
}

.benefit-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.benefit-icon-placeholder {
  background: linear-gradient(135deg, var(--secondary-color), #c9a05c);
}

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

.benefit-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: var(--transition);
}

.benefit-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  transition: var(--transition);
}

/* Project Videos Section */
.project-videos-section {
  padding: 120px 0 100px;
  background: #fafafa;
  position: relative;
}

.project-videos-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.project-videos-section .section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.project-videos-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.project-videos-section .section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: -2.5rem auto 3rem;
  text-align: center;
}

.videos-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.videos-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.videos-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.videos-sidebar {
  background: var(--gray-lighter);
  border-radius: 16px;
  padding: 25px;
  max-height: 600px;
  overflow-y: auto;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.video-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 53, 113, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.video-item:hover::before {
  left: 100%;
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 53, 113, 0.15);
  border-color: var(--primary-color);
}

.video-item.active {
  border-color: var(--secondary-color);
  background: linear-gradient(
    135deg,
    rgba(0, 53, 113, 0.05),
    rgba(180, 138, 71, 0.05)
  );
}

.video-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--gray-light);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
  opacity: 1;
}

.video-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-description {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.videos-player {
  position: relative;
}

.video-player-container {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 53, 113, 0.1);
  border: 1px solid var(--border-color);
}

.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--gray-light);
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.current-video-info {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.current-video-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.current-video-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Custom scrollbar for video list */
.videos-sidebar::-webkit-scrollbar {
  width: 6px;
}

.videos-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 53, 113, 0.1);
  border-radius: 3px;
}

.videos-sidebar::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 3px;
}

.videos-sidebar::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--secondary-color) 80%, black);
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
  background: var(--gray-light);
  min-height: 100vh;
}

.privacy-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    color-mix(in srgb, var(--primary-color) 85%, black) 100%
  );
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(180, 138, 71, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.privacy-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
}

.privacy-intro p {
  color: var(--white);
}

.privacy-content {
  padding: 80px 0;
}

.privacy-contact {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 53, 113, 0.08);
  border: 1px solid var(--border-color);
}

.privacy-contact h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info strong {
  color: var(--primary-color);
  font-weight: 600;
}

.privacy-section {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 53, 113, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
}

.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 16px 16px 0 0;
}

.privacy-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-section h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.privacy-subsection {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 53, 113, 0.1);
}

.privacy-subsection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-subsection h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.privacy-subsection h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 25px 0 12px;
  line-height: 1.4;
}

.privacy-subsection p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 15px;
}

.privacy-subsection p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.privacy-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.privacy-list li::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

/* Privacy Policy Links */
.privacy-section a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Table of Contents (if needed) */
.privacy-toc {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 53, 113, 0.06);
}

.privacy-toc h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: justify;
}

.privacy-toc li::before {
  content: "→";
  color: var(--secondary-color);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.privacy-toc a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.privacy-toc a:hover {
  color: var(--primary-color);
}

/* Premium Footer Animations */
@keyframes footerFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes titleUnderline {
  0% {
    width: 0;
  }
  100% {
    width: 30px;
  }
}

.footer-brand {
  animation: footerFloat 6s ease-in-out infinite;
}

.footer-title::after {
  animation: titleUnderline 0.8s ease-out;
}

.footer-column:nth-child(2) .footer-title::after {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) .footer-title::after {
  animation-delay: 0.4s;
}

/* ========================================
   SOLAR SYSTEMS PAGE STYLES
======================================== */

/* Solar Systems Page Header - Modern Hero Style */
.solar-systems-header {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  margin: 40px auto;
  border-radius: 20px;
  max-width: 1340px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.solar-systems-header .header-background {
  display: none;
}

.solar-systems-header .header-bg-image {
  display: none;
}

.solar-section .section-background,
.solar-section .section-bg-image {
  display: none;
}

.solar-systems-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 53, 113, 0.85) 0%,
    rgba(0, 53, 113, 0.7) 50%,
    rgba(180, 138, 71, 0.8) 100%
  );
  z-index: 2;
  border-radius: 20px;
}

.solar-systems-header .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 0 40px;
}

.solar-systems-header .header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.solar-systems-header .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.solar-systems-header .page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.solar-systems-header .header-cta {
  display: inline-flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.solar-systems-header .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.solar-systems-header .btn-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 85%, black)
  );
  color: var(--white);
  box-shadow: 0 8px 25px rgba(180, 138, 71, 0.3);
}

.solar-systems-header .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 138, 71, 0.4);
}

.solar-systems-header .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.solar-systems-header .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Solar Sections - Modern Card-based Layout */
.solar-section {
  position: relative;
  padding: 100px 0 0px;
  background: var(--light-bg);
}

/* Text alignment for all solar systems paragraphs (excluding lists) */
.page-template-solar-systems p,
.solar-section p {
  text-align: justify;
}

.solar-section:nth-child(even) {
  background: var(--white);
}

.solar-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solar-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solar-section .section-subtitle {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 53, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.solar-section .section-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.solar-section .section-subtitle:hover::before {
  left: 100%;
}

.solar-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.solar-section .section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Content Grid Layout - Single Column Design */
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.content-main {
  background: var(--white);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0, 53, 113, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* Gradient top border removed */

.content-main h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-main h3:first-child {
  margin-top: 0;
}

.content-main p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: justify;
}

.content-main ul,
.process-content ul,
.info-box ul,
.content-subsection ul,
.subsection-content ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 0;
  margin: 20px 0 20px 30px;
}

.content-main ul li,
.process-content ul li,
.info-box ul li,
.content-subsection ul li,
.subsection-content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  padding-left: 10px;
  text-align: justify;
}

.content-main ol,
.process-content ol,
.info-box ol,
.content-subsection ol,
.subsection-content ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 0;
  margin: 20px 0 20px 30px;
  counter-reset: list-counter;
}

.content-main ol li,
.process-content ol li,
.info-box ol li,
.content-subsection ol li,
.subsection-content ol li {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  padding-left: 10px;
  text-align: justify;
}

/* Nested lists */
.content-main li ul,
.process-content li ul,
.info-box li ul,
.content-subsection li ul,
.subsection-content li ul {
  margin: 10px 0 10px 20px;
}

.content-main li ol,
.process-content li ol,
.info-box li ol,
.content-subsection li ol,
.subsection-content li ol {
  margin: 10px 0 10px 20px;
}

.content-sidebar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Info Boxes - Enhanced Design */
.info-box {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 53, 113, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 53, 113, 0.15);
}

/* Gradient top border removed */

.info-box h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  text-align: justify;
}

.info-box li:last-child {
  border-bottom: none;
}

.info-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Additional sections styling */
.considerations-section,
.payback-section {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid var(--border-color);
}

.considerations-section ul,
.payback-section ul,
.opportunities-section ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 20px;
  margin: 20px 0;
}

.considerations-section ol,
.payback-section ol,
.opportunities-section ol {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 20px;
  margin: 20px 0;
}

.considerations-section li,
.payback-section li,
.opportunities-section li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Gradient borders removed */

.considerations-section h3,
.payback-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.considerations-section p,
.payback-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 15px;
  text-align: justify;
}

/* Process Section */
.process-section {
  margin-bottom: 40px;
}

.process-title {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.process-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 2px;
}

.process-content {
  line-height: 1.7;
  color: var(--text-dark);
}

/* Considerations and Payback Sections */
.considerations-section,
.payback-section,
.opportunities-section {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 53, 113, 0.08);
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.considerations-section h3,
.payback-section h3,
.opportunities-section h3 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.considerations-section h3::after,
.payback-section h3::after,
.opportunities-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Storage Systems & E-Mobility Content Sections */
.content-sections {
  display: grid;
  gap: 40px;
}

.content-subsection {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 53, 113, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
}

.subsection-title {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
}

.subsection-content {
  line-height: 1.7;
  color: var(--text-dark);
}

.subsection-content p,
.process-content p,
.opportunities-section p,
.info-box p {
  text-align: justify;
}

.subsection-content h4 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.subsection-content ul {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  margin: 20px 0;
}

.subsection-content li {
  position: relative;
  padding: 8px 0 8px 30px;
  margin-bottom: 10px;
  text-align: justify;
}

/* Section-specific background overlays */
.save-at-home-section .section-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 248, 248, 0.98) 100%
  );
}

.save-in-business-section .section-overlay {
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.solar-farms-section .section-overlay {
  background: linear-gradient(
    135deg,
    rgba(248, 248, 248, 0.95) 0%,
    rgba(252, 252, 252, 0.98) 100%
  );
}

.storage-systems-section .section-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(250, 250, 250, 0.98) 100%
  );
}

.emobility-section .section-overlay {
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

/* Hover Effects */
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 53, 113, 0.15);
  transition: var(--transition);
}

.content-subsection:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 53, 113, 0.12);
  transition: var(--transition);
}

.content-main:hover,
.considerations-section:hover,
.payback-section:hover,
.opportunities-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 53, 113, 0.12);
  transition: var(--transition);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .solar-systems-header .page-title {
    font-size: 3rem;
  }

  .solar-section .section-title {
    font-size: 2.75rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-main,
  .content-subsection,
  .considerations-section,
  .payback-section,
  .opportunities-section {
    padding: 35px;
  }

  .info-box {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .solar-systems-header {
    min-height: 50vh;
  }

  .solar-systems-header .page-title {
    font-size: 2.5rem;
  }

  .solar-section {
    padding: 80px 0;
  }

  .solar-section .section-header {
    margin-bottom: 50px;
  }

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

  .solar-section .section-description {
    font-size: 1.125rem;
  }

  .content-main,
  .content-subsection,
  .considerations-section,
  .payback-section,
  .opportunities-section {
    padding: 25px;
    border-radius: 16px;
  }

  .info-box {
    padding: 20px;
    border-radius: 12px;
  }

  .content-sidebar {
    gap: 20px;
  }

  .content-sections {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .solar-systems-header .page-title {
    font-size: 2rem;
  }

  .solar-section {
    padding: 60px 0;
  }

  .solar-section .section-title {
    font-size: 1.875rem;
  }

  .solar-section .section-description {
    font-size: 1rem;
  }

  .content-main,
  .content-subsection,
  .considerations-section,
  .payback-section,
  .opportunities-section {
    padding: 20px;
    border-radius: 12px;
  }

  .info-box {
    padding: 15px;
  }

  .subsection-title {
    font-size: 1.5rem;
  }

  .process-title {
    font-size: 1.25rem;
  }
}

/* Header Search Styles */
.header-search {
  position: relative;
  min-width: 134px; /* Reduced by additional 20% from 168px */
  max-width: 157px; /* Reduced by additional 20% from 196px */
  height: 42px;
  flex-shrink: 0;
}

.header-search .search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search .search-input-wrapper {
  position: relative;
  width: 100%;
  background: transparent;
}

.header-search .search-field {
  height: 42px;
  width: 100%;
  padding: 12px 16px 12px 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--white);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-search .search-field:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(180, 138, 71, 0.3);
}

.header-search .search-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.header-search .search-submit {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.header-search .search-field:focus + .search-submit,
.header-search .search-submit:hover {
  color: var(--secondary-color);
}

.header-search .search-submit svg {
  width: 18px;
  height: 18px;
}

/* Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  max-height: 500px;
  overflow-y: auto;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results-dropdown.visible {
  transform: translateY(4px);
  opacity: 1;
  visibility: visible;
}

/* AJAX Search Results */
.ajax-search-results {
  padding: 0;
}

.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.search-result-item:hover,
.search-result-item.active {
  background: #f8f9fa;
}

.search-result-item.active {
  background: rgba(0, 53, 113, 0.05);
  border-left: 3px solid var(--primary-color);
  padding-left: 17px;
}

.result-content {
  flex: 1;
  min-width: 0;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-type {
  background: var(--primary-color);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.7rem;
}

.result-date {
  color: var(--text-lighter);
  font-weight: 400;
}

.result-title {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.result-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-result-item:hover .result-title a,
.search-result-item.active .result-title a {
  color: var(--primary-color);
}

.result-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.result-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}

.result-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Search States */
.search-loading,
.search-error,
.no-ajax-results {
  padding: 30px 20px;
  text-align: center;
}

.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.search-loading p,
.search-error p,
.no-ajax-results p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.search-error {
  color: var(--error);
}

/* Search Results Footer */
.search-results-footer {
  padding: 12px 20px;
  border-top: 1px solid #f0f0f0;
  background: #f8f9fa;
  text-align: center;
}

.view-all-results {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-results:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Search highlighting */
.result-title mark,
.result-excerpt mark {
  background: rgba(0, 53, 113, 0.15);
  color: var(--primary-color);
  padding: 1px 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* Search Results Page Styles */
.search-results-header {
  background: var(--gray-lighter);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-color);
}

.search-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.search-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.search-query {
  color: var(--primary-color);
}

.search-meta {
  margin-bottom: 30px;
}

.search-count {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

.search-refine {
  max-width: 500px;
  margin: 0 auto;
}

.search-form-large .search-input-wrapper {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

.search-form-large .search-field {
  width: 100%;
  padding: 16px 20px 16px 55px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--text-dark);
  outline: none;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-form-large .search-field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 53, 113, 0.1);
}

.search-form-large .search-submit {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-lighter);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.search-form-large .search-field:focus + .search-submit,
.search-form-large .search-submit:hover {
  color: var(--primary-color);
}

.search-form-large .search-submit svg {
  width: 20px;
  height: 20px;
}

.search-form-large .button-text {
  display: none;
}

.search-results-content {
  padding: 60px 0;
}

.search-results-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.search-results-grid .search-result-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  cursor: default;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: start;
}

.search-results-grid .search-result-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 53, 113, 0.1);
  transform: translateY(-2px);
}

.search-results-grid .result-content {
  flex: none;
}

.search-results-grid .result-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.search-results-grid .result-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  -webkit-line-clamp: 3;
}

.search-results-grid .result-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-results-grid .result-link:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.search-results-grid .result-thumbnail {
  width: 150px;
  height: 100px;
  border-radius: 8px;
}

.no-search-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results-icon {
  margin-bottom: 30px;
  color: var(--text-lighter);
}

.no-results-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.no-results-message {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-suggestions h3 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.suggestion-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}

.suggestion-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 53, 113, 0.1);
}

.suggestion-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.suggestion-type {
  font-size: 0.875rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Search Pagination */
.search-pagination {
  margin-top: 50px;
}

.pagination-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  margin: 0;
}

.pagination-list a,
.pagination-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  min-width: 48px;
  justify-content: center;
}

.pagination-list a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.pagination-list .current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .header-search {
    min-width: 112px; /* Reduced by additional 20% from 140px */
    max-width: 134px; /* Reduced by additional 20% from 168px */
  }
}

@media (max-width: 768px) {
  .header-main-content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .header-search {
    order: 4;
    width: 100%;
    min-width: unset;
    margin-top: 15px;
  }

  .search-results-dropdown {
    max-height: 400px;
  }

  .search-result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .result-thumbnail {
    width: 100%;
    height: 120px;
    order: -1;
  }

  .search-results-header {
    padding: 40px 0 30px;
  }

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

  .search-results-grid .search-result-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-results-grid .result-thumbnail {
    width: 100%;
    height: 150px;
  }

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

@media (max-width: 480px) {
  .header-search .search-field {
    padding: 10px 12px 10px 40px;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .header-search .search-submit {
    left: 12px;
  }

  .header-search .search-submit svg {
    width: 16px;
    height: 16px;
  }

  .search-results-dropdown {
    border-radius: 6px;
  }

  .search-result-item {
    padding: 12px 15px;
  }

  .search-title {
    font-size: 1.75rem;
  }

  .search-form-large .search-input-wrapper {
    border-radius: 25px;
  }

  .search-form-large .search-field {
    padding: 14px 16px 14px 50px;
    font-size: 0.95rem;
    border-radius: 25px;
  }

  .search-form-large .search-submit {
    left: 15px;
  }

  .search-form-large .search-submit svg {
    width: 18px;
    height: 18px;
  }

  .pagination-list a,
  .pagination-list span {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.partners-section .container {
  max-width: none;
  padding: 0;
  width: 100%;
}

.partners-section .section-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.partners-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.partners-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.partners-grid {
  display: flex;
  overflow: hidden;
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
}

.partners-slider {
  display: flex;
  animation: slide 30s linear infinite;
  width: calc(200px * var(--partner-count) * 2);
  padding: 40px 0;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 53, 113, 0.08);
  transition: var(--transition);
  height: 120px;
  width: 200px;
  flex-shrink: 0;
  margin-right: 40px;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 53, 113, 0.15);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-200px * var(--partner-count) - 40px * var(--partner-count))
    );
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition);
}

.partner-item:hover .partner-logo img {
  transform: scale(1.05);
}

/* Save Nature Video Section */
.save-nature-video-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.save-nature-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.save-nature-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.video-wrapper {
  max-width: 800px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 53, 113, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-error {
  text-align: center;
  color: var(--text-color);
  font-style: italic;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 53, 113, 0.08);
}

/* Warranty Section */
.warranty-section {
  padding: 60px 0 80px;
  background: var(--white);
}

.warranty-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.warranty-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.warranty-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 53, 113, 0.08);
  transition: var(--transition);
}

.warranty-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 53, 113, 0.15);
}

.warranty-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.warranty-icon img {
  max-width: 60px;
  height: auto;
}

.warranty-icon-placeholder {
  width: 60px;
  height: 60px;
  background: #b48a47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.warranty-icon-placeholder svg {
  color: white;
  width: 32px;
  height: 32px;
}

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

.warranty-years {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.warranty-type {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.warranty-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-section,
  .save-nature-video-section,
  .warranty-section {
    padding: 60px 0;
  }

  .partners-title,
  .save-nature-title,
  .warranty-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .partners-slider {
    animation: slide 20s linear infinite;
  }

  .partner-item {
    height: 100px;
    width: 150px;
    padding: 15px;
    margin-right: 20px;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(
        calc(-150px * var(--partner-count) - 20px * var(--partner-count))
      );
    }
  }

  .partner-logo img {
    max-height: 60px;
  }

  .warranty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .warranty-item {
    padding: 30px 20px;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-form-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.contact-form-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.contact-form-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Form 7 Grid Layout */
.contact-form-section .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 0 15px;
}

.contact-form-section .col-md-4 {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

.contact-form-section .col-md-6 {
  flex: 0 0 calc(50% - 7.5px);
  max-width: calc(50% - 7.5px);
}

.contact-form-section .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.contact-form-section .row p {
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-form-section .col-md-6,
  .contact-form-section .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-form-section .row {
    gap: 0;
  }

  .contact-form-section .row:not(:last-child) {
    margin-bottom: 15px;
  }
}

/* Contact Form 7 Styling to Match Custom Design */
.contact-form-section .wpcf7 {
  width: 100%;
}

.contact-form-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Bootstrap Row Styling */
.contact-form-section .wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
}

.contact-form-section .wpcf7-form .col-md-6 {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.contact-form-section .wpcf7-form .col-md-4 {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.contact-form-section .wpcf7-form .col-md-12 {
  flex: 1 1 100%;
  padding: 0;
}

.contact-form-section .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-form-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-section .wpcf7 input[type="text"],
.contact-form-section .wpcf7 input[type="email"],
.contact-form-section .wpcf7 input[type="tel"],
.contact-form-section .wpcf7 select,
.contact-form-section .wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  box-sizing: border-box;
}

.contact-form-section .wpcf7 input:focus,
.contact-form-section .wpcf7 select:focus,
.contact-form-section .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(180, 138, 71, 0.1);
}

.contact-form-section .wpcf7 textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-section .wpcf7 select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23003571' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* CF7 Form Labels */
.contact-form-section .wpcf7 label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: block;
}

/* CF7 Submit Button */
.contact-form-section .wpcf7 .wpcf7-submit {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    color-mix(in srgb, var(--primary-color) 85%, black)
  );
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-section .wpcf7 .wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-form-section .wpcf7 .wpcf7-submit:hover::before {
  left: 100%;
}

.contact-form-section .wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 53, 113, 0.3);
}

/* CF7 Response Messages */
.contact-form-section .wpcf7-response-output {
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-section .wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.contact-form-section .wpcf7-validation-errors,
.contact-form-section .wpcf7-mail-sent-ng {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #c62828;
}

/* CF7 Validation Error Styles */
.contact-form-section .wpcf7-not-valid {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1) !important;
}

.contact-form-section .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #c62828;
  margin-top: 5px;
  display: block;
}

/* Hide CF7 default spinner */
.contact-form-section .wpcf7 .ajax-loader {
  display: none;
}

/* Custom rows for CF7 */
.contact-form-section .cf7-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-section .cf7-form-row-triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.contact-form-section .cf7-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-section .cf7-form-group label {
  margin-bottom: 8px;
}

.form-fallback {
  text-align: center;
  color: var(--text-color);
  font-style: italic;
  padding: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    padding: 40px 25px 30px;
    margin: 0 20px;
  }

  .contact-form-section .cf7-form-row,
  .contact-form-section .cf7-form-row-triple {
    grid-template-columns: 1fr;
  }

  /* Make Bootstrap rows stack on mobile */
  .contact-form-section .wpcf7-form .row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form-section .wpcf7-form .col-md-6,
  .contact-form-section .wpcf7-form .col-md-4 {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 35px 20px 25px;
  }

  .contact-form-title {
    font-size: 1.3rem;
  }
}

/* ========================================
   TEAM PAGE STYLES
======================================== */

/* Team Header Section */
.team-header-section {
  padding: 120px 0 80px;
  background: var(--light-bg);
  position: relative;
}

.team-header-section .section-header {
  text-align: center;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-header-section .page-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.team-header-section .page-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.team-header-section .page-description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.team-header-section .page-description p {
  margin: 0 0 20px 0;
}

.team-header-section .page-description p:last-child {
  margin-bottom: 0;
}

/* Team Members Section */
.team-members-section {
  padding: 80px 0;
  background: var(--white);
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Team Member Cards */
.team-member-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Member Image */
.member-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--light-bg);
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.team-member-card:hover .member-image {
  transform: scale(1.05);
}

.member-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  color: var(--text-light);
}

.member-image-placeholder svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}

/* Member Info */
.member-info {
  padding: 20px 20px 15px;
  text-align: center;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.member-role {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Member Contact Section */
.member-contact {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
}

.member-email {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  background: rgba(0, 53, 113, 0.1);
}

.member-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--white);
}

.phone-number {
  font-weight: 500;
}

.member-email:hover,
.member-phone:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  background: rgba(180, 138, 71, 0.05);
}

.member-email svg,
.member-phone svg {
  flex-shrink: 0;
}

/* No Team Members State */
.no-team-members {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.no-members-icon {
  margin-bottom: 30px;
  color: var(--text-light);
}

.no-members-icon svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}

.no-members-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.no-members-message {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* Team Photo Section */
.team-photo-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.team-photo-wrapper {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .member-image-wrapper {
    height: 300px;
  }

  .member-info {
    padding: 16px 18px 14px;
  }
}

@media (max-width: 768px) {
  .team-header-section {
    padding: 80px 0 60px;
  }

  .team-header-section .page-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .team-members-section {
    padding: 60px 0;
  }

  .team-photo-section {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

  .member-image-wrapper {
    height: 320px;
  }

  .member-info {
    padding: 15px 16px 12px;
  }

  .member-name {
    font-size: 1.25rem;
  }

  .team-photo-wrapper {
    margin: 0 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .team-header-section .page-title {
    font-size: 1.8rem;
  }

  .member-image-wrapper {
    height: 280px;
  }

  .member-info {
    padding: 12px 12px 10px;
  }

  .no-team-members {
    padding: 60px 15px;
  }

  .team-photo-wrapper {
    margin: 0 15px;
    border-radius: 12px;
  }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Info Section */
.contact-info-section {
  padding: 120px 0 80px;
  background: var(--light-bg);
  position: relative;
}

/* Centered Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.contact-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.4;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side - Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* Contact Info Items */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.info-content {
  flex: 1;
  padding-top: 5px;
}

.info-content address {
  font-style: normal;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--primary-color);
}

/* Right Side - Google Map */
.contact-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-header {
    margin-bottom: 50px;
  }

  .contact-info-grid {
    gap: 40px;
  }

  .contact-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 80px 0 60px;
  }

  .contact-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    align-items: start;
  }

  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .info-item {
    padding: 18px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 0 15px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-info-grid {
    padding: 0 15px;
  }

  .info-item {
    padding: 15px;
    gap: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .info-content {
    font-size: 0.95rem;
  }
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */

/* Services Header Section */
.services-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

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

.services-header .header-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 53, 113, 0.8) 0%,
    rgba(180, 138, 71, 0.6) 100%
  );
  z-index: 2;
}

.services-header .container {
  position: relative;
  z-index: 3;
}

.services-header .header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-header .page-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.services-header .page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 0 0;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Content Section */
.services-content-section {
  padding: 80px 0;
  background: var(--white);
}

.services-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.services-intro-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, black)
  );
  border-radius: 2px;
}

.services-intro-text {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 40px;
  font-weight: 500;
}

/* Services List */
.services-list-container {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.service-item:hover {
  transform: translateX(5px);
}

.service-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-text {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.4;
}

/* Services Closing */
.services-closing {
  text-align: center;
  padding: 80px 40px;
  margin-top: 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.services-closing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.services-closing-text {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-color);
  margin: 0;
  position: relative;
  letter-spacing: 2px;
  line-height: 1.6;
  display: inline-block;
  padding: 0 60px;
}

.services-closing-text::before,
.services-closing-text::after {
  content: "—";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 2rem;
}

.services-closing-text::before {
  left: 0;
}

.services-closing-text::after {
  right: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-header .page-title {
    font-size: 3rem;
  }

  .services-intro-title {
    font-size: 2.4rem;
  }

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

@media (max-width: 768px) {
  .services-header .page-title {
    font-size: 2.5rem;
  }

  .services-header .page-subtitle {
    font-size: 1.1rem;
  }

  .services-content-section {
    padding: 60px 0;
  }

  .services-content {
    padding: 0 20px;
  }

  .services-intro-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .services-list-container {
    padding: 40px 30px;
    margin: 0 20px 40px;
  }

  .services-list {
    gap: 15px;
  }

  .service-item {
    padding: 12px 0;
  }

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

  .service-text {
    font-size: 1rem;
  }

  .services-closing {
    margin: 60px 20px 0;
    padding: 60px 30px;
  }

  .services-closing-text {
    font-size: 1.5rem;
  }

  .services-closing-text::before,
  .services-closing-text::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-header .page-title {
    font-size: 2rem;
  }

  .services-intro-title {
    font-size: 1.5rem;
  }

  .services-list-container {
    padding: 30px 20px;
    margin: 0 15px 30px;
  }

  .service-item {
    gap: 12px;
    padding: 10px 0;
  }

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

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

  .services-closing {
    margin: 16px;
    padding: 40px 20px;
  }

  .services-closing-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 0;
  }
}

/* Calculator label styling */
.calculator-label {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Expandable Search Styles */
.header-search {
  position: relative;
  min-width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.search-toggle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.search-toggle-wrapper:hover {
  border-color: var(--secondary-color);
}

.search-toggle-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.search-toggle-btn:hover {
  color: var(--secondary-color);
}

.search-toggle-btn svg {
  width: 20px;
  height: 20px;
}

.search-form-expandable {
  position: absolute;
  right: 5px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 200px;
  max-width: 320px;
  height: 48px;
}

.search-toggle-wrapper:hover .search-form-expandable,
.search-form-expandable:focus-within {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.search-form-expandable .search-input-wrapper {
  position: relative;
  width: 100%;
  background: transparent;
}

.search-form-expandable .search-field {
  height: 48px;
  width: 100%;
  padding: 14px 18px 14px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--primary-color);
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.search-form-expandable .search-field:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(180, 138, 71, 0.3);
}

.search-form-expandable .search-field::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.search-form-expandable .search-submit {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.search-form-expandable .search-submit:hover,
.search-form-expandable .search-field:focus + .search-submit {
  color: var(--secondary-color);
}

.search-form-expandable .search-submit svg {
  width: 18px;
  height: 18px;
}
