/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Mavi ve Pembe Renk Paleti */
  --primary-color: #ff8da1;         /* Canlı Açık Pembe */
  --primary-light: #ffb6c1;         /* Yumuşak Pudra Pembe */
  --primary-dark: #e05275;          /* Koyu Pembe / Fuşya */
  --secondary-color: #00b4d8;       /* Canlı Turkuaz / Mavi */
  --secondary-dark: #0077b6;        /* Derin Safir Mavi */
  --accent-color: #90e0ef;          /* Açık Buz Mavisi */

  --text-light: #ffffff;
  --text-dim: #e2eafc;
  --glass-bg: rgba(10, 20, 38, 0.76);
  --glass-border: rgba(0, 180, 216, 0.28);
  --glass-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.5);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-image: url('images/klima_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 141, 161, 0.28), transparent 60%),
              radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.3), transparent 60%),
              linear-gradient(135deg, rgba(8, 14, 28, 0.94) 0%, rgba(20, 12, 26, 0.92) 100%);
  z-index: -1;
}

/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ==========================================
   TOP NAVIGATION
   ========================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 20px;
  border-radius: 0 0 15px 15px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 180, 216, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 101;
  text-decoration: none;
  color: var(--text-light);
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary-light);
  display: block;
  z-index: 101;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 18, 35, 0.97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 141, 161, 0.3);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-200%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  pointer-events: none;
}

.nav-links.active {
  transform: translateY(15px);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s;
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-contact {
  display: none;
}

/* ==========================================
   MAIN LAYOUT
   ========================================== */
.main-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 130px 20px 20px 20px;
}

.app-container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.8s ease-out;
}

.intro-text {
  display: none;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header */
.header {
  text-align: center;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #00b4d8 20%, #ff8da1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(255, 141, 161, 0.45));
  animation: float 3s ease-in-out infinite;
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.logo-text h1 span {
  background: linear-gradient(135deg, #ff8da1 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #90e0ef;
  margin-top: 5px;
  text-transform: uppercase;
}

/* Info Bar */
.info-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 12px;
  font-size: 0.85rem;
  border-radius: 12px;
  gap: 10px;
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.info-item {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  color: var(--secondary-color);
}

.divider {
  display: none;
}

/* CTA Button - Pembe & Mavi Gradyan */
.cta-button {
  width: 100%;
  background: linear-gradient(135deg, #ff8da1 0%, #e05275 50%, #0077b6 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(224, 82, 117, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.cta-button:active {
  transform: scale(0.96);
}

.pulse-effect {
  animation: pulseShadow 2s infinite;
}

/* Grid Menu */
.grid-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  text-decoration: none;
  color: var(--text-light);
  border-radius: 16px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.menu-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 141, 161, 0.12);
  border-color: rgba(255, 141, 161, 0.5);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.25);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.3);
  box-shadow: inset 0 0 10px rgba(0, 180, 216, 0.15);
  transition: all 0.3s ease;
}

.icon-circle.phone {
  color: #00b4d8;
}

.icon-circle.whatsapp {
  color: #25D366;
}

.icon-circle.service {
  color: #ff8da1;
}

.icon-circle.gallery {
  color: #90e0ef;
}

.icon-circle.location {
  color: #ffb6c1;
}

.icon-circle.contact {
  color: #00b4d8;
}

.menu-item:hover .icon-circle.service,
.menu-item:hover .icon-circle.location {
  color: #ffffff;
  background: #ff8da1;
  box-shadow: 0 0 18px rgba(255, 141, 161, 0.6);
}

.menu-item:hover .icon-circle.phone,
.menu-item:hover .icon-circle.contact {
  color: #ffffff;
  background: #00b4d8;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.6);
}

.menu-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

/* Other Pages Content Container */
.page-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-content {
  padding: 30px;
  border-radius: 16px;
  line-height: 1.6;
}

.page-content h2 {
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ff8da1 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-size: 2rem;
}

.page-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-radius: 16px;
  margin-top: 10px;
  width: 100%;
}

.footer .credits {
  opacity: 0.6;
  margin-top: 5px;
}

/* ==========================================
   MODAL & FORM STYLES
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 450px;
  padding: 25px;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(0, 180, 216, 0.4);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 141, 161, 0.3);
  padding-bottom: 10px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.3rem;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 141, 161, 0.3);
}

/* Animations & Ripple */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 141, 161, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 180, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 141, 161, 0);
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 600ms linear;
  background-color: rgba(255, 255, 255, 0.4);
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   DESKTOP LAYOUT
   ========================================== */
