/* ============================================
   KÖKSALAN NAKKAŞ - PREMIUM ELEGANT LIGHT THEME
   White & Clean with Turkuaz Accents
   Poppins Font - Elegant Islamic Art Inspired
   ============================================ */

/* ============= GOOGLE FONTS - POPPINS ============= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============= CSS VARIABLES - LIGHT ELEGANT THEME ============= */
:root {
  /* Primary Colors - Turkuaz (Accent Only) */
  --koksalan-primary: #14B8A6;
  --koksalan-primary-dark: #0D9488;
  --koksalan-primary-light: #5EEAD4;
  --koksalan-primary-soft: rgba(20, 184, 166, 0.08);
  --koksalan-secondary: #0891B2;
  --koksalan-accent: #D4AF37;
  --koksalan-gold: #C9A227;
  --koksalan-gold-light: #E6C547;

  /* Background Colors - Light/White */
  --koksalan-bg-white: #FFFFFF;
  --koksalan-bg-light: #F8FAFB;
  --koksalan-bg-cream: #FAFAF9;
  --koksalan-bg-soft: #F1F5F9;
  --koksalan-bg-card: #FFFFFF;
  --koksalan-bg-dark: #1E293B;

  /* Text Colors - Dark for Light Theme */
  --koksalan-text: #1E293B;
  --koksalan-text-muted: #64748B;
  --koksalan-text-light: #94A3B8;
  --koksalan-text-white: #FFFFFF;

  /* Gradients */
  --koksalan-gradient-primary: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  --koksalan-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
  --koksalan-gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
  --koksalan-gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 251, 0.98) 100%);

  /* Shadows - Softer for Light Theme */
  --koksalan-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  --koksalan-shadow-glow: 0 0 40px rgba(20, 184, 166, 0.15);
  --koksalan-shadow-gold: 0 0 30px rgba(212, 175, 55, 0.12);
  --koksalan-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
  --koksalan-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
  --koksalan-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);

  /* Borders */
  --koksalan-border: #E2E8F0;
  --koksalan-border-light: #F1F5F9;

  /* Transitions */
  --koksalan-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --koksalan-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --koksalan-transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography - Poppins */
  --koksalan-font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --section-padding-mobile: 80px 0;
}

/* ============= GLOBAL STYLES ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Universal Light Theme */
html,
body {
  background-color: #FFFFFF !important;
  color: #1E293B;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.koksalan-body {
  font-family: var(--koksalan-font);
  background-color: var(--koksalan-bg-white) !important;
  color: var(--koksalan-text) !important;
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
}

/* Selection */
::selection {
  background: var(--koksalan-primary);
  color: var(--koksalan-text-white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--koksalan-bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--koksalan-primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--koksalan-primary-dark);
}

/* ============= ANIMATIONS ============= */
@keyframes float {

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

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

@keyframes floatSlow {

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

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes floatPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

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

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

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.6);
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }

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

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

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

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

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

@keyframes slideLeft {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

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

@keyframes slideRight {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

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

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

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

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(20, 184, 166, 0.3);
  }

  50% {
    border-color: rgba(20, 184, 166, 0.8);
  }
}

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes geometricRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  75% {
    border-radius: 60% 40% 60% 30% / 60% 30% 60% 40%;
  }
}

/* ============= HEADER / NAVIGATION ============= */
.koksalan-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--koksalan-transition);
  background: transparent;
}

.koksalan-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--koksalan-border-light);
}

.koksalan-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
}

/* Logo */
.koksalan-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.koksalan-logo img {
  height: 60px;
  transition: var(--koksalan-transition);
}

.koksalan-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--koksalan-text);
  letter-spacing: 1px;
}

.koksalan-logo-text span {
  color: var(--koksalan-primary);
}

.koksalan-header.scrolled .koksalan-logo img {
  height: 50px;
}

/* Desktop Navigation */
.koksalan-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.koksalan-nav-link {
  color: var(--koksalan-text);
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--koksalan-transition);
  position: relative;
  overflow: hidden;
}

