/* ============================================
   DIS Plumbing & Heating - Page Styles
   ============================================ */

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,0.2), transparent);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #00B4D8, #0077B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-fire {
  background: linear-gradient(135deg, #FF6B35, #FF4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.trust-stars {
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  position: relative;
}

.hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero-icon.water {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.2));
  color: var(--accent-blue);
  position: absolute;
  top: -20px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.hero-icon.fire {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 69, 0, 0.2));
  color: var(--accent-orange);
  position: absolute;
  bottom: -20px;
  right: -20px;
  animation: float 4s ease-in-out infinite 0.5s;
}

.hero-glass-card h3 {
  margin-bottom: 12px;
  margin-top: 40px;
}

.hero-glass-card p {
  margin-bottom: 24px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
  width: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 69, 0, 0.05));
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 20px;
  color: var(--accent-orange);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  background: var(--fire-gradient);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
  border-color: transparent;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.service-link {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.service-link:hover {
  color: #ff8c5a;
}

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

.how-it-works {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    #000000;
}

.how-it-works-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.how-step {
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  max-width: 260px;
  position: relative;
}

.how-step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fire-gradient);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.how-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 69, 0, 0.1));
  border-radius: 50%;
  color: var(--accent-orange);
  transition: var(--transition-normal);
}

.how-step:hover .how-step-icon {
  background: var(--fire-gradient);
  color: white;
  transform: scale(1.1);
}

.how-step h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.how-step p {
  font-size: 0.9rem;
  margin: 0;
}

.how-step-connector {
  width: 60px;
  min-width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.6), rgba(255, 107, 53, 0.3));
  margin-top: 60px;
  position: relative;
}

.how-step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-orange);
  border-top: 2px solid var(--accent-orange);
  transform: rotate(45deg);
}

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

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

  .how-it-works-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .how-step-connector {
    display: none;
  }
  
  .how-step {
    flex: 1 1 calc(50% - 24px);
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .how-step {
    flex: 1 1 100%;
  }
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.home-project-card {
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.home-project-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
  overflow: hidden;
}

.home-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-project-content {
  padding: 24px;
}

.home-project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.home-project-content h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.home-project-content p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 992px) {
  .home-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .home-projects-grid {
    grid-template-columns: 1fr;
  }
}

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

.why-us {
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    #000000;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.why-us-visual {
  position: relative;
  display: flex;
}

.van-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.van-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.van-image-wrapper:hover .van-image {
  transform: scale(1.03);
}

.van-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: center;
  z-index: 2;
}

.van-overlay h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.van-overlay p {
  font-size: 0.95rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.why-us-content h2 {
  margin-bottom: 16px;
}

.why-us-content > p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 69, 0, 0.15));
  border-radius: 12px;
  color: var(--accent-orange);
}

.feature-item h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.95rem;
  margin: 0;
}

.cta-card {
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 69, 0, 0.08));
  border-color: rgba(255, 107, 53, 0.3);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-card h3 {
  margin-bottom: 16px;
}

.cta-card p {
  margin-bottom: 24px;
}

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

.testimonial-section {
  background: 
    radial-gradient(ellipse at 100% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    #000000;
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fire-gradient);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author strong {
  display: block;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition-normal);
  z-index: 10;
}

.testimonial-nav:hover {
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-prev {
  left: -24px;
}

.testimonial-next {
  right: -24px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dot.active {
  background: var(--accent-orange);
  transform: scale(1.2);
}

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

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

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 69, 0, 0.1));
  border-color: rgba(255, 107, 53, 0.3);
}

.cta-content h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.cta-content p {
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  border: none;
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

.footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 0.98));
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 56px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-brand p {
  margin-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

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

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.social-icon.whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}

.social-icon.tiktok:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon.facebook:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.4);
  color: #1877F2;
}

.social-icon.instagram:hover {
  background: linear-gradient(135deg, rgba(245, 96, 64, 0.15), rgba(193, 53, 132, 0.15));
  border-color: rgba(193, 53, 132, 0.4);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badges .badge {
  padding: 5px 14px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-orange);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
    #000000;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-full-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-full-card:hover::before {
  opacity: 1;
  width: 100%;
}

.service-full-card .service-icon {
  margin: 0 0 24px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 69, 0, 0.05));
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 20px;
  color: var(--accent-orange);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-full-card:hover .service-icon {
  background: var(--fire-gradient);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
  border-color: transparent;
}

.service-full-card .service-icon svg {
  width: 36px;
  height: 36px;
}

.service-full-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-full-card p {
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PROJECTS PAGE
   ============================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition-normal);
}

.project-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 69, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 3rem;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.project-content {
  padding: 24px;
}

.project-content h4 {
  margin-bottom: 8px;
}