@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .main-wrapper {
    padding-top: 120px;
  }

  .top-nav {
    padding: 15px 40px;
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .nav-logo {
    font-size: 1.8rem;
  }

  .nav-links {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 15px;
    box-shadow: none;
    border: none;
    width: auto;
    margin-left: auto;
    margin-right: 20px;
  }

  .nav-links a {
    border-bottom: none;
    padding: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 8px;
  }

  .nav-links a:hover {
    color: var(--text-light);
    background: rgba(255, 141, 161, 0.2);
    box-shadow: 0 0 10px rgba(255, 141, 161, 0.4);
    transform: scale(1.05);
  }

  .nav-contact {
    display: block;
  }

  .nav-contact .pulse-btn {
    background: linear-gradient(135deg, #00b4d8 0%, #ff8da1 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .nav-contact .pulse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 141, 161, 0.6);
  }

  .app-container {
    max-width: 1200px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .app-container.page-container {
    flex-direction: column;
    align-items: stretch;
  }

  .page-content {
    padding: 50px;
  }

  .hero-section {
    flex: 1.2;
    align-items: flex-start;
    text-align: left;
  }

  .header {
    text-align: left;
  }

  .logo-wrapper {
    justify-content: flex-start;
  }

  .intro-text {
    display: block;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 20px 0 30px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .info-bar {
    display: none;
  }

  .cta-section {
    width: auto;
  }

  .cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
  }

  .grid-menu {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: rgba(0, 0, 0, 0.25);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .menu-item {
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.04);
  }

  .footer {
    max-width: 1200px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
    border-radius: 0;
  }
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 20px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-tab:hover {
  background: rgba(0, 180, 216, 0.2);
  color: var(--text-light);
  border-color: rgba(0, 180, 216, 0.6);
}

.gallery-tab.active {
  background: linear-gradient(135deg, #ff8da1 0%, #00b4d8 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.45);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  background: rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 141, 161, 0.6);
  box-shadow: 0 10px 25px rgba(255, 141, 161, 0.25);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 12px 15px;
  background: rgba(10, 18, 35, 0.92);
  text-align: center;
  border-top: 1px solid rgba(0, 180, 216, 0.2);
}

.gallery-caption h4 {
  font-family: var(--font-heading);
  color: #ffb6c1;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.gallery-caption span {
  font-size: 0.8rem;
  color: #90e0ef;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 141, 161, 0.4);
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

/* ==========================================
   SERVICES & WHY US GRIDS
   ========================================== */
.services-grid,
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 15px;
}

/* Hizmet Kartları - Açık Pembe ve Mavi Işıltı */
.service-card {
  background: rgba(255, 182, 193, 0.08);
  border: 1px solid rgba(255, 182, 193, 0.35);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.08);
  display: block;
  text-decoration: none;
  color: inherit;
  scroll-margin-top: 100px;
}

.why-us-card {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff8da1, #00b4d8);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8, #ff8da1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 182, 193, 0.16);
  border-color: rgba(255, 182, 193, 0.8);
  box-shadow: 0 14px 35px rgba(255, 141, 161, 0.25);
}

.why-us-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 180, 216, 0.14);
  border-color: rgba(0, 180, 216, 0.6);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.25);
}

.service-card:hover::before,
.why-us-card:hover::before {
  opacity: 1;
}

.service-card .click-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #ffb6c1;
  margin-top: 14px;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 182, 193, 0.14);
  border-radius: 20px;
  border: 1px solid rgba(255, 182, 193, 0.4);
  transition: all 0.2s ease;
}

.service-card:hover .click-badge {
  transform: translateX(4px);
  background: linear-gradient(90deg, #ff8da1, #00b4d8);
  color: #ffffff;
  border-color: #ffffff;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 182, 193, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ff8da1;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(255, 182, 193, 0.2);
  border: 1px solid rgba(255, 182, 193, 0.4);
}

.why-us-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00b4d8;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.35);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #ff8da1 0%, #00b4d8 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 141, 161, 0.6);
  border-color: #ffffff;
}

.why-us-card:hover .why-us-icon {
  background: linear-gradient(135deg, #00b4d8 0%, #ff8da1 100%);
  color: #ffffff;
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffe4e8;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #90e0ef;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #fce4ec;
  margin-bottom: 0;
}

.why-us-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e2eafc;
  margin-bottom: 0;
}

/* Service Detail Modal */
.service-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.service-detail-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.service-detail-card {
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(0, 180, 216, 0.45);
  box-shadow: 0 10px 40px rgba(255, 141, 161, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.service-detail-modal.active .service-detail-card {
  transform: translateY(0);
}

.service-detail-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 141, 161, 0.4);
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-card:last-child {
    grid-column: span 2;
  }
}
