/* Motive Event - Complete Color System & Theme */

:root {
  /* ========== BRAND COLORS - Dark Green Theme ========== */
  /* Primary - Dark Green */
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-300: #6ee7b7;
  --primary-400: #34d399;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;
  --primary: #065f46; /* Main primary color */
  --primary-dark: #064e3b;
  --primary-light: #047857;
  
  /* Secondary - Emerald Accent */
  --secondary-50: #f0fdf4;
  --secondary-100: #dcfce7;
  --secondary-200: #bbf7d0;
  --secondary-300: #86efac;
  --secondary-400: #4ade80;
  --secondary-500: #22c55e;
  --secondary-600: #16a34a;
  --secondary-700: #15803d;
  --secondary-800: #166534;
  --secondary-900: #14532d;
  --secondary: #22c55e;
  
  /* Accent - Gold/Yellow for highlights */
  --accent-50: #fffbeb;
  --accent-100: #fef3c7;
  --accent-200: #fde68a;
  --accent-300: #fcd34d;
  --accent-400: #fbbf24;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-700: #b45309;
  --accent-800: #92400e;
  --accent-900: #78350f;
  --accent: #f59e0b;
  
  /* ========== NEUTRAL COLORS ========== */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  --black: #000000;
  --white: #ffffff;
  
  /* ========== SEMANTIC COLORS ========== */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* ========== TYPOGRAPHY ========== */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  /* ========== SPACING ========== */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* ========== BORDER RADIUS ========== */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* ========== SHADOWS ========== */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-primary: 0 10px 30px -5px rgba(6, 95, 70, 0.3);
  --shadow-primary-lg: 0 20px 40px -5px rgba(6, 95, 70, 0.4);
  
  /* ========== TRANSITIONS ========== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== BASE STYLES ========== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-base);
  font-weight: var(--font-weight-normal);
  color: var(--gray-900);
}

/* ========== FORCE INTER FONT EVERYWHERE ========== */
* {
  font-family: var(--font-base) !important;
}

h1, h2, h3, h4, h5, h6,
.ld-fh-element,
.lqd-fancy-heading,
.ld-fancy-heading {
  font-family: var(--font-base) !important;
}

/* ========== TYPOGRAPHY UTILITIES ========== */
.font-normal { font-weight: var(--font-weight-normal) !important; }
.font-medium { font-weight: var(--font-weight-medium) !important; }
.font-semibold { font-weight: var(--font-weight-semibold) !important; }
.font-bold { font-weight: var(--font-weight-bold) !important; }
.font-extrabold { font-weight: var(--font-weight-extrabold) !important; }
.font-black { font-weight: var(--font-weight-black) !important; }

h1, h2, h3 { font-weight: var(--font-weight-bold); }
h4, h5 { font-weight: var(--font-weight-semibold); }
h6 { font-weight: var(--font-weight-medium); }

/* ========== COLOR UTILITIES ========== */
/* Primary Colors */
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

.hover\:bg-primary:hover { background-color: var(--primary) !important; }
.hover\:bg-primary-light:hover { background-color: var(--primary-light) !important; }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark) !important; }
.hover\:text-primary:hover { color: var(--primary) !important; }
.hover\:border-primary:hover { border-color: var(--primary) !important; }

/* Secondary Colors */
.bg-secondary { background-color: var(--secondary) !important; }
.text-secondary { color: var(--secondary) !important; }
.border-secondary { border-color: var(--secondary) !important; }

/* Accent Colors */
.bg-accent { background-color: var(--accent) !important; }
.text-accent { color: var(--accent) !important; }

/* ========== BUTTON SYSTEM ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary Button - Green Theme */
.btn.bg-primary,
.btn-primary {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-primary);
}

.btn.bg-primary:hover,
.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
  color: var(--white) !important;
}

/* Emerald hover override */
.hover\:bg-emerald-700:hover {
  background-color: var(--primary-dark) !important;
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* Outline Button */
.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background-color: var(--gray-100);
  color: var(--primary);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

/* ========== HEADER STYLES ========== */
.header-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  border: none;
  box-shadow: 0 2px 8px rgba(6, 95, 70, 0.2);
}

.header-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 95, 70, 0.35);
  color: var(--white);
}

/* Navigation Links */
.main-nav a {
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  background: var(--gray-100);
  padding: 0.25rem;
  border-radius: var(--radius-md);
}

.lang-switcher a {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
  color: var(--gray-600);
  text-decoration: none;
}

.lang-switcher a:hover {
  color: var(--primary);
  background: var(--white);
}