.project-content p {
  font-size: 0.95rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

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

.form-group select option {
  background: var(--primary-dark);
  color: var(--text-primary);
}

.contact-info-card {
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 69, 0, 0.15));
  border-radius: 12px;
  color: var(--accent-orange);
}

.info-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.info-item p,
.info-item a {
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* ---------- About Story ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content > p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content > p:last-of-type {
  margin-bottom: 0;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  padding: 40px;
  text-align: center;
  max-width: 420px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.06));
  border-color: rgba(0, 180, 216, 0.3);
}

.about-card .cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  margin-bottom: 16px;
}

.about-card p {
  margin-bottom: 24px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  padding: 32px;
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--water-gradient);
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
}

.team-card.featured .team-avatar {
  background: var(--fire-gradient);
}

.team-card h4 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

.team-role {
  display: block;
  color: var(--accent-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.team-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-blue);
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.2));
  border-radius: 16px;
  color: var(--accent-blue);
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  background: var(--water-gradient);
  color: white;
  transform: scale(1.1);
}

.value-card h4 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Stats ---------- */
.stats-section {
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    var(--primary-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 32px;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 3rem;
  margin-bottom: 8px;
}

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

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
    var(--primary-dark);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-item.open {
  border-color: rgba(0, 180, 216, 0.5);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.2));
  border-radius: 50%;
  color: var(--accent-blue);
  transition: var(--transition-normal);
}

.faq-item.open .faq-icon {
  background: var(--water-gradient);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--accent-blue);
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-answer a:hover {
  color: #33c5e4;
}

/* Still Have Questions CTA */
.faq-cta-section {
  padding-top: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

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

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

  .about-visual {
    order: -1;
  }

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

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

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

  .testimonial-nav {
    display: none;
  }

  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-logo {
    margin: 0 auto 20px;
    display: block;
  }

  .footer-brand p {
    font-size: 0.88rem;
    max-width: 320px;
    margin: 0 auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .footer-links:last-of-type {
    border-bottom: none;
  }

  .footer-links h4,
  .footer-contact h4 {
    margin-bottom: 16px;
    font-size: 0.78rem;
  }

  .footer-links ul,
  .footer-contact ul {
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .footer-contact li {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-contact li svg {
    margin: 0;
  }

  .footer-contact li a,
  .footer-contact li span {
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-badges .badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

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

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

/* ============================================
   NOTIFICATIONS
   ============================================ */

.notification {
  position: fixed;
  bottom: 100px;
  right: 24px;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  transform: translateX(120%);
  transition: var(--transition-normal);
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.notification.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

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

/* ---------- Service Hero Banner ---------- */
.service-hero {
  position: relative;
  overflow: hidden;
  padding: 230px 0 110px;
  text-align: center;
  background: var(--primary-dark);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.service-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.6);
}

.service-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(0, 180, 216, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(255, 107, 53, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 119, 182, 0.12) 0%, transparent 60%);
}

.service-hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 30% 70%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 50% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 72% 55%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 88% 35%, rgba(255,255,255,0.25), transparent);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero .hero-text {
  font-size: 1.2rem;
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.service-hero .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- Service Overview ---------- */
.service-overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-overview-content h2 {
  margin-bottom: 20px;
}

.service-overview-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-included {
  padding: 32px;
}

.service-included h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-included ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.service-included li svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Service Benefits ---------- */
.service-benefits {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
    var(--primary-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.2));
  border-radius: 16px;
  color: var(--accent-blue);
  transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
  background: var(--water-gradient);
  color: white;
  transform: scale(1.1);
}

.benefit-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.benefit-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Service Process ---------- */
.service-process {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--primary-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.process-step {
  padding: 32px;
  text-align: center;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}

.process-step:hover .process-number {
  background: var(--fire-gradient);
  color: white;
  transform: scale(1.1);
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Service Quote CTA ---------- */
.service-quote {
  padding: 60px 0;
}

.quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(0, 180, 216, 0.1));
  border-color: rgba(255, 107, 53, 0.3);
}

.quote-content h2 {
  margin-bottom: 12px;
}

.quote-content p {
  font-size: 1.1rem;
}

.quote-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Service Reviews ---------- */
.service-reviews {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--primary-dark);
}

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

.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.review-card .testimonial-stars {
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-primary);
  flex: 1;
}

.review-card .testimonial-author {
  justify-content: flex-start;
}

/* ---------- Service Detail Responsive ---------- */
@media (max-width: 992px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-included {
    position: static;
  }

  .quote-card {
    flex-direction: column;
    text-align: center;
  }

  .quote-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 180px 0 70px;
  }

  .service-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quote-card {
    padding: 32px 24px;
  }
}
