/* ========================
   GTK Studio - Modern Minimal Design
   ======================== */

:root {
  --anthracite: #2C2C2C;
  --anthracite-light: #3D3D3D;
  --soft-gray: #F5F5F5;
  --white: #FFFFFF;
  --primary-dark: #2C2C2C;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --accent: #2C2C2C;
  --accent-green: #7dd87d;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ========================
   Typography
   ======================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========================
   Navbar
   ======================== */

.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(44, 44, 44, 0.05);
}

.navbar-custom.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--anthracite) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateX(5px);
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled .logo-img {
  height: 38px;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.02em;
}

.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.5rem;
  padding: 0.6rem 1rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--anthracite);
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--anthracite) 80%, var(--accent-green) 100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover .nav-indicator {
  transform: translateX(-50%) scaleX(1);
}

.nav-link-cta {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-light) 100%);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  margin-left: 1rem;
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.2);
}

.nav-link-cta:hover {
  background: linear-gradient(135deg, var(--anthracite-light) 0%, var(--anthracite) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.nav-link-cta .nav-indicator {
  display: none;+90 216 912 14 57
}

/* Scroll Progress Bar */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--anthracite), #4a4a4a, var(--anthracite));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease;
  z-index: 1001;
  border-radius: 0 3px 3px 0;
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:hover {
  background-color: rgba(44, 44, 44, 0.05);
  transform: scale(1.05);
}

.navbar-toggler-icon {
  width: 26px;
  height: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--anthracite);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler-icon::before {
  top: 0;
  box-shadow: 0 8.5px 0 var(--anthracite);
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 8.5px;
  transform: rotate(45deg);
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 8.5px;
  transform: rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.98) 0%, rgba(60, 60, 60, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2.5rem 2rem;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    will-change: right;
  }

  .navbar-collapse.show {
    right: 0;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .navbar-collapse.collapsing {
    right: 0;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .navbar-collapse:not(.show) {
    right: -100%;
  }

  /* Mobile Menu Close Button */
  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
  }

  .navbar-collapse.show .mobile-menu-close {
    animation: fadeInScaleRotate 0.4s ease forwards 0.3s;
  }

  @keyframes fadeInScaleRotate {
    to {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) rotate(90deg);
  }

  .mobile-menu-close:active {
    transform: scale(0.95) rotate(90deg);
  }

  .mobile-menu-close svg {
    transition: transform 0.3s ease;
  }

  .navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(125, 216, 125, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .navbar-collapse.show::before {
    opacity: 1;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }

  .navbar-collapse .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
  }

  .navbar-collapse.show .nav-item {
    animation: slideInFromRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.15s; }
  .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.20s; }
  .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.25s; }
  .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.30s; }
  .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.35s; }
  .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.40s; }

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

  .navbar-collapse .nav-link {
    margin: 0;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link:active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white) !important;
    border-color: rgba(125, 216, 125, 0.3);
    transform: translateX(5px);
  }

  .navbar-collapse .nav-link-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, #6bc96b 100%);
    color: var(--anthracite) !important;
    margin: 1rem 0 0 0;
    box-shadow: 0 4px 15px rgba(125, 216, 125, 0.3);
    border: 1px solid transparent;
  }

  .navbar-collapse .nav-link-cta:hover {
    background: linear-gradient(135deg, #6bc96b 0%, var(--accent-green) 100%);
    transform: translateY(-2px) translateX(0);
    box-shadow: 0 6px 20px rgba(125, 216, 125, 0.4);
  }

  .navbar-collapse .nav-indicator {
    display: none;
  }

  /* Mobile Menu Overlay */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9998;
    pointer-events: none;
  }

  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

/* Hide close button on desktop - OUTSIDE media query */
@media (min-width: 992px) {
  .mobile-menu-close {
    display: none !important;
  }
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(28, 28, 28, 0.85) 0%, 
    rgba(44, 44, 44, 0.75) 50%, 
    rgba(20, 20, 20, 0.9) 100%);
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #3d3d3d, #2c2c2c);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4a4a4a, #3d3d3d);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge-icon {
  color: var(--accent-green);
}

.hero-title {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}



@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================
   Buttons
   ======================== */

.btn-primary-custom {
  background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
  color: var(--anthracite);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
  color: var(--anthracite);
}