.koksalan-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--koksalan-gradient-primary);
  opacity: 0;
  border-radius: 50px;
  transition: var(--koksalan-transition);
  z-index: -1;
}

.koksalan-nav-link:hover,
.koksalan-nav-link.active {
  color: var(--koksalan-text-white);
}

.koksalan-nav-link:hover::before,
.koksalan-nav-link.active::before {
  opacity: 1;
}

/* CTA Buttons */
.koksalan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--koksalan-font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--koksalan-transition-bounce);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.koksalan-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--koksalan-transition);
}

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

.koksalan-btn-primary {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-text-white);
  box-shadow: var(--koksalan-shadow-glow);
}

.koksalan-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.5);
  color: var(--koksalan-text-white);
}

.koksalan-btn-outline {
  background: transparent;
  color: var(--koksalan-text);
  border: 2px solid var(--koksalan-primary);
}

.koksalan-btn-outline:hover {
  background: var(--koksalan-primary);
  color: var(--koksalan-bg-dark);
  transform: translateY(-4px);
  border-color: var(--koksalan-primary);
}

.koksalan-btn-gold {
  background: var(--koksalan-gradient-gold);
  color: var(--koksalan-bg-dark);
  box-shadow: var(--koksalan-shadow-gold);
}

.koksalan-btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
  color: var(--koksalan-bg-dark);
}

/* Mobile Menu */
.koksalan-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2001;
  /* High z-index */
}

.koksalan-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--koksalan-primary);
  border-radius: 2px;
  transition: var(--koksalan-transition);
}

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

.koksalan-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

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

/* Mobile Overlay */
.koksalan-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--koksalan-transition);
  z-index: 1999;
  /* Below menu, above others */
}

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

/* Mobile Menu */
.koksalan-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--koksalan-bg-white);
  padding: 80px 30px 30px;
  transition: var(--koksalan-transition-slow);
  z-index: 2000;
  /* Highest z-index */
  overflow-y: auto;
  border-left: 1px solid var(--koksalan-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.koksalan-mobile-menu.active {
  right: 0;
}

.koksalan-mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--koksalan-primary-soft);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2002;
  /* Above menu */
  transition: var(--koksalan-transition);
}

.koksalan-mobile-close i {
  color: var(--koksalan-primary);
  font-size: 1.3rem;
}

.koksalan-mobile-close:hover {
  background: var(--koksalan-primary);
}

.koksalan-mobile-close:hover i {
  color: var(--koksalan-text-white);
}

.koksalan-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.koksalan-mobile-nav li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(30px);
  transition: var(--koksalan-transition);
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li {
  opacity: 1;
  transform: translateX(0);
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li:nth-child(2) {
  transition-delay: 0.15s;
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li:nth-child(3) {
  transition-delay: 0.2s;
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li:nth-child(4) {
  transition-delay: 0.25s;
}

.koksalan-mobile-menu.active .koksalan-mobile-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.koksalan-mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: var(--koksalan-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: var(--koksalan-transition);
}

.koksalan-mobile-nav a:hover {
  background: var(--koksalan-primary-soft);
  color: var(--koksalan-primary);
  padding-left: 30px;
}

/* ============= HERO SECTION WITH SLIDER ============= */
.koksalan-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--koksalan-gradient-light);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Islamic Art Decorative Elements */
.koksalan-islamic-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  color: var(--koksalan-primary);
  z-index: 0;
}

.decor-arabesque {
  position: absolute;
  width: 250px;
  height: 250px;
}

.decor-top-left {
  top: 80px;
  left: 20px;
  animation: floatSlow 12s ease-in-out infinite;
}

.decor-top-right {
  top: 80px;
  right: 20px;
  animation: floatSlow 14s ease-in-out infinite reverse;
}

.decor-mosque {
  position: absolute;
  width: 200px;
  height: 140px;
  bottom: 15%;
  left: 5%;
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
}

.decor-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
}

.decor-pattern-1 {
  top: 30%;
  left: 8%;
  animation: geometricRotate 30s linear infinite;
}

.decor-pattern-2 {
  bottom: 25%;
  right: 5%;
  width: 100px;
  height: 100px;
  animation: geometricRotate 25s linear infinite reverse;
}

