/* ==========================================================================
   Base styles & CSS variables
   ========================================================================== */
:root {
  /* Color Palette */
  --primary-color: #22b6af; /* Teal */
  --primary-hover: #1b938d;
  --secondary-color: #ec774b; /* Coral/Orange */
  --secondary-hover: #d25f33;
  --accent-color: #74cee4; /* Soft Blue */
  --yellow-color: #ebc858; /* Warm Yellow */
  --green-color: #6fc191; /* Soft Green */
  --text-dark: #2d2d2d;
  --text-muted: #636363;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;

  /* Typography */
  --font-family-title: 'Montserrat', sans-serif;
  --font-family-body: 'Open Sans', sans-serif;

  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header and Navigation Topbar
   ========================================================================== */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 3px solid var(--yellow-color);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar i {
  margin-right: 6px;
  color: var(--yellow-color);
}

/* Main Navigation Bar */
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 90px;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.desktop-nav .menu-list {
  display: flex;
  align-items: stretch;
  gap: 25px;
  height: 100%;
}

.desktop-nav .menu-list > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.desktop-nav .menu-list > li > a {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  padding: 0 5px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
}

.desktop-nav .menu-list > li > a:hover,
.desktop-nav .menu-list > li > a.active {
  color: var(--primary-color);
}

/* Standard Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  padding: 10px 0;
  border-radius: 0 0 4px 4px;
  z-index: 150;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* Submenu Stack */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  padding: 10px 0;
  border-radius: 0 4px 4px 0;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mega Menu Structure */
.has-megamenu {
  position: static !important;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  padding: 25px 0;
  z-index: 150;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Megamenu Tabs */
.megamenu-tabs-nav {
  width: 25%;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.megamenu-tabs-nav .tab-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 12px 15px;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.megamenu-tabs-nav .tab-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.megamenu-tabs-nav .tab-btn.active {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.megamenu-tabs-content {
  width: 75%;
  padding-left: 30px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Megamenu Links layout */
.dep-container {
  display: flex;
  gap: 30px;
}

.dep-thumb {
  width: 180px;
  flex-shrink: 0;
}

.dep-thumb img {
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.dep-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.dep-links a, .temel-container a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.dep-links a:hover, .temel-container a:hover {
  color: var(--primary-color);
}

.temel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.temel-container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile Trigger Button */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.drawer-logo img {
  height: 45px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 4px;
}

.mobile-nav a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
  border-left: 2px solid var(--primary-color);
  margin: 5px 0 10px 10px;
  gap: 5px !important;
}

.mobile-submenu a {
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
}

.mobile-has-submenu.open > .mobile-submenu {
  display: flex;
}

.mobile-has-submenu.open > .submenu-toggle i {
  transform: rotate(180deg);
}

/* ==========================================================================
   Home Hero Section (Revolution Slider Style)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #2d2d2d;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

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

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

.hero-logo-wrapper {
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.hero-logo-rev {
  width: 180px;
  margin: 0 auto;
  filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.4));
}

.hero-slogan {
  font-family: var(--font-family-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-white);
  text-shadow: 0px 3px 8px rgba(0,0,0,0.5);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.hero-stars {
  margin-bottom: 25px;
}

.hero-stars i {
  color: var(--yellow-color);
  font-size: 18px;
  margin: 0 3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 38px;
  color: var(--bg-white);
  text-shadow: 0px 4px 10px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.hero-buttons {
  margin-top: 10px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   Counter Section (5 column stats)
   ========================================================================== */
.counter-section {
  position: relative;
  background-image: linear-gradient(rgba(40, 40, 40, 0.53), rgba(40, 40, 40, 0.53)), url('../assets/bg-13-1.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 100px 0;
  color: var(--bg-white);
}

.counter-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.counter-item {
  padding: 0 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}

.counter-item .counter-value {
  font-size: 65px;
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
  margin: 0;
  flex-shrink: 0;
}

.counter-item .counter-label {
  font-size: 13px;
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
}

/* ==========================================================================
   Intro Section 2-Column (Live Site Rebuilt)
   ========================================================================== */
.intro-section-2col {
  padding: 70px 0 0;
  background-color: var(--bg-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: stretch;
  gap: 0;
}

.intro-left {
  padding: 0 50px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.intro-subtitle-text {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 30px;
  color: var(--accent-color);
  margin-top: 30px;
  margin-bottom: 10px;
}

.intro-main-title {
  font-family: var(--font-family-title);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.intro-body-text {
  margin-bottom: 30px;
}

.intro-body-text p {
  font-family: var(--font-family-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 2;
}

.btn-intro {
  align-self: flex-start;
  background-color: var(--green-color);
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--bg-white);
  padding: 20px 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  margin-top: 30px;
  margin-bottom: 270px;
}

.btn-intro:hover {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.intro-right {
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  border-radius: 0;
  margin-left: 15px;
  padding-left: 30px;
  background-image: url('../assets/19-paral.jpeg');
  min-height: 600px;
}

/* ==========================================================================
   Features Icons Section
   ========================================================================== */
.features-icons-section {
  background-color: var(--accent-color); /* #74CEE4 */
  padding: 40px 0;
  position: relative;
  margin-top: -230px;
  z-index: 10;
}

.features-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.feature-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-icon-item h3 {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.3;
}

.feature-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-feature-cta {
  background-color: #E16C6C;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--bg-white);
  padding: 20px 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--transition-normal);
}

.btn-feature-cta:hover {
  background-color: #EDBF47;
  color: var(--bg-white);
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.intro-section {
  padding: 70px 0 50px;
  text-align: center;
  background-color: var(--bg-white);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-subtitle {
  font-family: var(--font-family-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: #5c5c5c;
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro-divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.intro-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   Services Grid Slider Carousel
   ========================================================================== */
.services-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-white);
}

.services-slider-container {
  position: relative;
  width: 100%;
}

.services-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.services-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 0;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.service-card.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card.bg-image .card-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.service-card.bg-image:hover .card-overlay {
  background-color: rgba(0, 0, 0, 0.55);
}

.service-card.text-card {
  padding: 30px;
  text-align: center;
  z-index: 2;
  transition: filter 0.3s ease;
}

.service-card.text-card:hover {
  filter: brightness(0.9);
}

.card-content {
  position: relative;
  z-index: 2;
}

.service-card.text-card h3 {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 500;
  color: var(--bg-white);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Background Colors for Service Text Cards */
.bg-red { background-color: #e16c6c; }
.bg-yellow { background-color: #edbf47; }
.bg-teal { background-color: #35b2b2; }
.bg-purple { background-color: #c489ce; }
.bg-green-dark { background-color: #8ba552; }
.bg-blue { background-color: #3898ff; }
.bg-purple-dark { background-color: #6b3f61; }
.bg-green { background-color: #6fc191; }
.bg-yellow-dark { background-color: #c9ba34; }
.bg-orange { background-color: #ec774b; }

/* Arrows & Pagination Dots */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

/* ==========================================================================
   Hakkımızda Page Rebuild Layouts
   ========================================================================== */
/* Hero Header with Background Image */
.page-hero {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/06-paral.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 3-Column Intro */
.about-intro-section {
  width: 100%;
  background-color: var(--bg-white);
  padding: 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.3fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.about-intro-col-image {
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.about-intro-col-counter {
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  min-height: 450px;
}

.counter-card-inner img {
  width: 80px;
  margin: 0 auto 20px;
}

.counter-card-inner .counter-title {
  font-family: var(--font-family-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.counter-number-wrap {
  font-size: 60px;
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--yellow-color);
  line-height: 1;
}

.about-intro-col-text {
  padding: 60px 50px;
  background-color: var(--bg-white);
}

.about-main-title {
  font-family: var(--font-family-title);
  font-size: 32px;
  font-weight: 700;
  color: #5c5c5c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-desc-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-services-title {
  font-family: var(--font-family-title);
  font-size: 22px;
  font-weight: 700;
  color: #5c5c5c;
  margin-bottom: 20px;
}

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

.checklist-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-col li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checklist-col li i {
  color: var(--primary-color);
  font-size: 12px;
}

.btn-about-cta {
  padding: 15px 40px;
  border-radius: 6px;
}

/* About Page Promo Section */
.about-promo-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.about-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.promo-card.contact-card {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}

.promo-card.contact-card .promo-title {
  font-family: var(--font-family-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.promo-card.contact-card .promo-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

.promo-btn {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.promo-btn:hover {
  background-color: var(--secondary-hover);
}

.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promo-subcard {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-subcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.subcard-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.subcard-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.subcard-body h4 {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 700;
  color: #5c5c5c;
  margin-bottom: 10px;
}

.subcard-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.subcard-link {
  font-family: var(--font-family-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subcard-link:hover {
  color: var(--primary-hover);
}

/* About Page Testimonial Section */
.about-testimonial-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--bg-white);
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slogan {
  font-family: var(--font-family-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.testimonial-stars {
  margin-bottom: 25px;
}

.testimonial-stars i {
  color: var(--yellow-color);
  font-size: 16px;
  margin: 0 2px;
}

.testimonial-quote {
  font-family: var(--font-family-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

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

.author-name {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 4px;
}

.author-job {
  font-size: 13px;
  color: var(--yellow-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   DEP (Support Education Programs) 3-column section
   ========================================================================== */
.dep-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  background-image: linear-gradient(135deg, rgba(34,182,175,0.05) 0%, rgba(236,119,75,0.05) 100%);
}

.dep-grid-3 {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 40px;
  align-items: stretch;
}

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

.dep-column.center-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dep-central-img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

.dep-item-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dep-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.dep-item-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  text-decoration: none;
  color: inherit;
}

.dep-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.dep-item-info h4 {
  font-family: var(--font-family-title);
  font-size: 14px;
  font-weight: 700;
  color: #5c5c5c;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.dep-item-card:hover .dep-item-info h4 {
  color: var(--primary-color);
}

/* ==========================================================================
   Instagram Follow Section
   ========================================================================== */
.instagram-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #22b6af 0%, #74cee4 50%, #ebc858 100%);
}

.instagram-box {
  display: flex;
  justify-content: center;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background-color: var(--bg-white);
  color: #E4405F;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.instagram-follow-btn i {
  font-size: 22px;
}

.instagram-follow-btn:hover {
  background-color: #E4405F;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Instagram Feed Grid Section
   ========================================================================== */
.instagram-feed-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.instagram-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.instagram-grid-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.instagram-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(228, 64, 95, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.instagram-grid-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  color: var(--bg-white);
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-grid-item:hover .insta-overlay i {
  transform: scale(1);
}

.instagram-btn-wrapper {
  text-align: center;
  padding: 40px 0;
  background-color: var(--bg-light);
}

.instagram-follow-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background-color: #E4405F;
  color: var(--bg-white);
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-follow-btn-pill:hover {
  background-color: #d13551;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.5);
  color: var(--bg-white);
}

/* Footer phone styling */
.footer-col.contact-cta h3 a {
  color: var(--bg-white);
  transition: color 0.2s ease;
}

.footer-col.contact-cta h3 a:hover {
  color: var(--yellow-color);
}

.footer-phone {
  margin-top: 10px;
}

.footer-phone a {
  font-family: var(--font-family-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-white);
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: var(--yellow-color);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-family-title);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   Feature Boxes Section (Info Section)
   ========================================================================== */
.features-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.feature-box {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border-bottom: 4px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-box:nth-child(1) { border-bottom-color: var(--primary-color); }
.feature-box:nth-child(2) { border-bottom-color: var(--secondary-color); }
.feature-box:nth-child(3) { border-bottom-color: var(--yellow-color); }

.feature-box-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box-icon img {
  width: 100%;
  height: auto;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ==========================================================================
   About Section & Dynamic Counter (Homepage)
   ========================================================================== */
.about-section {
  padding: 80px 0;
}

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

.about-image-card {
  position: relative;
  background-color: var(--primary-color);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100px;
  margin: 0 auto 20px;
}

.counter-value {
  font-size: 64px;
  font-family: var(--font-family-title);
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--yellow-color);
}

.counter-label {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 25px;
}

.about-bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 30px;
}

.about-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.about-bullet-list i {
  color: var(--primary-color);
}

/* ==========================================================================
   Program Showcase (Main trainings grid)
   ========================================================================== */
.programs-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

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

.program-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.program-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.program-info {
  padding: 25px;
}

.program-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.program-info h3 a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Contact / Appointment Section (Map + Form)
   ========================================================================== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.appointment-card {
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-color);
}

.appointment-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.appointment-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-family: var(--font-family-body);
  font-size: 14px;
  background-color: var(--bg-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(34, 182, 175, 0.15);
}

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

.map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  flex-grow: 1;
}

/* ==========================================================================
   Internal Pages Styling
   ========================================================================== */
.page-hero {
  background-color: #2b3a4a;
  padding: 70px 0;
  color: var(--bg-white);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 36px;
  color: var(--bg-white);
  text-transform: capitalize;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
}

.breadcrumb a:hover {
  color: var(--yellow-color);
}

.page-content-wrapper {
  padding: 60px 0;
}

.rich-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-dark);
}

.rich-text h2 {
  font-size: 24px;
  margin: 35px 0 15px;
  color: var(--primary-color);
}

.rich-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.rich-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.rich-text li {
  margin-bottom: 8px;
}

/* About page details */
.about-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-member img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 4px solid var(--primary-color);
}

.team-member h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: #282828;
  color: #b3b3b3;
  padding: 70px 0 0;
  font-size: 14px;
  border-top: 4px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--yellow-color);
  border-radius: 2px;
}

.footer-col.about img {
  height: 55px;
  margin-bottom: 20px;
}

.footer-col .description {
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background-color: #383838;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

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

.footer-col.links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-details i {
  color: var(--yellow-color);
  margin-top: 4px;
}

.contact-details a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  border-top: 1px solid #383838;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: block;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Counter: 5 -> 3 columns on tablets */
  .counter-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .counter-item:nth-child(3)::after {
    display: none;
  }

  /* Intro Section 2-Column Responsive */
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-left {
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }
  .btn-intro {
    align-self: center;
    margin-bottom: 60px;
  }
  .intro-right {
    min-height: 400px;
    margin-left: 0;
    margin-top: 20px;
  }

  /* Features Section Responsive */
  .features-icons-section {
    margin-top: 20px;
    padding: 40px 20px;
  }
  .features-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .feature-cta {
    justify-content: flex-start;
  }

  /* Services grid: 6 cols x 3 rows -> 3 cols x 6 rows */
  .services-slide {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 250px);
  }

  /* Hakkimizda Intro & Promo grids stack */
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-promo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-services-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  /* DEP section: 3 -> 1 column (stack) */
  .dep-grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dep-column.center-img {
    order: -1;
  }
  .dep-central-img {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 400px;
    padding: 40px 0;
  }
  .hero-slogan {
    font-size: 22px;
  }
  .hero-logo-rev {
    width: 130px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 16px;
  }

  /* Counter: 3 -> 1 column */
  .counter-grid-5 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .counter-inner {
    justify-content: center;
  }
  .counter-item::after {
    display: none !important;
  }
  .counter-item .counter-value {
    font-size: 50px;
  }
  .counter-item .counter-label {
    font-size: 12px;
  }

  /* Intro Section 2-Column adjustments */
  .intro-main-title {
    font-size: 32px;
  }
  .intro-subtitle-text {
    font-size: 24px;
  }

  /* Features Section Responsive mobile */
  .features-icons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-icon-item {
    justify-content: center;
  }
  .feature-cta {
    justify-content: center;
  }

  /* Intro adjustments */
  .intro-section {
    padding: 50px 0 40px;
  }
  .intro-title {
    font-size: 22px;
  }

  /* Services grid: 3 cols x 6 rows -> 2 cols x 9 rows */
  .services-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(9, 200px);
  }
  .service-card {
    height: 200px;
  }

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

  /* Programs grid */
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Instagram */
  .instagram-follow-btn-pill {
    font-size: 14px;
    padding: 12px 28px;
  }
  .instagram-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-grid-item:nth-child(n+4) {
    display: none;
  }

  /* Contact section */
  .contact-section {
    padding: 50px 0;
  }

  /* Footer phone */
  .footer-phone a {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  /* Services grid: 2 cols x 9 rows -> 1 col x 18 rows */
  .services-slide {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(18, 180px);
  }
  .service-card {
    height: 180px;
  }
  .instagram-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid-item:nth-child(n+5) {
    display: none;
  }
  .instagram-grid-item:nth-child(3),
  .instagram-grid-item:nth-child(4) {
    display: block;
  }
}