.btn-primary-custom i {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(5px);
}

.btn-secondary-custom {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-light) 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 44, 44, 0.4);
  color: var(--white);
}

.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--anthracite);
  border: 2px solid var(--anthracite);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-brand-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--anthracite);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-brand-outline:hover::before {
  transform: scaleX(1);
}

.btn-brand-outline:hover {
  color: var(--white);
  border-color: var(--anthracite);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.25);
}

.btn-brand-outline svg {
  transition: transform 0.3s ease;
}

.btn-brand-outline:hover svg {
  transform: translateX(5px);
}

/* ========================
   Sections
   ======================== */

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   Brand Introduction Section
   ======================== */

.brand-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
  padding: 8rem 0;
  overflow: hidden;
}

/* Brand Header */
.brand-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.brand-header-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.brand-header-decoration svg {
  animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.brand-title {
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.brand-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Brand Story - Split Layout */
.brand-story-wrapper {
  margin-bottom: 6rem;
}

.brand-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-text {
  padding-right: 2rem;
}

.brand-intro-block {
  margin-bottom: 2.5rem;
}

.brand-intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.brand-intro-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--anthracite);
  border-radius: 2px;
}

.brand-intro-lead {
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
}

.brand-philosophy {
  margin-bottom: 2.5rem;
}

.brand-philosophy p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.brand-philosophy strong {
  color: var(--anthracite);
  font-weight: 600;
}

.brand-philosophy em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}

/* Brand Values Grid */
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.brand-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Sadece masaüstü ve tablet için hover efektleri */
@media (min-width: 769px) {
  .brand-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
  }
  
  .brand-value-item:hover svg {
    transform: scale(1.15) rotate(5deg);
  }
}

.brand-value-item svg {
  margin-bottom: 1rem;
  color: var(--anthracite);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brand-value-item span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  word-break: break-word;
}

/* Brand Visual Area */
.brand-story-visual {
  position: relative;
  height: 600px;
  overflow: visible;
}

/* Mobilde overflow kontrolü */
@media (max-width: 768px) {
  .brand-story-visual {
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
}

.brand-visual-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brand-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-visual-main:hover .brand-main-image {
  transform: scale(1.08);
}

.brand-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  opacity: 1;
  transition: all 0.4s ease;
}

.brand-overlay-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Floating Cards */
.brand-floating-card {
  position: absolute;
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  z-index: 5;
  max-width: 280px;
}

/* Sadece masaüstü için animasyon ve hover efektleri */
@media (min-width: 993px) {
  .brand-floating-card {
    animation: floatCard 4s ease-in-out infinite;
  }
  
  .brand-floating-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 20px 50px rgba(125, 216, 125, 0.2);
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.02);
  }
}

.brand-card-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.brand-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.brand-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.brand-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.brand-card-2 {
  bottom: 15%;
  left: -15%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.brand-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--anthracite);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.brand-card-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Our Approach Section */
.brand-approach-section {
  margin-top: 6rem;
}

.brand-approach-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.brand-approach-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.brand-approach-title::before,
.brand-approach-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--anthracite) 0%, var(--accent-green) 100%);
}

.brand-approach-title::before {
  right: calc(100% + 20px);
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--anthracite) 100%);
}

.brand-approach-title::after {
  left: calc(100% + 20px);
}

.brand-approach-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.brand-approach-emphasis {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
}

.brand-approach-emphasis strong {
  color: var(--anthracite);
  font-weight: 700;
  position: relative;
}

/* Brand Gallery Grid */
.brand-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 450px;
}

.brand-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* First row: 7-5 pattern */
.brand-gallery-item:nth-child(1) {
  grid-column: span 7;
}

.brand-gallery-item:nth-child(2) {
  grid-column: span 5;
}

/* Second row: 5-7 pattern */
.brand-gallery-item:nth-child(3) {
  grid-column: span 5;
}

.brand-gallery-item:nth-child(4) {
  grid-column: span 7;
}


.brand-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.brand-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-gallery-item:hover .brand-gallery-overlay {
  transform: translateY(0);
}

.brand-gallery-overlay h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.brand-gallery-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