.decor-brush {
  position: absolute;
  width: 300px;
  height: 50px;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.decor-star {
  position: absolute;
  width: 80px;
  height: 80px;
}

.decor-star-1 {
  top: 25%;
  right: 15%;
  animation: pulse 4s ease-in-out infinite, geometricRotate 20s linear infinite;
}

.decor-star-2 {
  bottom: 30%;
  left: 12%;
  width: 60px;
  height: 60px;
  animation: pulse 5s ease-in-out infinite 1s, geometricRotate 25s linear infinite reverse;
}

/* Hero Wrapper - Split Layout */
.koksalan-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content - Left Side */
.koksalan-hero-content {
  position: relative;
  z-index: 2;
}

.koksalan-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--koksalan-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding: 10px 20px;
  background: var(--koksalan-primary-soft);
  border-radius: 50px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  animation: slideDown 0.8s ease-out;
}

.koksalan-hero-tagline svg {
  animation: pulse 2s ease-in-out infinite;
}

.koksalan-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--koksalan-text);
  animation: slideUp 0.8s ease-out 0.2s both;
}

.koksalan-hero-title span {
  background: var(--koksalan-gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 3s ease infinite;
  position: relative;
}

.koksalan-hero-title .gold-text {
  background: var(--koksalan-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.koksalan-hero-desc {
  font-size: 1.1rem;
  color: var(--koksalan-text-muted);
  max-width: 500px;
  margin-bottom: 35px;
  line-height: 1.8;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.koksalan-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}

/* Hero Stats */
.koksalan-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--koksalan-border);
  animation: slideUp 0.8s ease-out 0.8s both;
}

.koksalan-hero-stat {
  text-align: left;
}

.koksalan-hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--koksalan-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.koksalan-hero-stat-number::after {
  content: '+';
  -webkit-text-fill-color: var(--koksalan-primary);
}

.koksalan-hero-stat-text {
  font-size: 0.85rem;
  color: var(--koksalan-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============= HERO SLIDER - Right Side ============= */
.koksalan-hero-slider {
  position: relative;
  animation: slideLeft 1s ease-out 0.3s both;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--koksalan-shadow);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

/* Slider Navigation */
.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.slider-prev,
.slider-next {
  width: 45px;
  height: 45px;
  border: 2px solid var(--koksalan-border);
  background: var(--koksalan-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--koksalan-transition);
  color: var(--koksalan-text);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--koksalan-primary);
  border-color: var(--koksalan-primary);
  color: var(--koksalan-text-white);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--koksalan-border);
  background: transparent;
  cursor: pointer;
  transition: var(--koksalan-transition);
  padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--koksalan-primary);
  border-color: var(--koksalan-primary);
  transform: scale(1.2);
}

/* Decorative Frame */
.slider-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: 50px;
  pointer-events: none;
  z-index: 2;
}

.frame-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid var(--koksalan-gold);
}

.frame-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.frame-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.frame-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.frame-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

/* Geometric Shapes */
.koksalan-geometric {
  position: absolute;
  border: 2px solid rgba(20, 184, 166, 0.2);
  animation: geometricRotate 20s linear infinite;
}

.koksalan-geometric-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 25s;
}

.koksalan-geometric-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  border-radius: 50%;
  animation-direction: reverse;
  animation-duration: 20s;
}

.koksalan-geometric-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 15%;
  animation-duration: 15s;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}

/* Floating Stars */
.koksalan-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.koksalan-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--koksalan-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--koksalan-primary), 0 0 20px var(--koksalan-primary);
  animation: starTwinkle 3s ease-in-out infinite;
}

.koksalan-star:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.koksalan-star:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 0.5s;
}

.koksalan-star:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.koksalan-star:nth-child(4) {
  top: 70%;
  right: 15%;
  animation-delay: 1.5s;
}

.koksalan-star:nth-child(5) {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

/* Hero Content */
.koksalan-hero-content {
  position: relative;
  z-index: 2;
}

.koksalan-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--koksalan-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding: 10px 20px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  animation: slideDown 0.8s ease-out;
}

