/* =============================================
   PAMUKKALE ELEKTRİK & SU – Premium CSS
   ============================================= */

/* ---- Variables ---- */
:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fdba74;
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --light: #f8fafc;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --green: #22c55e;
  --purple: #a855f7;
  --yellow: #eab308;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
}

.logo-icon {
  display: flex;
  gap: 2px;
  font-size: 1.2rem;
}

.logo-icon .fa-bolt {
  color: var(--primary);
}

.logo-icon .fa-droplet {
  color: var(--accent);
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroScale 20s ease-in-out infinite alternate;
}

@keyframes heroScale {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(15, 23, 42, 0.75) 50%,
      rgba(249, 115, 22, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 6rem;
  padding-bottom: 6rem;
  animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  animation: bounce 2s ease-in-out infinite;
  transition: var(--transition);
}

.scroll-down:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: #25d366;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  margin-top: 0.5rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--white);
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.about-list .fa-check-circle {
  color: var(--green);
  font-size: 0.85rem;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.7rem 0 0.4rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-icon {
  font-size: 1.8rem;
}

.card-orange .card-icon {
  color: var(--primary);
}

.card-blue .card-icon {
  color: var(--accent);
}

.card-green .card-icon {
  color: var(--green);
}

.card-purple .card-icon {
  color: var(--purple);
}

.card-orange {
  border-top: 3px solid var(--primary);
}

.card-blue {
  border-top: 3px solid var(--accent);
}

.card-green {
  border-top: 3px solid var(--green);
}

.card-purple {
  border-top: 3px solid var(--purple);
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr, var(--primary));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--clr, var(--primary)), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  background: color-mix(in srgb, var(--clr) 15%, transparent);
  color: var(--clr);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: color-mix(in srgb, var(--clr) 25%, transparent);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.6) 40%,
      transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-info {
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-info h3 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

.stars {
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-main {
  display: flex;
  justify-content: center;
}

.phone-cta {
  background: var(--dark-3);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
}

/* Phone ring animation */
.phone-ring {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-ring::before,
.phone-ring::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

.phone-ring::before {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.phone-ring::after {
  width: 130%;
  height: 130%;
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.phone-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
  animation: phonePulse 1.5s ease-in-out infinite;
}

@keyframes phonePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.phone-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.phone-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--primary-light);
}

.phone-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.phone-emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.phone-cta .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.phone-cta .btn-whatsapp {
  width: 100%;
  justify-content: center;
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.info-text span {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-logo .fa-bolt {
  color: var(--primary);
}

.footer-logo .fa-droplet {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.55);
  z-index: 900;
  transition: var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.55);
  }

  50% {
    box-shadow: 0 8px 45px rgba(249, 115, 22, 0.8);
  }
}

.floating-call:hover {
  transform: scale(1.12) translateY(-3px);
  background: var(--primary-dark);
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 2.5rem;
  }

  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(100vw, 320px);
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
  }

  /* Hero */
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  /* Grids */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .phone-cta {
    max-width: 100%;
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }

  .phone-number {
    font-size: 1.6rem;
  }

  .phone-ring {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .phone-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    gap: 0.8rem;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Buttons full width */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-whatsapp {
    margin-top: 0;
  }

  /* Services & Gallery single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1.2rem;
  }

  /* Service cards */
  .service-card {
    padding: 1.5rem 1.2rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* Contact */
  .phone-cta {
    padding: 1.5rem 1rem;
  }

  .phone-number {
    font-size: 1.4rem;
  }

  .phone-ring {
    width: 60px;
    height: 60px;
  }

  .phone-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .phone-sub {
    font-size: 0.75rem;
  }

  .phone-emergency {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
  }

  /* Info cards */
  .info-card {
    padding: 1rem;
    gap: 0.7rem;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .info-text strong {
    font-size: 0.82rem;
  }

  .info-text span {
    font-size: 0.78rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.3rem;
  }

  /* Gallery overlay always visible on mobile */
  .gallery-overlay {
    opacity: 1;
  }

  /* Logo */
  .logo {
    font-size: 0.95rem;
  }

  .logo-icon {
    font-size: 1rem;
  }

  /* Scroll down */
  .scroll-down {
    bottom: 1.5rem;
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0;
  }

  .footer-logo {
    font-size: 0.85rem;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .phone-number {
    font-size: 1.2rem;
  }

  .stat {
    min-width: 60px;
  }
}