/* Animation on Scroll */
.brand-story-text,
.brand-story-visual,
.brand-gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.brand-story-text.animate-in,
.brand-story-visual.animate-in,
.brand-gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.brand-gallery-item:nth-child(1) { transition-delay: 0.1s; }
.brand-gallery-item:nth-child(2) { transition-delay: 0.2s; }
.brand-gallery-item:nth-child(3) { transition-delay: 0.3s; }
.brand-gallery-item:nth-child(4) { transition-delay: 0.4s; }

/* ========================
   Steps Section
   ======================== */

.steps-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Steps Header */
.steps-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.steps-header-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.steps-title {
  margin-bottom: 1rem;
}

.steps-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Steps Grid - New Minimal Design */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  /* Animasyon yok - direkt görünür */
}

.step-card-inner {
  position: relative;
  height: 100%;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.step-card:hover .step-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-green);
}

/* Step Number - Large Watermark Style */
.step-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--anthracite);
  opacity: 0.04;
  letter-spacing: -4px;
  transition: all 0.5s ease;
  z-index: 0;
}

.step-card:hover .step-card-number {
  opacity: 0.08;
  transform: scale(1.1) rotate(-5deg);
}

/* Step Content */
.step-card-content {
  position: relative;
  z-index: 1;
}

.step-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.step-card:hover .step-card-title {
  color: var(--text-primary);
}