.koksalan-hero-tagline i {
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

.koksalan-hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--koksalan-text);
  animation: slideUp 0.8s ease-out 0.2s both;
}

.koksalan-hero-title span {
  background: var(--koksalan-gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 3s ease infinite;
  position: relative;
}

.koksalan-hero-title .gold-text {
  background: var(--koksalan-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.koksalan-hero-desc {
  font-size: 1.2rem;
  color: var(--koksalan-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.koksalan-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}

/* Hero Stats */
.koksalan-hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  animation: slideUp 0.8s ease-out 0.8s both;
}

.koksalan-hero-stat {
  text-align: center;
  position: relative;
}

.koksalan-hero-stat::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.koksalan-hero-stat:last-child::after {
  display: none;
}

.koksalan-hero-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--koksalan-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.koksalan-hero-stat-text {
  font-size: 0.9rem;
  color: var(--koksalan-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Scroll Indicator */
.koksalan-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: float 2s ease-in-out infinite;
}

.koksalan-scroll-indicator span {
  display: block;
  color: var(--koksalan-primary);
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.koksalan-scroll-indicator i {
  color: var(--koksalan-primary);
  font-size: 1.5rem;
}

/* ============= SECTION STYLES ============= */
.koksalan-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.koksalan-section-dark {
  background: var(--koksalan-bg-soft);
}

.koksalan-section-light {
  background: var(--koksalan-bg-white);
}

.koksalan-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.koksalan-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--koksalan-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.koksalan-section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--koksalan-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.koksalan-section-title span {
  background: var(--koksalan-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.koksalan-section-desc {
  font-size: 1.15rem;
  color: var(--koksalan-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============= ABOUT SECTION ============= */
.koksalan-about {
  position: relative;
}

.koksalan-about::before {
  content: 'نقاش';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(20, 184, 166, 0.03);
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Traditional Arabic', 'Arial', sans-serif;
}

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

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

.koksalan-about-text {
  font-size: 1.1rem;
  color: var(--koksalan-text-muted);
  line-height: 1.9;
  margin-bottom: 30px;
}

.koksalan-about-text strong {
  color: var(--koksalan-primary);
}

/* Feature Boxes */
.koksalan-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.koksalan-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--koksalan-bg-white);
  border-radius: 16px;
  border: 1px solid var(--koksalan-border);
  transition: var(--koksalan-transition);
  box-shadow: var(--koksalan-shadow-sm);
}

.koksalan-feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--koksalan-primary);
  box-shadow: var(--koksalan-shadow-hover);
}

.koksalan-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--koksalan-primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--koksalan-primary);
  flex-shrink: 0;
  transition: var(--koksalan-transition);
}

.koksalan-feature-box:hover .koksalan-feature-icon {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-text-white);
  transform: scale(1.1) rotate(5deg);
}

.koksalan-feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--koksalan-text);
  margin-bottom: 5px;
}

.koksalan-feature-content p {
  font-size: 0.9rem;
  color: var(--koksalan-text-muted);
  margin: 0;
}

/* About Image */
.koksalan-about-image {
  position: relative;
}

.koksalan-about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.koksalan-about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--koksalan-gradient-primary);
  border-radius: 27px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

.koksalan-about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.koksalan-about-experience {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--koksalan-bg-white);
  padding: 25px 35px;
  border-radius: 16px;
  border: 1px solid var(--koksalan-border);
  box-shadow: var(--koksalan-shadow-card);
  animation: float 4s ease-in-out infinite;
}

.koksalan-about-experience-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--koksalan-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.koksalan-about-experience-text {
  font-size: 0.9rem;
  color: var(--koksalan-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============= SERVICES SECTION ============= */
.koksalan-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.koksalan-service-card {
  background: var(--koksalan-bg-white);
  border-radius: 24px;
  padding: 40px 35px;
  text-align: center;
  transition: var(--koksalan-transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--koksalan-border);
  cursor: pointer;
  box-shadow: var(--koksalan-shadow-sm);
}

.koksalan-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--koksalan-gradient-primary);
  transform: scaleX(0);
  transition: var(--koksalan-transition);
}