.lang-switcher a.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ========== ICON BOX COMPONENT ========== */
.icon-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-primary);
  border-color: var(--primary-300);
}

.icon-box-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
  transition: all var(--transition-base);
}

.icon-box:hover .icon-box-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(6, 95, 70, 0.35);
}

.icon-box-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.icon-box-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.icon-box-description {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== SERVICE CARD ========== */
.service-card {
  transition: all var(--transition-base);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

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

.service-card .iconbox-icon-container {
  color: var(--primary) !important;
  transition: all var(--transition-base);
}

.service-card:hover .iconbox-icon-container {
  color: var(--primary-light) !important;
  transform: scale(1.1);
}

/* ========== FOOTER ROTATING TEXT ========== */
.txt-rotate-keywords {
  position: relative;
  display: inline-block;
  min-width: 200px !important; /* Prevent text overlap */
  text-align: left;
  vertical-align: bottom;
}

.txt-rotate-keyword {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  white-space: nowrap;
  width: 100%;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.txt-rotate-keyword.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Remove theme's default animations */
.txt-rotate-keyword.lqd-keyword-slide-in,
.txt-rotate-keyword.lqd-keyword-slide-out {
  animation: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .txt-rotate-keywords {
    min-width: 150px !important;
  }
}

/* ========== LINKS ========== */
a {
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary);
}

/* Footer email link - white on green background */
.bg-primary a.text-white:hover,
footer a.text-white:hover {
  color: var(--accent) !important;
}

/* ========== FORM ELEMENTS ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-color: var(--gray-300);
  transition: all var(--transition-base);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
  outline: none;
}

/* ========== UTILITY CLASSES ========== */
.event-section {
  scroll-margin-top: 100px;
}

.transition-all {
  transition: all var(--transition-base);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.shadow-primary {
  box-shadow: var(--shadow-primary);
}

.shadow-primary-lg {
  box-shadow: var(--shadow-primary-lg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .icon-box {
    padding: 1.5rem;
  }
  
  .icon-box-icon {
    width: 48px;
    height: 48px;
  }
  
  .icon-box-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  /* Mobile slider titles - smaller font */
  .lqd-stickybar-wrap h1,
  .lqd-stickybar-wrap .text-90 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  .lqd-stickybar-wrap .text-24,
  .lqd-stickybar-wrap p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }
}

/* ========== LOADING ANIMATION ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* ========== HIGHLIGHT COLORS ========== */
.lqd-highlight-inner {
  background-color: var(--primary-200) !important;
}

::selection {
  background-color: var(--primary-200);
  color: var(--gray-900);
}

/* ========== ACCORDION ICON ANIMATION ========== */
.accordion-expander {
  transition: transform var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-btn:not(.collapsed) .accordion-expander {
  transform: rotate(180deg);
}

.accordion-icon {
  display: block;
  transition: transform var(--transition-base);
}

/* ========== VIDEO SECTION - HIDDEN FOR NOW ========== */
/* Müşteri video içeriğini sonra ekleyecek - şimdilik gizli */
.video-content-hidden {
  display: none !important;
}

/* ========== MOBILE MENU STYLES ========== */
/* Mobile menu background color only */
.mobile-navbar-collapse {
  background-color: var(--primary) !important;
}

/* Logo item padding - align with menu items */
.mobile-nav-logo-item {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.mobile-nav-logo-item a {
  padding: 0 !important;
}

/* Logo visibility */
.mobile-navbar-collapse .logo-light,
.mobile-nav-logo-item .logo-light {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Menu text colors */
.mobile-navbar-collapse .lqd-mobile-main-nav li a {
  color: var(--white) !important;
}

.mobile-navbar-collapse .lqd-mobile-main-nav li a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer item visibility and padding */
.mobile-nav-footer-item {
  display: block !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.mobile-nav-footer-item p {
  color: var(--white) !important;
  opacity: 0.8 !important;
}

.mobile-nav-footer-item a {
  color: var(--white) !important;
}

.mobile-nav-footer-item a:hover {
  color: var(--accent) !important;
}

/* ========== MOBILE HEADER - WHITE BACKGROUND FIX ========== */
@media (max-width: 1199px) {
  .lqd-mobile-sec,
  .lqd-mobile-sec-inner,
  .navbar-header {
    background-color: #ffffff !important;
  }
  
  /* Logo ve hamburger siyah olsun */
  .lqd-mobile-sec .navbar-toggle .bar {
    background-color: #000000 !important;
  }
  
  .lqd-mobile-sec .logo-default {
    display: block !important;
  }
}
