.se-service-card:hover {
  border-color: rgba(37, 99, 235, 0.15);/* ============================================================
   SUDDEN ENERGY N SOLAR SOLUTIONS - MAIN STYLESHEET
   A modern, professional theme for a solar energy company
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */

:root {
  /* Primary - Professional Blue */
  --se-primary: #2563EB;
  --se-primary-dark: #1D4ED8;
  --se-primary-light: #60A5FA;
  
  /* Secondary - Deep Navy */
  --se-secondary: #0F172A;
  --se-secondary-dark: #020617;
  --se-secondary-light: #1E293B;
  
  /* Accent - Sky Blue */
  --se-accent: #06B6D4;
  --se-accent-dark: #0891B2;
  
  /* Neutral Colors */
  --se-white: #FFFFFF;
  --se-cream: #EFF6FF;
  --se-light-gray: #F8FAFC;
  --se-gray: #64748B;
  --se-dark-gray: #334155;
  --se-dark: #0F172A;
  --se-black: #020617;
  
  /* Gradients */
  --se-gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
  --se-gradient-secondary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --se-gradient-hero: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%);
  --se-gradient-cta: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
  
  /* Shadows */
  --se-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --se-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --se-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --se-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --se-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --se-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Border Radius */
  --se-radius-sm: 0.375rem;
  --se-radius-md: 0.5rem;
  --se-radius-lg: 0.75rem;
  --se-radius-xl: 1rem;
  --se-radius-full: 9999px;
  
  /* Transitions */
  --se-transition-fast: 150ms ease;
  --se-transition-base: 300ms ease;
  --se-transition-slow: 500ms ease;
}

/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */

body,
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--se-font-heading);
}

body {
  color: var(--se-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--se-dark);
}

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

p {
  margin-bottom: 1.25rem;
  color: var(--se-dark-gray);
}

a {
  color: var(--se-primary);
  transition: color var(--se-transition-base);
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--se-radius-lg);
}

/* ============================================================
   3. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  background: var(--se-white) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--se-shadow-sm);
}

.main-header-menu .menu-link {
  font-family: var(--se-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0 1rem !important;
  color: var(--se-dark) !important;
  transition: color var(--se-transition-fast);
}

.main-header-menu .menu-link:hover {
  color: var(--se-primary) !important;
}

.main-header-menu .current-menu-item > .menu-link,
.main-header-menu .current-menu-ancestor > .menu-link {
  color: var(--se-primary) !important;
}

/* CTA Button in Menu */
.menu-item-cta .menu-link {
  background: var(--se-gradient-primary) !important;
  color: var(--se-white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--se-radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all var(--se-transition-base) !important;
}

.menu-item-cta .menu-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35) !important;
  color: var(--se-white) !important;
}

/* Header Phone */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--se-secondary);
  margin-left: 1.5rem;
  font-size: 0.95rem;
}

.header-phone::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--se-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn,
.wp-block-button__link,
.ast-button,
.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--se-radius-full);
  font-family: var(--se-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--se-transition-base);
  border: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--se-gradient-primary) !important;
  color: var(--se-white) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  color: var(--se-white) !important;
}

.btn-secondary {
  background: transparent;
  color: var(--se-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--se-white);
  color: var(--se-secondary) !important;
  border-color: var(--se-white);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--se-primary);
  color: var(--se-white) !important;
  transform: translateY(-3px);
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */

.se-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.se-hero-section .se-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--se-gradient-hero);
  z-index: 0;
}