.koksalan-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(20, 184, 166, 0.03), transparent);
  opacity: 0;
  transition: var(--koksalan-transition);
}

.koksalan-service-card:hover {
  transform: translateY(-15px);
  border-color: var(--koksalan-primary);
  box-shadow: var(--koksalan-shadow-hover);
}

.koksalan-service-card:hover::before {
  transform: scaleX(1);
}

.koksalan-service-card:hover::after {
  opacity: 1;
}

.koksalan-service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: var(--koksalan-primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--koksalan-primary);
  transition: var(--koksalan-transition-bounce);
  position: relative;
  z-index: 1;
}

.koksalan-service-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  animation: geometricRotate 10s linear infinite;
}

.koksalan-service-card:hover .koksalan-service-icon {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-text-white);
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--koksalan-shadow-glow);
}

.koksalan-service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--koksalan-text);
  margin-bottom: 15px;
  transition: var(--koksalan-transition);
  position: relative;
  z-index: 1;
}

.koksalan-service-card:hover h4 {
  color: var(--koksalan-primary);
}

.koksalan-service-card p {
  font-size: 1rem;
  color: var(--koksalan-text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.koksalan-service-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.koksalan-service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--koksalan-text-muted);
  transition: var(--koksalan-transition);
}

.koksalan-service-card li i {
  color: var(--koksalan-primary);
  font-size: 0.8rem;
}

.koksalan-service-card:hover li {
  color: var(--koksalan-text);
}

/* ============= CONTACT SECTION ============= */
.koksalan-contact {
  position: relative;
}

.koksalan-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.koksalan-contact-info {
  padding-right: 30px;
}

.koksalan-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 25px;
  background: var(--koksalan-bg-white);
  border-radius: 16px;
  transition: var(--koksalan-transition);
  border: 1px solid var(--koksalan-border);
  cursor: pointer;
  box-shadow: var(--koksalan-shadow-sm);
}

.koksalan-contact-item:hover {
  transform: translateX(10px);
  border-color: var(--koksalan-primary);
  box-shadow: var(--koksalan-shadow-hover);
}

.koksalan-contact-icon {
  width: 55px;
  height: 55px;
  background: var(--koksalan-primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--koksalan-primary);
  flex-shrink: 0;
  transition: var(--koksalan-transition);
}

.koksalan-contact-item:hover .koksalan-contact-icon {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-text-white);
  transform: scale(1.1);
}

.koksalan-contact-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--koksalan-text);
  margin-bottom: 5px;
}

.koksalan-contact-item p,
.koksalan-contact-item a {
  font-size: 1rem;
  color: var(--koksalan-text-muted);
  margin: 0;
  text-decoration: none;
  transition: var(--koksalan-transition);
}

.koksalan-contact-item:hover a {
  color: var(--koksalan-primary);
}

/* Social Links */
.koksalan-social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.koksalan-social-link {
  width: 55px;
  height: 55px;
  background: var(--koksalan-bg-card);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--koksalan-text);
  font-size: 1.3rem;
  transition: var(--koksalan-transition-bounce);
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.koksalan-social-link:hover {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-bg-dark);
  transform: translateY(-8px) scale(1.1);
  border-color: transparent;
  box-shadow: var(--koksalan-shadow-glow);
}

.koksalan-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.koksalan-social-link.whatsapp:hover {
  background: #25D366;
}

/* Map Container */
.koksalan-map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  border: 3px solid rgba(20, 184, 166, 0.2);
  transition: var(--koksalan-transition);
}

.koksalan-map-wrapper:hover {
  border-color: var(--koksalan-primary);
  box-shadow: var(--koksalan-shadow-glow);
}

.koksalan-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
  transition: var(--koksalan-transition);
}

.koksalan-map-wrapper:hover iframe {
  filter: grayscale(0%);
}

.koksalan-map-placeholder {
  height: 450px;
  background: var(--koksalan-bg-card);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(20, 184, 166, 0.3);
}