.step-card-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Accent Line - Animated Bottom Border */
.step-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), rgba(125, 216, 125, 0.5));
  border-radius: 2px 2px 0 0;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-card-accent {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }
  
  .step-card-inner {
    padding: 2.5rem 2rem;
  }
  
  .step-card-number {
    font-size: 5rem;
    top: 1rem;
    right: 1rem;
  }
  
  .step-card-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 576px) {
  .steps-section {
    padding: 5rem 0;
  }
  
  .steps-header {
    margin-bottom: 3rem;
  }
  
  .steps-subtitle {
    font-size: 1.1rem;
  }
  
  .step-card-inner {
    padding: 2rem 1.5rem;
  }
  
  .step-card-number {
    font-size: 4rem;
  }
  
  .step-card-title {
    font-size: 1.25rem;
  }
  
  .step-card-description {
    font-size: 1rem;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Legacy Support - Keep for backwards compatibility */
.steps-container {
  display: none;
}

.step-icon {
  display: none;
}

/* ========================
   Services Section
   ======================== */

.services-section {
  background-color: var(--soft-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Masaüstü görünümde kare kartlar */
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .service-card {
    aspect-ratio: 1 / 1;
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-green);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--soft-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--anthracite);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.service-card:hover .service-icon {
  background-color: var(--anthracite);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================
   CTA Section
   ======================== */

.cta-section {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

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

/* ========================
   Footer
   ======================== */

.footer {
  background-color: var(--anthracite);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--anthracite);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ========================
   Active Navigation State
   ======================== */

.navbar-nav .nav-link.active {
  color: var(--anthracite) !important;
  background-color: rgba(44, 44, 44, 0.08);
}

.navbar-nav .nav-link.active .nav-indicator {
  transform: translateX(-50%) scaleX(1);
}

/* ========================
   Hero Enhancements
   ======================== */

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(44, 44, 44, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(74, 74, 74, 0.2) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

/* Floating Animation for Hero Stats */
.hero-stats {
  animation: fadeInUp 1s ease-out 1s both, floatStats 3s ease-in-out infinite;
}

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

/* Enhanced Stat Items */
.stat-item {
  animation: scaleIn 0.5s ease-out backwards;
}

.stat-item:nth-child(1) {
  animation-delay: 1.1s;
}

.stat-item:nth-child(3) {
  animation-delay: 1.2s;
}

.stat-item:nth-child(5) {
  animation-delay: 1.3s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Glassmorphism Navbar Enhancement */
@supports (backdrop-filter: blur(10px)) {
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
  
  .navbar-custom.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
  }
}

/* Enhanced Hero Badge */
.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover::before {
  width: 300px;
  height: 300px;
}

/* Enhanced Brand Cards */
.brand-image-card {
  position: relative;
  overflow: hidden;
}

.brand-image-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(44, 44, 44, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-image-card:hover::after {
  opacity: 1;
}

.brand-image-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-image-card:hover img {
  transform: scale(1.1);
}



/* ========================
   Responsive Design
   ======================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  /* Brand Section Responsive */
  .brand-story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .brand-story-text {
    padding-right: 0;
  }
  
  .brand-story-visual {
    height: 500px;
    overflow: visible;
  }
  
  .brand-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .brand-value-item {
    padding: 1.5rem 1.25rem;
  }
  
  .brand-floating-card {
    padding: 1.5rem 2rem;
    max-width: 240px;
  }
  
  .brand-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  .brand-card-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .brand-card-desc {
    font-size: 0.85rem;
  }
  
  .brand-card-1 {
    right: -5%;
  }
  
  .brand-card-2 {
    left: -5%;
  }
  
  .brand-gallery-large,
  .brand-gallery-item:not(.brand-gallery-large):not(.brand-gallery-wide) {
    grid-column: span 6;
  }
  
  .brand-approach-title::before,
  .brand-approach-title::after {
    width: 30px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-section {
    min-height: 650px;
    height: auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
    line-height: 1.15;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
    margin-bottom: 1.75rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
  }
  
  .btn-primary-custom,
  .btn-secondary-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  
  .nav-link-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .steps-container,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 3rem 2rem;
  }
  
  .shape-1, .shape-2 {
    width: 250px;
    height: 250px;
  }
  
  .shape-3 {
    width: 200px;
    height: 200px;
  }
  
  /* Brand Section Responsive */
  .brand-section {
    padding: 5rem 0;
  }
  
  .brand-header {
    margin-bottom: 3rem;
  }
  
  .brand-intro-title {
    font-size: 2rem;
  }
  
  .brand-intro-lead {
    font-size: 1.15rem;
  }
  
  .brand-values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .brand-value-item {
    padding: 1.5rem 1.25rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  
  .brand-value-item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .brand-value-item span {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .brand-story-visual {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .brand-visual-main {
    height: 450px;
    order: -1;
  }
  
  .brand-floating-card {
    position: static;
    margin: 0;
    animation: none;
    max-width: 100%;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(125, 216, 125, 0.15);
  }
  
  .brand-floating-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .brand-card-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }
  
  .brand-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .brand-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .brand-card-1,
  .brand-card-2 {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  
  .brand-approach-section {
    margin-top: 3rem;
  }
  
  .brand-approach-title::before,
  .brand-approach-title::after {
    display: none;
  }
  
  .brand-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-gallery-item,
  .brand-gallery-item:nth-child(1),
  .brand-gallery-item:nth-child(2),
  .brand-gallery-item:nth-child(3),
  .brand-gallery-item:nth-child(4) {
    grid-column: span 1;
    height: 300px;
  }
  
  .brand-gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(44, 44, 44, 0.85), transparent);
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 600px;
    padding: 2rem 0;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-actions {
    gap: 0.875rem;
    margin-bottom: 2.5rem;
  }
  
  .btn-primary-custom,
  .btn-secondary-outline {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Brand Section Mobile */
  .brand-subtitle {
    font-size: 1rem;
  }
  
  .brand-intro-title {
    font-size: 1.75rem;
  }
  
  .brand-intro-lead {
    font-size: 1.05rem;
  }
  
  .brand-philosophy p {
    font-size: 0.95rem;
  }
  
  .brand-floating-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .brand-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.875rem;
  }
  
  .brand-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .brand-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .brand-values-grid {
    gap: 1rem;
    margin-top: 1.75rem;
  }
  
  .brand-value-item {
    padding: 1.25rem 1.125rem;
    border-radius: 12px;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  
  .brand-value-item svg {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .brand-value-item span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .brand-approach-title {
    font-size: 1.5rem;
  }
  
  .brand-approach-text,
  .brand-approach-emphasis {
    font-size: 1rem;
  }
  
  .brand-gallery-item {
    height: 250px;
  }
  
  .brand-visual-overlay {
    padding: 2rem;
  }
  
  .brand-overlay-text {
    font-size: 1.15rem;
  }
}

/* ========================
   Print Styles
   ======================== */

@media print {
  .navbar-custom,
  .hero-shapes,
  .cta-section,
  .footer {
    display: none;
  }
  
  .hero-section {
    height: auto;
    page-break-after: always;
  }
}