/* ==========================================================================
   DoLife & Tudor Inspired Life Coach Theme - CSS Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Dancing+Script:wght@600;700&display=swap');

:root {
  /* Color Palette - Light Mode */
  --bg-primary: #f4f1ec;
  --bg-secondary: #e0d6c9; /* Tudor Light Gray-Blue Background */
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFAF6;
  --text-primary: #1A1D20;
  --text-secondary: #5C626A;
  --text-muted: #8C929B;
  
  --accent-gold: #88321a; /* Tudor Warm Terracotta/Gold */
  --accent-gold-hover: #BF7A36;
  --accent-gold-light: rgba(214, 140, 69, 0.12);
  --accent-navy: #49483c; /* Tudor Dark Charcoal */
  --accent-sage: #3E5A47;
  --addcolor-bej-light: #9f9d86;
  --addcolor-orange-light:#d67054;
  --addcolor-black:#000000;

  --border-color: rgba(26, 29, 32, 0.08);
  --border-gold: rgba(214, 140, 69, 0.3);
  
  /* Typography */
  --font-heading: 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-signature: 'Roboto', Arial, sans-serif;
  
  /* Elevating Shadows */
  --shadow-sm: 0 4px 12px rgba(24, 34, 50, 0.03);
  --shadow-md: 0 12px 30px rgba(24, 34, 50, 0.08);
  --shadow-lg: 0 24px 50px rgba(24, 34, 50, 0.12);
  --shadow-gold: 0 10px 30px rgba(214, 140, 69, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

[data-theme="dark"] {
  --bg-primary: #0F131A;
  --bg-secondary: #161C26;
  --bg-card: #1C2432;
  --bg-card-hover: #222C3D;
  --text-primary: #F3F5F8;
  --text-secondary: #A3ADB9;
  --text-muted: #6B7685;
  
  --accent-gold: #E5A855;
  --accent-gold-hover: #D49643;
  --accent-gold-light: rgba(229, 168, 85, 0.15);
  --accent-navy: #151A22;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(229, 168, 85, 0.3);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(229, 168, 85, 0.2);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  border-top: 4px solid var(--accent-gold);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Header & Overlay Navbar */
.navbar-tudor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(73, 72, 60, 0.5);
}

/* Solid White Navbar for Inner Pages */
.navbar-solid {
  position: relative;
  width: 100%;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-solid .logo {
  color: var(--text-primary);
}

.navbar-solid .logo span.logo-sub {
  color: var(--text-muted);
}

.navbar-solid .nav-link {
  color: var(--text-primary);
}

.navbar-solid .nav-link:hover, .navbar-solid .nav-link.active {
  color: var(--accent-gold);
}

.navbar-solid .phone-widget {
  color: var(--text-primary);
}

.navbar-solid .phone-text label {
  color: var(--text-muted);
}

.navbar-solid .phone-text a {
  color: var(--text-primary);
}

.navbar-solid .theme-toggle-btn {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.navbar-solid .mobile-toggle {
  color: var(--text-primary);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1;
}

.logo span.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  text-align:center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}


.nav-link:hover, .nav-link.active {
  color: var(--addcolor-orange-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left:15px;
}


.phone-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
}

.phone-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-text label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.phone-text a {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #FFFFFF;
  cursor: pointer;
}

/* Full Bleed Tudor Hero Section Slider */
.hero-tudor-slider-wrapper {
  position: relative;
  min-height: 92vh;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-tudor-track {
  display: flex;
  width: 300%;
  min-height: 92vh;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-tudor-slide {
  width: 33.333333%;
  min-height: 92vh;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
}

.hero-slider-arrow.prev {
  left: 30px;
}

.hero-slider-arrow.next {
  right: 90px;
}

.hero-slider-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active, .hero-dot:hover {
  background: var(--addcolor-orange-light);
  border-color: #FFFFFF;
  transform: scale(1.25);
}

.hero-tudor-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--addcolor-orange-light);
  margin-bottom: 20px;
}

.hero-tudor-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #FFFFFF;
}

.hero-tudor-title span {
  font-style: italic;
  color: #FFFFFF;
}

.hero-tudor-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-social-sidebar {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.hero-social-sidebar a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.hero-social-sidebar a:hover {
  color: var(--accent-gold);
  transform: scale(1.2);
}

/* ==========================================================================
   FORM CONTROLS & APPOINTMENT FORM STYLES
   ========================================================================== */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  outline: none;
  font-family: inherit;
}

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

.form-input.with-icon,
.form-select.with-icon,
.form-textarea.with-icon {
  padding-left: 46px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px var(--accent-gold-light);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D68C45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

/* ==========================================================================
   CONTACT PAGE STYLES (contact.html)
   ========================================================================== */
.contact-middle-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

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

.contact-info-column {
  padding-right: 20px;
}

.contact-info-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-secondary);
  padding: 24px 28px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.contact-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.contact-detail-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail-text p, 
.contact-detail-text a {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   WORKSHOPS & COURSES PAGE STYLES (workshops.html)
   ========================================================================== */

/* 1. Intro Section */
.workshops-intro-section {
  padding: 80px 0 60px 0;
  background-color: var(--bg-primary);
  text-align: center;
}

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

.workshops-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.workshops-intro-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.workshops-intro-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 2. Course & Workshop Grid */
.workshops-list-section {
  padding: 40px 0 100px 0;
  background-color: var(--bg-secondary);
}

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

.course-card-tudor {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.course-card-tudor:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.course-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.course-card-tudor:hover .course-thumb-wrapper img {
  transform: scale(1.06);
}

.course-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.course-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.course-meta-info i {
  color: var(--accent-gold);
  margin-right: 4px;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 14px;
}

.course-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.course-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.course-price-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* 3. Slider Section */
.workshop-slider-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.slider-wrapper-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.slider-quote-icon {
  font-size: 2.8rem;
  color: var(--accent-gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.slider-quote-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.slider-user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.slider-user-details {
  text-align: left;
}

.slider-user-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.slider-user-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-nav-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-nav-btn:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
}

/* 4. Training Video Courses Grid (Satın Al & İzle) */
.video-courses-section {
  padding: 100px 0 120px 0;
  background-color: var(--bg-secondary);
}

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

.video-card-tudor {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.video-card-tudor:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-thumb-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.video-card-tudor:hover .video-thumb-container img {
  transform: scale(1.05);
}

/* Video Thumbnail Title Overlay */
.video-thumb-title-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  max-width: 75%;
  text-align: right;
  z-index: 2;
}

.video-thumb-title-overlay span {
  display: inline;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  background: rgba(0, 0, 0, 0.65);
  padding: 4px 10px;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.video-duration-tag {
  display: none;
}

/* Video Thumbnail Info Overlay (İzle badge) */
.video-thumb-watch {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #88321a;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition-fast);
  z-index: 2;
}

.video-thumb-container:hover .video-thumb-watch {
  background: #a63d20;
}
.video-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.video-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.video-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-buy-video {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.btn-watch-preview {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   TUDOR ABOUT & COACHING HERO BANNER
   ========================================================================== */
.about-hero-banner {
  position: relative;
  min-height: 480px;
  background: linear-gradient(to bottom, rgba(20, 25, 35, 0.6) 0%, rgba(20, 25, 35, 0.75) 100%), url('https://picsum.photos/1920/1000?random=15') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}

.about-hero-content {
  max-width: 700px;
  padding: 60px 24px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   TUDOR ABOUT INTRO SECTION
   ========================================================================== */
.about-intro-section {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
}

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

.about-intro-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.about-intro-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.about-intro-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================================================
   TUDOR "GET TO KNOW US" SECTION & APPOINTMENT BOOKING CONTACT CARD
   ========================================================================== */
.get-to-know-us {
  padding: 120px 0;
  background: var(--bg-primary);
}

.get-to-know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dual-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.dual-img-col {
  position: relative;
}

.dual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.experience-floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 250px;
  z-index: 10;
  border-left: 4px solid var(--accent-gold);
}

.exp-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.exp-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1D20;
  line-height: 1.1;
  margin-bottom: 2px;
}

.exp-text p {
  font-size: 0.78rem;
  color: #5C626A;
  font-weight: 500;
}

.get-to-know-content {
  padding-left: 20px;
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--addcolor-orange-light);
  margin-bottom: 14px;
}

.section-heading-lg {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-lead-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.tudor-check-list {
  margin-bottom: 40px;
}

.tudor-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.tudor-check-list li i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.coach-signature-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.coach-round-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  padding: 2px;
}

.coach-signature-text {
  font-family: var(--font-signature);
  font-size: 2.8rem;
  color: var(--accent-gold);
  line-height: 1;
}

/* Appointment & Booking Contact Card (Replaces Dual Images on Bireysel Danışmanlık page) */
.booking-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-left: 4px solid var(--accent-gold);
}

.booking-contact-header {
  margin-bottom: 24px;
}

.booking-contact-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.booking-contact-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.booking-quick-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.quick-info-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  width: 24px;
}

/* ==========================================================================
   TUDOR "OUR SPECIALTIES" SECTION (Matches User Screenshot 100%)
   ========================================================================== */
.specialties-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.specialties-header {
  margin-bottom: 60px;
}

.specialties-header .section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.specialties-header .section-title-clean {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.specialty-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.specialty-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 2.2rem;
  color: var(--accent-gold);
}

[data-theme="dark"] .specialty-icon-circle {
  background: #1C2432;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.specialty-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
  min-height: 52px;
}

.specialty-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 250px;
  margin: 0 auto;
}

/* ==========================================================================
   TUDOR "EXCEL AT WORK" SPLIT SECTION
   ========================================================================== */
.excel-work-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.excel-work-img-col {
  width: 100%;
  height: 100%;
  min-height: 580px;
}

.excel-work-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excel-work-content-col {
  background-color: var(--accent-navy);
  color: #FFFFFF;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title-white {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-desc-light {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.skills-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-bar-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
}

.skill-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

/* ==========================================================================
   TUDOR TEAM SECTION
   ========================================================================== */
.team-section {
  padding: 110px 0;
  background-color: var(--bg-primary);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.team-header .section-title-clean {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

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

.team-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.team-img-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-info-box {
  position: relative;
  width: 85%;
  margin: -50px auto 0 auto;
  background: var(--bg-card);
  padding: 24px 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.team-socials a:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

/* ==========================================================================
   TUDOR CTA BANNER SECTION
   ========================================================================== */
.cta-banner-tudor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-secondary);
  width: 100%;
}

.cta-banner-content {
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-banner-img-col {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.cta-banner-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   TUDOR LOGOS STRIP
   ========================================================================== */
.logos-strip-tudor {
  padding: 60px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.logos-grid-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.logoipsum-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.logoipsum-item:hover {
  opacity: 1;
  color: var(--accent-gold);
}

/* ==========================================================================
   TRUE MASONRY PHOTO GALLERY
   ========================================================================== */
.books-gallery-section {
  padding: 90px 0 120px 0;
  background: var(--bg-primary);
}

.books-header {
  text-align: center;
  margin-bottom: 60px;
}

.books-header .section-tagline {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.books-header .section-title-clean {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.books-masonry-container {
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}

.book-card {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.book-img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.book-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-white-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 10;
}

[data-theme="dark"] .book-white-strip {
  background: rgba(28, 36, 50, 0.95);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.book-card:hover {
  transform: translateY(-8px) scale(1.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
  z-index: 30;
}

.book-card:hover .book-img-box img {
  transform: scale(1.06);
}

.book-card:hover .book-white-strip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  font-size: 12px !important;
}

.book-strip-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-strip-desc {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==============================================
   Book Detail Modal (Fixed Height, Scroll & Bottom Meta)
   ============================================== */
.book-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 30px;
}

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

/* Modal ana konteynırı: Yüksekliği sabitliyoruz (Sabit 540px / Maksimum 80vh) */
.book-modal-container {
  background: #fff;
  border-radius: 16px;
  max-width: 820px;
  width: 100%;
  height: 540px; /* Modal yüksekliği sabitlenir, uzayıp ekranı kaplamaz */
  max-height: 80vh;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden; /* Taşmayı engeller */
}

.book-modal-overlay.active .book-modal-container {
  transform: translateY(0) scale(1);
}

.book-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
}

.book-modal-close:hover {
  background: #88321a;
  color: #fff;
  border-color: #88321a;
}

.book-modal-layout {
  display: flex;
  gap: 0;
  height: 100%; /* İç düzen tüm yüksekliği %100 doldurur */
  align-items: stretch;
}

/* Sol Resim Kolonu: 100% yüksekliği doldurur, altında BOŞLUK OLUŞMAZ */
.book-modal-img-col {
  flex: 0 0 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  background-color: #1a1a2e;
}

.book-modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi tüm sol alana tam oturtur, asla boşluk kalmaz */
  display: block;
}

/* Sağ Bilgi Kolonu: Flex yapısında min-height: 0 ile taşma engellenir */
.book-modal-info-col {
  flex: 1 1 55%;
  padding: 38px 35px 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 0; /* Flexbox çocuklarının scroll olabilmesi için KRİTİK kural */
  overflow: hidden;
  box-sizing: border-box;
}

/* Üst Başlık ve Yazar Bilgisi (Sabit Kalır - Scroll Dışındadır) */
.book-modal-title {
  font-family: var(--font-heading, serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.25;
  flex: 0 0 auto;
}

.book-modal-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #88321a;
  margin-top: 0;
  margin-bottom: 16px;
  display: block;
  flex: 0 0 auto;
}

/* SADECE AÇIKLAMA METİN ALANI (SCROLL EDİLEN ALAN) */
.book-modal-desc-scroll {
  flex: 1 1 auto;
  min-height: 0; /* Yüksekliğin taşmak yerine kaydırılmasını sağlar */
  overflow-y: auto; /* Sadece bu açıklama metni scroll olur */
  padding-right: 12px;
  margin-bottom: 15px;
}

.book-modal-desc {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.book-modal-desc p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.book-modal-desc p:last-child {
  margin-bottom: 0;
}

/* Özel Şık Kaydırma Çubuğu (Metin Alanı İçin) */
.book-modal-desc-scroll::-webkit-scrollbar {
  width: 5px;
}

.book-modal-desc-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.book-modal-desc-scroll::-webkit-scrollbar-thumb {
  background: #c5a059;
  border-radius: 10px;
}

.book-modal-desc-scroll::-webkit-scrollbar-thumb:hover {
  background: #88321a;
}

/* ALT META ALANI: İLK BASIM TARİHİ (SCROLL DIŞINDA EN ALTA SABİT) */
.book-modal-meta {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.book-modal-meta i {
  color: #88321a;
  font-size: 0.95rem;
}

.book-modal-meta strong {
  color: #1e293b;
  font-weight: 600;
}






/* Mobil Uyumlu Duyarlı Ekran Ayarları */
@media (max-width: 700px) {
  .book-modal-container {
    height: auto;
    max-height: 88vh;
    overflow-y: auto;
  }
  .book-modal-layout {
    flex-direction: column;
    height: auto;
  }
  .book-modal-img-col {
    flex: 0 0 auto;
    height: 240px;
    border-radius: 16px 16px 0 0;
  }
  .book-modal-info-col {
    padding: 25px 20px;
    height: auto;
    overflow: visible;
  }
  .book-modal-desc-scroll {
    max-height: 220px;
  }
  .book-modal-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   TUDOR MAP & FLOATING CONTACT INFO CARD SECTION
   ========================================================================== */
.map-section-tudor {
  position: relative;
  width: 100%;
  background: #E5E7EB;
}

.floating-contact-orange-bar {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: var(--accent-gold);
  color: #FFFFFF;
  padding: 32px 50px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-info-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding-right: 30px;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.contact-info-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.map-canvas-container {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: url('https://ssweb.rhnegatif.net/wp-content/uploads/2026/08/footerimage.png') center/cover no-repeat;
  filter: grayscale(100%) contrast(1.1) brightness(1.05);
}

.map-pin-overlay {
  position: absolute;
  top: 55%;
  left: 51%;
  transform: translate(-50%, -50%);
  color: var(--accent-gold);
  font-size: 3rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  z-index: 5;
}

/* ==========================================================================
   TUDOR DARK FOOTER SECTION
   ========================================================================== */
.footer-tudor-dark {
  background: var(--accent-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 40px 0;
  position: relative;
}

.footer-tudor-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-tudor-title-lg {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 440px;
}

.footer-tudor-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-tudor-contact-links a {
  color: var(--addcolor-orange-light);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-tudor-contact-links a:hover {
  color: #FFFFFF;
}

.footer-tudor-col-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-tudor-list li {
  margin-bottom: 12px;
}

.footer-tudor-list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-tudor-list a:hover {
  color: var(--accent-gold);
}

.footer-tudor-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-tudor-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-tudor-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-tudor-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-tudor-socials a:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.footer-tudor-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-body {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-body {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--accent-navy);
  color: #FFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-gold);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .books-masonry-container {
    column-count: 3;
  }
  .workshops-grid, .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .books-masonry-container {
    column-count: 2;
  }
  .workshops-grid, .video-grid {
    grid-template-columns: 1fr;
  }
  .contact-middle-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-column {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .books-masonry-container {
    column-count: 1;
  }
}

@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3rem;
  }
  .floating-contact-orange-bar {
    grid-template-columns: 1fr;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
  .contact-info-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 0;
    padding-bottom: 16px;
  }
  .footer-tudor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner-tudor {
    grid-template-columns: 1fr;
  }
  .cta-banner-content {
    padding: 60px 24px;
    max-width: 100%;
  }
  .cta-banner-title {
    font-size: 2.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .excel-work-section {
    grid-template-columns: 1fr;
  }
  .excel-work-content-col {
    padding: 60px 30px;
  }
  .excel-work-content-col .section-title-white {
    font-size: 2.5rem;
  }
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .specialty-item:not(:last-child) {
    border-right: none;
  }
  .get-to-know-grid {
    grid-template-columns: 1fr;
  }
  .get-to-know-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .section-heading-lg {
    font-size: 2.4rem;
  }
  .hero-tudor-title {
    font-size: 3.2rem;
  }
  .hero-social-sidebar {
    display: none;
  }
  .nav-links, .phone-widget {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
 
	.navbar-tudor .nav-link.active {
        color: #d67054;
    }
	
	.navbar-tudor .nav-link {
        color: rgb(0 0 0 / 90%);
    }
	
	
	
	
}

/* ==========================================================================
   BLOG & PODCAST PAGE STYLES (blok-pod.html / blog-podcast.html)
   ========================================================================== */
.podcast-section {
  padding: 90px 0 100px 0;
  background-color: var(--bg-primary);
}

.podcast-hero-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.podcast-thumb-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.podcast-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-content-box {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.podcast-hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.podcast-hero-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.custom-audio-player-row {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-color);
}

.play-pause-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.play-pause-btn:hover {
  background: var(--addcolor-orange-light);
  transform: scale(1.05);
}

.audio-progress-bar {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 35%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.episode-card-tudor {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.episode-card-tudor:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.episode-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.episode-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.episode-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.episode-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.episode-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-hero-title {	
	text-align: center;
    padding: 50px 0;
    font-size: 50px;
    color: #d67054;
}


.podcast-section-youtube{
  padding: 90px 0 100px 0;
  background-color: var(--addcolor-black);
}

.blog-posts-section {
  padding: 10px 0 120px 0;
  background-color: var(--bg-secondary);
}

.blog-grid-tudor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card-tudor {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card-tudor:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-card-tudor:hover .blog-thumb-wrapper img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-date {
  font-size: 0.82rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.blog-read-more-link:hover {
  gap: 12px;
  color: var(--addcolor-orange-light);
}

/* ==========================================================================
   CORPORATE PROJECTS PAGE STYLES (corporate-projects.html / kurumsal-projeler.html)
   ========================================================================== */
.corporate-projects-section {
  padding: 100px 0 120px 0;
  background-color: var(--bg-primary);
}

.corporate-card-showcase {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--accent-gold);
  text-align: center;
}

.corporate-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.corporate-card-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.corporate-card-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 36px auto;
}

.corporate-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.feature-item-box {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.modern-external-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--addcolor-orange-light) 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.modern-external-cta-btn::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.6s ease;
}

.modern-external-cta-btn:hover::before {
  left: 100%;
}

.modern-external-cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(136, 50, 26, 0.45);
  color: #FFFFFF;
}

.modern-external-cta-btn i.btn-arrow-icon {
  transition: transform 0.3s ease;
}

.modern-external-cta-btn:hover i.btn-arrow-icon {
  transform: translateX(6px) translateY(-2px);
}


.grid-meta-bottom .post-grid-text-wrap {
	border-bottom: 1px solid #444444 !important;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

/* Mobil için: 2 kolon */
@media (max-width: 768px) {
  .corporate-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* İsterseniz mobilde boşluğu azaltabilirsiniz */
    margin-bottom: 32px;
  }
}

/* Çok küçük ekranlar için (opsiyonel): 1 kolon */
@media (max-width: 480px) {
  .corporate-features-grid {
    grid-template-columns: 1fr; /* Tek kolon */
    gap: 12px;
  }
}

@media (max-width: 768px) {
	.modern-external-cta-btn {	 
	  gap: 14px;
	  padding: 15px 15px;	 
	  font-size: 1.05rem;	  
	  border-radius: 25px;	 
	}
}

@media (max-width: 768px) {
	.contact-info-val {	  
	  font-size: 1.3rem;	  
	}
}

@media (max-width: 768px) {
	.blog-grid-tudor {
	  display: grid;
	  grid-template-columns: repeat(1, 1fr);
	  gap: 32px;
	}
}