.koksalan-map-placeholder i {
  font-size: 4rem;
  color: var(--koksalan-primary);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.koksalan-map-placeholder h4 {
  font-size: 1.3rem;
  color: var(--koksalan-text);
  margin-bottom: 10px;
}

.koksalan-map-placeholder p {
  color: var(--koksalan-text-muted);
  font-size: 1rem;
}

/* ============= FOOTER ============= */
.koksalan-footer {
  background: var(--koksalan-bg-soft);
  padding: 80px 0 30px;
  border-top: 1px solid var(--koksalan-border);
}

.koksalan-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--koksalan-border);
}

.koksalan-footer-brand p {
  color: var(--koksalan-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 25px 0;
}

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

.koksalan-footer-social a {
  width: 45px;
  height: 45px;
  background: var(--koksalan-bg-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--koksalan-text);
  font-size: 1.1rem;
  transition: var(--koksalan-transition-bounce);
  border: 1px solid var(--koksalan-border);
}

.koksalan-footer-social a:hover {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-text-white);
  transform: translateY(-5px);
  border-color: transparent;
}

.koksalan-footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--koksalan-text);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.koksalan-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--koksalan-gradient-primary);
  border-radius: 3px;
}

.koksalan-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.koksalan-footer-links a {
  color: var(--koksalan-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--koksalan-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.koksalan-footer-links a:hover {
  color: var(--koksalan-primary);
  padding-left: 8px;
}

.koksalan-footer-links a i {
  font-size: 0.7rem;
  color: var(--koksalan-primary);
}

.koksalan-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.koksalan-footer-bottom p {
  color: var(--koksalan-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.koksalan-footer-bottom a {
  color: var(--koksalan-primary);
  text-decoration: none;
  transition: var(--koksalan-transition);
}

.koksalan-footer-bottom a:hover {
  text-decoration: underline;
}

/* ============= FLOATING BUTTONS ============= */
.koksalan-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  z-index: 999;
  transition: var(--koksalan-transition-bounce);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.koksalan-whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.koksalan-phone-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--koksalan-gradient-primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--koksalan-bg-dark);
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 999;
  transition: var(--koksalan-transition-bounce);
  box-shadow: var(--koksalan-shadow-glow);
}

.koksalan-phone-float:hover {
  transform: scale(1.15);
  color: var(--koksalan-bg-dark);
}

/* Scroll Top */
.koksalan-scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--koksalan-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--koksalan-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--koksalan-transition-bounce);
}

