/* =============================================
   MAVI KÖPÜK - Temizlik Hizmetleri
   Design System & Styles
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Primary Colors */
  --primary-50: #e8f4fd;
  --primary-100: #d1e9fb;
  --primary-200: #a3d3f7;
  --primary-300: #75bdf3;
  --primary-400: #47a7ef;
  --primary-500: #1a91eb;
  --primary-600: #0d74c4;
  --primary-700: #0a5793;
  --primary-800: #073a62;
  --primary-900: #031d31;

  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-teal: #00b8a9;
  --accent-sky: #38bdf8;

  /* Neutral Colors */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  /* Semantic Colors */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(26, 145, 235, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--neutral-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(26, 145, 235, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(26, 145, 235, 0.4);
  }
}

@keyframes bubble-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =============================================
   CONTAINER
   ============================================= */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .logo-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.2);
  border: 1.5px solid rgba(26, 145, 235, 0.2);
  transition: var(--transition-base);
  flex-shrink: 0;
  overflow: hidden;
}

.navbar-brand:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(26, 145, 235, 0.3);
}

.navbar-brand .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-menu a {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--neutral-600);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-menu a:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.navbar-menu a.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.3);
  border: none;
  cursor: pointer;
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 145, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
}

.btn-phone svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 30%, #d0e8ff 60%, #c0e0ff 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 145, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Bubbles Background */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(26, 145, 235, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: bubble-float linear infinite;
}

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

.hero-content {
  animation: fadeInLeft 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: 24px;
  border: 1px solid rgba(26, 145, 235, 0.15);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neutral-900);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--neutral-600);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 8px 25px rgba(26, 145, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 145, 235, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--primary-600);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-200);
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: white;
  border-color: var(--primary-400);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 145, 235, 0.1);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-600);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-top: 2px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--primary-400), var(--accent-cyan), var(--primary-300));
  border-radius: calc(var(--radius-xl) + 4px);
  z-index: -1;
  opacity: 0.5;
}

/* Floating Cards on Hero */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 3;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -20px;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-float-card .card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neutral-800);
}

.hero-float-card .card-value {
  font-size: 0.8rem;
  color: var(--primary-600);
  font-weight: 600;
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--neutral-900);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--neutral-200);
  transition: var(--transition-base);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-200);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-600);
  z-index: 2;
}

.service-card-body {
  padding: 28px;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.3);
}

.service-card:hover .service-card-icon svg {
  color: white;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--neutral-600);
}

.service-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-600);
  transition: var(--transition-fast);
}

.service-card-link:hover {
  gap: 12px;
  color: var(--primary-500);
}

.service-card-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

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

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

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

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, var(--primary-300), var(--accent-cyan));
  border-radius: calc(var(--radius-xl) + 6px);
  z-index: -1;
  opacity: 0.3;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: pulse-glow 3s ease-in-out infinite;
}

.experience-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}

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

.about-title {
  font-size: 2.2rem;
  color: var(--neutral-900);
  margin-bottom: 20px;
}

.about-title span {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  transition: var(--transition-base);
}

.about-feature:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--neutral-500);
}

/* =============================================
   WHY US SECTION
   ============================================= */

.why-us {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-cyan);
}

.why-us .section-title {
  color: white;
}

.why-us .section-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

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

.why-us-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-6px);
}

.why-us-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(56, 189, 248, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.why-us-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
}

.why-us-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* =============================================
   GALLERY / PORTFOLIO SECTION
   ============================================= */

.gallery {
  padding: var(--section-padding);
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(7, 58, 98, 0.8));
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

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

.testimonials {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--neutral-100);
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-100);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-100);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
}

.testimonial-author-info p {
  font-size: 0.82rem;
  color: var(--neutral-400);
}

/* =============================================
   PROCESS SECTION
   ============================================= */

.process {
  padding: var(--section-padding);
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-200), var(--primary-400), var(--primary-200));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 8px 25px rgba(26, 145, 235, 0.3);
  border: 4px solid white;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

/* =============================================
   SERVICE AREAS
   ============================================= */

.service-areas {
  padding: var(--section-padding);
  background: var(--neutral-50);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--neutral-700);
  transition: var(--transition-base);
}

.area-tag:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  color: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-tag svg {
  width: 18px;
  height: 18px;
  color: var(--primary-500);
}

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

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: white;
  color: var(--primary-600);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
  padding: var(--section-padding);
  background: white;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.25);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--primary-600);
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-info-card a:hover {
  color: var(--primary-500);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-700);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.3);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* Footer specific social links */
.footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.footer .social-link:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.4);
}

/* Contact Form */
.contact-form {
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--neutral-100);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--neutral-800);
  margin-bottom: 8px;
}

.contact-form .form-subtitle {
  color: var(--neutral-500);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--neutral-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: white;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--neutral-800);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(26, 145, 235, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(26, 145, 235, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 145, 235, 0.4);
}

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

.footer {
  background: var(--neutral-900);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-wrapper .logo-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-logo-wrapper .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand .brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 6px;
}

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

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

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-base);
  animation: pulse-glow 2s ease-in-out infinite;
  cursor: pointer;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* =============================================
   PHONE CALL FLOATING BUTTON
   ============================================= */

.phone-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 145, 235, 0.45);
  z-index: 999;
  transition: var(--transition-base);
  animation: pulse-glow-phone 2s ease-in-out infinite;
  cursor: pointer;
  color: white;
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(26, 145, 235, 0.65);
  color: white;
}

.phone-float svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

@keyframes pulse-glow-phone {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(26, 145, 235, 0.45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(26, 145, 235, 0.75);
  }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 110px;
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-base);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--primary-600);
  transform: translateY(-3px);
}

/* =============================================
   SERVICE DETAIL MODAL
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: white;
  transform: rotate(90deg);
}

.modal-title {
  position: absolute;
  bottom: 20px;
  left: 32px;
  color: white;
  font-size: 1.8rem;
  z-index: 5;
}

.modal-body {
  padding: 36px;
}

.modal-body p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-body h4 {
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 14px;
}

.modal-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--neutral-600);
  padding: 10px 14px;
  background: var(--neutral-50);
  border-radius: var(--radius-sm);
}

.modal-features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-500);
  flex-shrink: 0;
}

.modal-cta {
  display: flex;
  gap: 12px;
}

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

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-base);
    z-index: 999;
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-menu a {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

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

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

  .gallery-item.large {
    grid-column: span 1;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-section h2 {
    font-size: 1.8rem;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 24px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .phone-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    left: 20px;
  }

  .scroll-top {
    right: 86px;
    bottom: 20px;
  }
}