.se-hero-section .se-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.se-hero-section .se-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.se-hero-section .se-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  color: var(--se-primary-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--se-radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.se-hero-section h1 {
  color: var(--se-white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
}

.se-hero-section h1 .se-highlight {
  background: var(--se-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.se-hero-section .se-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
  font-family: var(--se-font-body);
}

.se-hero-section .se-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.se-hero-section .se-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.se-hero-section .se-hero-stat {
  text-align: center;
}

.se-hero-section .se-hero-stat-number {
  font-family: var(--se-font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--se-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.se-hero-section .se-hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .se-hero-section {
    min-height: 70vh;
    padding: 6rem 0 4rem;
  }
  
  .se-hero-section .se-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  
  .se-hero-section .se-hero-stat-number {
    font-size: 1.75rem;
  }
}

/* ============================================================
   6. SERVICES SECTION
   ============================================================ */

.se-section {
  padding: 5rem 0;
}

.se-section-alt {
  background: var(--se-light-gray);
}

.se-section-dark {
  background: var(--se-gradient-secondary);
  color: var(--se-white);
}

.se-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.se-section-header .se-subtitle {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--se-primary-dark);
  padding: 0.35rem 1.25rem;
  border-radius: var(--se-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.se-section-header h2 {
  margin-bottom: 1rem;
}

.se-section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--se-gray);
  font-size: 1.1rem;
}

/* Services Grid */
.se-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .se-services-grid {
    grid-template-columns: 1fr;
  }
}

.se-service-card {
  background: var(--se-white);
  border-radius: var(--se-radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--se-shadow-md);
  transition: all var(--se-transition-slow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.se-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--se-gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--se-transition-slow);
}

.se-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--se-shadow-xl);
  border-color: rgba(245, 158, 11, 0.15);
}

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

.se-service-card .se-service-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--se-radius-lg);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: all var(--se-transition-base);
}

.se-service-card:hover .se-service-icon {
  background: var(--se-gradient-primary);
}

.se-service-card .se-service-icon svg {
  width: 2rem;
  height: 2rem;
  fill: var(--se-primary);
  transition: fill var(--se-transition-base);
}

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

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

.se-service-card p {
  color: var(--se-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */

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

@media (max-width: 768px) {
  .se-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.se-about-image-wrapper {
  position: relative;
}

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

.se-about-image-wrapper .se-exp-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--se-gradient-primary);
  color: var(--se-white);
  padding: 1.5rem;
  border-radius: var(--se-radius-xl);
  text-align: center;
  box-shadow: var(--se-shadow-lg);
  min-width: 140px;
}

.se-about-image-wrapper .se-exp-badge .se-years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.se-about-image-wrapper .se-exp-badge .se-label {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

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

.se-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.se-about-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--se-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.se-about-feature span {
  font-size: 0.95rem;
  color: var(--se-dark-gray);
}

/* ============================================================
   8. STATS / COUNTER SECTION
   ============================================================ */

.se-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .se-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.se-stat-item {
  text-align: center;
  padding: 2rem;
}

.se-stat-item .se-stat-number {
  font-family: var(--se-font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--se-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.se-stat-item .se-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */

.se-cta-section {
  padding: 5rem 0;
  background: var(--se-gradient-cta);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.se-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.se-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   10. FOOTER OVERRIDES
   ============================================================ */

.site-footer {
  background: var(--se-secondary-dark) !important;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .widget-title {
  color: var(--se-white) !important;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.site-footer .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--se-gradient-primary);
  border-radius: 2px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: color var(--se-transition-base);
}

.site-footer a:hover {
  color: var(--se-primary) !important;
}

/* ============================================================
   11. PAGE HEADER
   ============================================================ */

.se-page-header {
  background: var(--se-gradient-secondary);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.se-page-header h1 {
  color: var(--se-white);
  margin-bottom: 0.5rem;
}

.se-page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   12. CONTACT PAGE
   ============================================================ */

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

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

.se-contact-card {
  background: var(--se-white);
  border-radius: var(--se-radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--se-shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--se-transition-base);
}

.se-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--se-shadow-xl);
}

.se-contact-card .se-contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--se-radius-full);
  margin: 0 auto 1rem;
}

.se-contact-card .se-contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--se-primary);
}

.se-contact-card h4 {
  margin-bottom: 0.5rem;
}

.se-contact-card p {
  color: var(--se-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   13. ANIMATIONS
   ============================================================ */

@keyframes se-fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.se-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.se-animate.se-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   14. MISC
   ============================================================ */

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--se-primary);
  color: var(--se-white);
}

/* Section Divider */
.se-divider {
  width: 60px;
  height: 4px;
  background: var(--se-gradient-primary);
  border-radius: 2px;
  margin: 1.5rem auto;
}

.se-divider-left {
  margin: 1.5rem 0;
}

/* Spacer */
.se-spacer {
  height: 2rem;
}