.koksalan-scroll-top:hover {
  background: var(--koksalan-gradient-primary);
  color: var(--koksalan-bg-dark);
  transform: translateY(-5px);
  border-color: transparent;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
  .koksalan-nav {
    display: none;
  }

  .koksalan-menu-toggle {
    display: flex;
  }

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

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

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

  /* Hero responsive */
  .koksalan-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .koksalan-hero-content {
    order: 2;
  }

  .koksalan-hero-slider {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .koksalan-hero-desc {
    margin: 0 auto 35px;
  }

  .koksalan-hero-buttons {
    justify-content: center;
  }

  .koksalan-hero-stats {
    justify-content: center;
  }

  .koksalan-hero-stat {
    text-align: center;
  }

  /* Hide some decorations on tablet */
  .decor-mosque,
  .decor-brush {
    display: none;
  }

  .decor-arabesque {
    width: 150px;
    height: 150px;
  }

  .koksalan-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .koksalan-about-image {
    order: -1;
  }

  .koksalan-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .koksalan-hero-stats {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .koksalan-hero-stat::after {
    display: none;
  }
}

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

  .koksalan-header .container-fluid {
    padding: 0 20px;
  }

  .koksalan-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .koksalan-hero-slider {
    max-width: 100%;
  }

  .hero-slider-container {
    aspect-ratio: 1/1;
    border-radius: 16px;
  }

  .slider-frame {
    display: none;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  /* Hide all decorations on mobile */
  .koksalan-islamic-decor {
    display: none;
  }

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

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

  .koksalan-hero-buttons {
    flex-direction: column;
  }

  .koksalan-hero-buttons .koksalan-btn {
    width: 100%;
    justify-content: center;
  }

  .koksalan-hero-stats {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

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

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

  .koksalan-footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .koksalan-footer-social {
    justify-content: center;
  }

  .koksalan-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .koksalan-whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    animation: floatPulse 2s infinite;
  }

  .koksalan-phone-float {
    display: flex;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 60px;
    height: 60px;
    background: var(--koksalan-primary);
    color: white !important;
    animation: floatPulse 2s infinite 1s;
    /* delay for alternating pulse */
  }

  .koksalan-scroll-top {
    display: none !important;
  }

  .koksalan-contact-item:hover {
    transform: translateX(0);
  }

  .koksalan-geometric {
    display: none;
  }
}

/* ============= PARALLAX DIVIDER ============= */
.koksalan-parallax {
  height: 300px;
  background: linear-gradient(135deg, var(--koksalan-primary-soft) 0%, var(--koksalan-bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.koksalan-parallax::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--koksalan-primary), transparent);
  animation: shimmer 3s linear infinite;
}

.koksalan-parallax-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.koksalan-parallax-content i {
  font-size: 4rem;
  color: var(--koksalan-primary);
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.koksalan-parallax-content p {
  font-size: 1.5rem;
  color: var(--koksalan-text);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============= UTILITY CLASSES ============= */
.text-primary {
  color: var(--koksalan-primary) !important;
}

.text-gold {
  color: var(--koksalan-gold) !important;
}

.bg-primary {
  background: var(--koksalan-gradient-primary) !important;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* ============= INFINITE FLOATING GALLERY ============= */
.koksalan-gallery-section {
  position: relative;
  background: var(--koksalan-bg-light);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 40px 0;
  /* Fade mask on edges */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeScroll 80s linear infinite;
  padding-left: 30px;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-wrapper:hover .gallery-card-wrapper {
  animation-play-state: paused;
}

.gallery-card-wrapper {
  /* Floating animation */
  animation: floatCard 6s ease-in-out infinite;
  will-change: transform;
}

.gallery-card {
  width: 320px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
  position: relative;
  transition: all 0.4s ease;
  user-select: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Hover Effects */
.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

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

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

.gallery-card:hover .gallery-overlay i {
  transform: scale(1);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* -50% works perfectly if content is duplicated (2 halves) */
}

@keyframes floatCard {

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

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

@media (max-width: 767px) {
  .gallery-card {
    width: 260px;
    height: 340px;
  }
}

/* Hide floats when mobile menu is active */
body.mobile-menu-active .koksalan-whatsapp-float,
body.mobile-menu-active .koksalan-phone-float,
body.mobile-menu-active .koksalan-scroll-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

/* Stylish Mobile Contact Items */
.koksalan-mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--koksalan-bg-soft);
  border-radius: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: var(--koksalan-transition);
  border: 1px solid transparent;
}

.koksalan-mobile-contact-item:hover {
  background: var(--koksalan-bg-white);
  border-color: var(--koksalan-primary);
  transform: translateX(5px);
  box-shadow: var(--koksalan-shadow-sm);
}

.koksalan-mobile-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--koksalan-primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--koksalan-primary);
  font-size: 1.1rem;
  transition: var(--koksalan-transition);
}

.koksalan-mobile-contact-item:hover .koksalan-mobile-contact-icon {
  background: var(--koksalan-primary);
  color: white;
}

.koksalan-mobile-contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.koksalan-mobile-contact-label {
  font-size: 0.75rem;
  color: var(--koksalan-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.koksalan-mobile-contact-value {
  font-size: 0.95rem;
  color: var(--koksalan-text);
  font-weight: 600;
}

/* ============= GALLERY MODAL (LEGENDARY ANIMATION) ============= */
.koksalan-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 18, 34, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.koksalan-modal.active {
  opacity: 1;
  visibility: visible;
}

.koksalan-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Springy effect */
}

.koksalan-modal.active .koksalan-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.koksalan-modal-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

.koksalan-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.koksalan-modal-close:hover {
  background: var(--koksalan-primary);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
}

@media (max-width: 768px) {
  .koksalan-modal-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}