/* Live Simulation */
.live-sim-section { padding: 60px 0; background: #fff; }
.sim-controls { display:flex; gap:6px; justify-content:center; margin-bottom:12px; }
.sim-grid { display:grid; grid-template-columns: 1fr 0.8fr 1.2fr; gap:15px; align-items:start; transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease; max-height: 0; overflow: hidden; }
.lane { background:#f8f9fb; border:1px solid #eef2f7; border-radius:10px; box-shadow:0 6px 16px rgba(0,0,0,0.04); overflow:hidden; }
.lane-header { background:#fff; border-bottom:1px solid #eef2f7; padding:10px 14px; font-weight:600; color:#333; font-size:14px; }
.lane-body { min-height:200px; padding:12px; display: flex; flex-direction: column; gap: 8px; }
.sim-grid .lane:nth-child(1) .lane-body,
.sim-grid .lane:nth-child(2) .lane-body { min-height:200px; }
.lane-body.center { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; }
.engine-indicator { padding:6px 10px; border-radius:999px; background:#e2e8f0; color:#334155; font-weight:600; font-size:12px; }
.engine-indicator.active { background:#c6f6d5; color:#22543d; box-shadow:0 0 0 6px rgba(198,246,213,0.35); transition: box-shadow .4s ease; animation:pulse 1.2s ease-in-out infinite; }
.engine-note { font-size:12px; color:#64748b; }

/* Make the middle engine lane visually lighter */
#sim-engine { min-height: 200px; }

.ticket { background:#fff; border:1px solid #e5e7eb; border-left:5px solid #1a365d; border-radius:8px; padding:8px 10px; margin-bottom:0; box-shadow:0 4px 12px rgba(0,0,0,0.04); transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease; position:relative; flex-shrink: 0; }
.ticket:hover { transform: translateY(-1px); box-shadow:0 6px 14px rgba(0,0,0,0.06); }
.ticket.high { border-left-color:#dc3545; }
.ticket.completed { border-left-color:#10b981; opacity:0.7; }
.ticket .progress-bar { position:absolute; top:0; left:0; height:100%; background:#c6f6d5; border-radius:8px 0 0 8px; transition:width 0.3s ease; z-index:1; opacity:0.4; }
.ticket .progress-overlay { position:absolute; top:50%; right:6px; transform:translateY(-50%); font-size:9px; color:#666; z-index:2; }
.rtl .ticket .progress-overlay { right: auto; left: 6px; }
.rtl .ticket .progress-bar { left: auto; right: 0; border-radius: 0 8px 8px 0; }
.ticket .t-title { font-weight:600; color:#333; font-size:13px; }
.ticket .t-meta { font-size:10px; color:#64748b; }

.ticket.spawn { animation: pop .22s ease; }
.ticket.fade-out { opacity:0; transform: translateY(10px); transition: all 0.2s ease; }

.staff { display:flex; flex-direction:column; gap:8px; }
.staff-col { background:#fff; border:1px solid #e5e7eb; border-radius:8px; padding:10px; }
.staff-col.overloaded { border-color: #ef4444; background: #fef2f2; }
.staff-head { display:flex; align-items:center; gap:6px; font-weight:600; margin-bottom:4px; color:#333; font-size:13px; }
.staff-avatar { width:24px; height:24px; border-radius:50%; background:#1a365d; color:white; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:600; }
.staff-stats { font-size:10px; color:#666; margin-bottom:6px; }
.stat-pending { color:#f59e0b; font-weight:500; }
.stat-completed { color:#10b981; font-weight:500; }
.staff-queue { min-height:100px; display:flex; flex-direction:column; gap:4px; }

@keyframes fly {
  0% { transform:translate(0,0) scale(1); opacity:1; }
  100% { transform:translate(var(--dx, 0), var(--dy, 0)) scale(0.98); opacity:1; }
}

.flying { animation: fly 900ms cubic-bezier(.4,0,.2,1) forwards; }

@keyframes pop {
  0% { transform: scale(.97); opacity:.0; }
  100% { transform: scale(1); opacity:1; }
}

@keyframes pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(198,246,213,.45); }
  50% { box-shadow:0 0 0 10px rgba(198,246,213,.2); }
}

@media (max-width: 900px) {
  .sim-grid { grid-template-columns: 1fr; }
  .lane-body { min-height: 220px; display: flex; flex-direction: column; gap: 8px; }
}

@media (max-width: 600px) {
  .staff { grid-template-columns: 1fr 1fr; }
  .ticket { padding: 8px 10px; border-radius: 8px; margin-bottom: 0; }
  .lane { border-radius: 10px; }
  .engine-note { font-size: 11px; }

  /* Live Simulation: mobile layout as squares for incoming + engine */
  .sim-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sim-grid .lane:nth-child(1),
  .sim-grid .lane:nth-child(2) {
    grid-column: auto;
  }
  /* If there is a 3rd lane, make it full width below */
  .sim-grid .lane:nth-child(3) {
    grid-column: 1 / -1;
  }
  .lane-header {
    font-size: 12px;
    text-align: center;
    padding: 8px 10px;
  }
  .lane-body,
  #sim-engine,
  .sim-grid .lane:nth-child(1) .lane-body,
  .sim-grid .lane:nth-child(2) .lane-body {
    min-height: 140px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  /* Compact engine visuals on mobile */
  .engine-indicator { font-size: 11px; padding: 5px 8px; }
  .engine-note { display: none; }

  /* Prevent mobile zoom on input focus */
  input, textarea, select, button {
    font-size: 16px !important;
  }

  /* Staff cards more compact to fit 3 on small screens */
  .staff { gap: 6px; }
  .staff-col { padding: 6px; }
  .staff-head { margin-bottom: 2px; font-size: 11.5px; gap: 5px; }
  .staff-avatar { width: 20px; height: 20px; font-size: 9px; }
  .staff-stats { font-size: 8.5px; margin-bottom: 3px; }
  .staff-queue { min-height: 70px; gap: 2px; }

  /* Mobile interactive demo: Card switching */
  .interactive-demo-section .interactive-grid {
    position: relative;
    height: 650px; /* Fixed height for stacking + badges */
    padding-top: 50px; /* Space for badges */
  }
  .interactive-demo-section .interactive-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  .interactive-demo-section .interactive-col.guest-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
  }
  .interactive-demo-section .interactive-col.employee-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
  }

  /* Mobile: Keep step badges inline in footer (avoid top overlay) */
  .interactive-demo-section .legend {
    position: static;
    text-align: center;
  }
  .interactive-demo-section .legend .badge {
    display: inline-block;
    margin: 0 4px;
    font-size: 11px;
    padding: 4px 8px;
  }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-image {
    height: 40px;
    width: auto;
    margin-right: 4px;
}

.logo-image-small {
    height: 24px;
    width: auto;
    margin-right: 4px;
}

.logo-image-loading {
    height: 50px;
    width: auto;
    margin-right: 6px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

/* Removed old logo-icon styles - now using real logo images */

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000; /* Siyah logo metni */
    font-family: 'Noto Serif', serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000000; /* Siyah navbar linkler */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a365d; /* Deep Navy Blue hover */
}

/* Buttons */
.btn-primary {
    background: #000000; /* Siyah zemin */
    color: #ffffff; /* Beyaz yazı */
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #1a365d; /* Deep Navy Blue hover */
}

.btn-secondary {
    background: white;
    color: #000000; /* Siyah yazı */
    padding: 12px 24px;
    border: 2px solid #000000; /* Siyah border */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    border-color: #1a365d; /* Deep Navy Blue border hover */
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000; /* Siyah başlık */
}

.highlight {
    color: #1a365d; /* Deep navy blue accent */
}

.problem-highlight {
    font-family: 'Noto Serif', serif; /* Header logo font for WishInn in problem section */
    color: #1a365d; /* Deep blue */
    font-weight: 700; /* Bold */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444444; /* Koyu gri - daha iyi readability */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d; /* Deep Navy Blue checkmark ikonları */
}

.stat-label {
    font-size: 0.9rem;
    color: #444444; /* Koyu gri */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    overflow: hidden;
}

/* Mockup resimler için responsive düzenlemeler */
.feature-image > div,
.solution-image > div {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero telefon mockup'ı için */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Mockup içerikleri için responsive */
.phone-screen > div {
    height: 100%;
    overflow-y: auto; /* single scroll container */
    padding-bottom: 60px; /* Bottom navigation için yer */
}

/* Feature kartları için responsive */
.feature-card {
    height: auto;
    min-height: 400px;
}

.feature-image {
    height: auto;
    overflow: visible;
}

.feature-image > div {
    height: auto !important;
    overflow: visible;
}

/* Solution bölümü için */
.solution-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Demo akışı için responsive */
.demo-step {
    margin-bottom: 2rem;
}

.demo-step img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobil App Stilleri */
.mobile-app-screen {
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Removed app-logo .logo-icon styles - now using real logo images */

.app-logo .logo-text {
    font-weight: bold;
    color: #000000; /* Siyah mockup logo metni */
    font-size: 18px;
    font-family: 'Noto Serif', serif;
}

.menu-icon {
    font-size: 20px;
    color: #666;
}

.welcome-banner {
    background: #333;
    color: white;
    padding: 20px;
    margin: 0;
}

.welcome-banner h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.welcome-banner p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.section {
    padding: 20px;
    flex: initial;
    overflow: visible;
}

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

.section-header h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.view-all {
    color: #1a365d;
    font-size: 14px;
    font-weight: 500;
}

.card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.card-text {
    flex: 1;
}

.card-title {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

.status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status.pending {
    background: #ffc107;
    color: white;
}

.status.confirmed {
    background: #28a745;
    color: white;
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    z-index: 10;
}

.nav-item {
    text-align: center;
    flex: 1;
}

.nav-item.active .nav-icon {
    color: #1a365d;
}

.nav-item.active span {
    color: #1a365d;
}

.nav-icon {
    font-size: 18px;
    margin-bottom: 4px;
    color: #666;
}

.nav-item span {
    font-size: 10px;
    color: #666;
    display: block;
}

/* Demo Tab Stilleri */
.demo-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.demo-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.demo-tab:hover {
    background: #e9ecef;
    border-color: #1a365d;
}

.demo-tab.active {
    background: #1a365d;
    border-color: #1a365d;
    color: white;
}

.demo-content {
    position: relative;
}

.demo-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-tab-content.active {
    display: block;
    opacity: 1;
}

/* Demo Senaryoları Stilleri */
.demo-scenario {
    margin-top: 2rem;
}

.scenario-header {
    text-align: center;
    margin-bottom: 3rem;
}

.scenario-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.scenario-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.step-mockup {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.mobile-mockup-small {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tablet-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    background: #444;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    margin-bottom: 15px;
}

.mockup-content {
    background: white;
    height: calc(100% - 50px);
    border-radius: 8px;
    padding: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Form Stilleri */
.request-form, .concierge-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.request-form h4, .concierge-form h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-field select, .form-field input, .form-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
}

.form-field textarea {
    height: 80px;
    resize: none;
}

.submit-btn {
    background: #1a365d;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-top: auto;
    cursor: pointer;
}

/* Service Options */
.service-options h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.option-card.selected {
    border-color: #1a365d;
    background: #f8f9ff;
}

.option-icon {
    font-size: 20px;
    margin-right: 10px;
}

.option-text strong {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 2px;
}

.option-text p {
    font-size: 10px;
    color: #666;
    margin: 0;
}

/* Pending Requests */
.pending-requests h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.request-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.request-info strong {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.request-info p {
    font-size: 11px;
    color: #666;
    margin: 0 0 4px 0;
}

.request-info .time {
    font-size: 10px;
    color: #999;
}

.request-actions {
    margin-top: 10px;
}

.assign-btn, .accept-btn, .decline-btn, .complete-btn, .confirm-btn, .modify-btn, .respond-btn, .call-btn, .update-btn {
    background: #1a365d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    margin-right: 5px;
}

.decline-btn {
    background: #dc3545;
}

.complete-btn {
    background: #28a745;
}

.respond-btn {
    background: #ffc107;
    color: #333;
}

/* Task List */
.task-list h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.task-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.task-info strong {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.task-info p {
    font-size: 11px;
    color: #666;
    margin: 0 0 4px 0;
}

.task-info .assignee {
    font-size: 10px;
    color: #999;
}

/* Auto Assignment */
.auto-assignment h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.assignment-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.assignment-info strong {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
}

.assignment-info p {
    font-size: 11px;
    color: #666;
    margin: 0 0 4px 0;
}

.assignment-info .auto-assign {
    font-size: 10px;
    color: #28a745;
    font-weight: 500;
}

.assignment-status {
    margin-top: 10px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.status-badge.assigned {
    background: #28a745;
    color: white;
}

/* Task Progress */
.task-details h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.task-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.progress-step .step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-bottom: 5px;
}

.progress-step.completed .step-icon {
    background: #28a745;
    color: white;
}

.progress-step.active .step-icon {
    background: #adb5bd; /* grey in-progress */
    color: white;
}

.progress-step span:last-child {
    font-size: 9px;
    color: #666;
    text-align: center;
}

/* Smooth highlight transition for progress states */
.progress-step .step-icon,
.progress-step span:last-child {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Notifications */
.notification {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.notification.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.notification-icon {
    font-size: 24px;
    margin-right: 15px;
}

.notification-text h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.notification-text p {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #666;
}

.notification-text .time {
    font-size: 10px;
    color: #999;
}

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

.rating-section p {
    font-size: 12px;
    color: #666;
    margin: 0 0 10px 0;
}

.stars {
    font-size: 20px;
    display: inline-flex;
    gap: 6px;
}

.stars .star {
    cursor: pointer;
    color: #cbd5e0; /* muted */
    transition: transform 0.15s ease, color 0.15s ease;
    user-select: none;
}

.stars .star:hover {
    transform: scale(1.1);
}

.stars .star.active,
.stars .star.selected {
    color: #f5a623; /* gold */
}

/* Concierge Requests */
.concierge-requests h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.request-card.urgent {
    border-left: 4px solid #dc3545;
}

.priority {
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 500;
}

.priority.high {
    background: #dc3545;
    color: white;
}

/* Planning Details */
.planning-details h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
}

.plan-item strong {
    color: #333;
}

.plan-item span {
    color: #666;
}

/* Confirmation Card */
.confirmation-card {
    text-align: center;
}

.confirmation-card h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.service-details {
    text-align: left;
    margin-bottom: 20px;
}

.service-details p {
    margin: 0 0 8px 0;
    font-size: 12px;
}

.service-details strong {
    color: #333;
}

.confirmation-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Emergency Screen */
.emergency-screen {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emergency-alert {
    margin-bottom: 20px;
}

.alert-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.emergency-alert h4 {
    margin: 0 0 10px 0;
    color: #dc3545;
    font-size: 18px;
}

.emergency-alert p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.emergency-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    cursor: pointer;
}

.emergency-info p {
    font-size: 10px;
    color: #999;
    margin: 0;
}

/* Alert System */
.alert-system {
    height: 100%;
}

.alert-banner {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-banner.emergency {
    background: #dc3545;
    color: white;
}

.alert-banner h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.alert-banner p {
    margin: 0 0 5px 0;
    font-size: 12px;
}

.alert-time {
    font-size: 10px;
    opacity: 0.8;
}

.alert-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.alert-recipients h5 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.alert-recipients ul {
    margin: 0;
    padding-left: 20px;
}

.alert-recipients li {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

/* Response Details */
.response-details h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.response-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.status-item .status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-bottom: 5px;
}

.status-item.active .status-icon {
    background: #1a365d;
    color: white;
}

.status-item span:last-child {
    font-size: 9px;
    color: #666;
    text-align: center;
}

.response-actions {
    display: flex;
    gap: 10px;
}

/* Follow-up Card */
.follow-up-card {
    text-align: center;
}

.success-message {
    margin-bottom: 20px;
}

.success-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.success-message h4 {
    margin: 0 0 10px 0;
    color: #1a365d;
    font-size: 16px;
}

.success-message p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.follow-up-questions h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 14px;
}

.response-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.response-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.response-btn:hover {
    background: #e9ecef;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .phone-mockup {
        width: 100%;
        max-width: 400px; /* same as desktop */
        height: 600px;    /* same as desktop */
        padding: 20px;    /* same as desktop */
    }
    
    .mobile-mockup-small {
        width: 270px;
        height: 600px;
        padding: 12px;
    }
        
    .tablet-mockup {
        width: 270px;
        height: 600px;
        padding: 15px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .demo-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 100%;
        max-width: 400px; /* same as desktop */
        height: 600px;    /* same as desktop */
        padding: 20px;    /* same as desktop */
    }
    
    .feature-image {
        height: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: auto;
}

.problem-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.point-icon {
    width: 36px;
    height: 36px;
    background: #1a365d;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    color: white;
    font-size: 1.1rem;
}

.point-content {
    flex: 1;
}

.problem-text p {
    margin: 0 0 0.125rem 0;
    color: #4a5568;
    font-size: 1.0rem;
    line-height: 1.3;
}

.solution-text p {
    margin: 0;
    color: #1a365d;
    font-weight: 600;
    font-size: 1.0rem;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.6s ease;
}

.problem-point.revealed .solution-text p {
    opacity: 1;
    transform: translateY(0);
}

.problem-point.revealed .problem-text p {
    opacity: 0.4;
    text-decoration: line-through;
    transition: all 0.8s ease;
}


@media (max-width: 768px) {
    .problem-section {
        padding: 60px 0;
    }

    .problem-points {
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .problem-point {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .point-icon {
        width: 32px;
        height: 32px;
    }

    .point-icon i {
        font-size: 0.9rem;
    }

}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000; /* Siyah section başlıkları */
}

.section-title .brand-name {
    font-family: 'Noto Serif', serif;
    color: #1a365d;
}

/* Interactive Dual-Phone Demo */
.interactive-demo-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.interactive-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.interactive-title {
    text-align: center;
    color: #333;
}

.interactive-phone {
    margin: 0 auto;
}

.btn-action {
    background: #1a365d;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-action:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.hint {
    font-size: 10px;
    color: #666;
    margin-top: 8px;
}

.interactive-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend .badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    margin-right: 8px;
}

.badge-pending { background: #ffe08a; color: #7a5a00; }
.badge-disabled { background: #e2e8f0; color: #475569; }
.badge-active { background: #c6f6d5; color: #22543d; }

@media (max-width: 768px) {
    .interactive-grid { grid-template-columns: 1fr; }
}

/* Tooltips removed per design */

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

.problem-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

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

/* Desktop için 2x2 düzen */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Tablet için tek sütun */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.demo-tab {
    padding: 12px 24px;
    border: 2px solid #667eea;
    background: white;
    color: #1a365d;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab.active {
    background: #1a365d;
    color: white;
}

.demo-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
}

.step-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-arrow {
    font-size: 2rem;
    color: #1a365d;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* ROI Section */
.roi-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Pilot Cards Styles */
.pilot-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pilot-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pilot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pilot-card-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.pilot-card-header h3 {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Pilot Steps */
.pilot-steps {
    margin-bottom: 25px;
}

.pilot-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fb;
    border-radius: 12px;
    border-left: 4px solid #1a365d;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-label {
    display: block;
    font-weight: 600;
    color: #1a365d;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.step-value {
    display: block;
    color: #333;
    font-size: 0.95rem;
}

/* Pilot Note */
.pilot-note {
    margin-top: 25px;
}

.note-highlight {
    background: linear-gradient(135deg, #f8f9fb 0%, #e5e7eb 100%);
    border: 1px solid #1a365d;
    border-left: 4px solid #1a365d;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.note-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
}

.note-highlight i {
    color: #1a365d;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.note-highlight span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Pilot Results */
.pilot-results {
    margin-bottom: 25px;
}

.result-highlight {
    background: linear-gradient(135deg, #1a365d 0%, #000000 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.result-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.result-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

/* Pilot Support */
.pilot-support h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fb;
    border-radius: 8px;
    border-left: 3px solid #1a365d;
    transition: all 0.3s ease;
}

.support-item:hover {
    background: #e5e7eb;
    transform: translateX(4px);
}

.support-item i {
    color: #1a365d;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.support-item span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pilot-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pilot-card {
        padding: 20px;
    }
    
    .department-list {
        grid-template-columns: 1fr;
    }
    
    .pilot-step {
        padding: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

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

.roi-calculator {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.roi-item:last-child {
    border-bottom: none;
}

.roi-item.highlight {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    margin: 1rem -2rem -2rem;
    padding: 1.5rem 2rem;
    border-radius: 0 0 12px 12px;
}

.roi-label {
    font-weight: 500;
    color: #666;
}

.roi-item.highlight .roi-label {
    color: white;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.roi-item.highlight .roi-value {
    color: white;
}

.chart-image {
    width: 100%;
    border-radius: 12px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}
.room-range {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.pricing-features i {
    color: #1a365d;
}

/* Future Pacing Section */
.future-pacing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.future-pacing-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

@media (min-width: 1200px) {
    .future-pacing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.future-pacing-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.future-pacing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.future-pacing-item:hover .future-pacing-icon i {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.future-pacing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.future-pacing-icon i {
    color: #1a365d;
}

.future-pacing-item p {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.future-pacing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-features {
    display: grid;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-feature i {
    color: #1a365d;
    font-size: 1.2rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e3f2fd;
}

.footer-section i {
    margin-right: 0.5rem;
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    /* Language switcher positioned where hamburger menu would be on mobile */
    .navbar .language-switcher {
        display: block !important;
        margin-left: auto;
        margin-right: 1rem;
        order: -1; /* Move language switcher before nav-menu in flex order */
        background: rgba(26, 54, 93, 0.08);
        border: 1px solid rgba(26, 54, 93, 0.15);
        border-radius: 8px;
        padding: 8px 12px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 4px rgba(26, 54, 93, 0.05);
        transition: all 0.3s ease;
        min-width: 60px;
    }
    
    .navbar .language-switcher:hover {
        background: rgba(26, 54, 93, 0.12);
        border-color: rgba(26, 54, 93, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
    }
    
    .navbar .language-switcher select {
        background: transparent;
        border: none;
        color: #1a365d;
        font-weight: 600;
        font-size: 13px;
        padding: 0;
        margin: 0;
        width: auto;
        min-width: auto;
        cursor: pointer;
        outline: none;
    }
    
    .navbar .language-switcher select option {
        background: #1a365d;
        color: white;
        padding: 8px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .demo-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
    }
    
    .roi-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Success and Error Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in;
}

.success-message i {
    color: #1a365d;
    font-size: 18px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in;
}

.error-message i {
    color: #dc3545;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Google Form Embed */
.google-form-embed {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.google-form-embed iframe {
    width: 100%;
    min-height: 720px;
    border: 0;
}

/* Form Labels and Required Asterisk */
.form-label {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
    font-size: 14px;
}

.required-asterisk {
    color: #dc3545;
    margin-left: 4px;
}

.form-help {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 400;
    line-height: 1.4;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 24px;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Story Video Section */
.story-video-section {
    padding: 60px 0;
    background: #ffffff;
}

.story-video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #000;
    max-width: 560px;
    margin: 0 auto;
}

.story-video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    background: #000;
}

.story-video-wrap iframe {
    display: block;
    width: 100%;
    height: auto;
    max-width: 560px;
    aspect-ratio: 16/9;
    background: #000;
}

/* Audio toggle button over video */
.video-audio-toggle {
    position: absolute;
    right: 14px;
    top: calc(14px + env(safe-area-inset-top));
    bottom: auto;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    color: #111827;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.video-audio-toggle:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.video-audio-toggle:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .story-video-section {
        padding: 40px 0;
    }
    .story-video {
        max-height: 50vh;
    }

    .story-video-wrap iframe {
        max-width: 100%;
    }
    .video-audio-toggle {
        right: 10px;
        bottom: auto;
        top: calc(12px + env(safe-area-inset-top));
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile landscape: keep it bottom-right away from thumbs and system bars */
@media (max-width: 768px) and (orientation: landscape) {
    .video-audio-toggle {
        top: auto;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 32px;
    min-height: 24px;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s ease;
    pointer-events: none;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background-color: #1a365d;
    border-color: #1a365d;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label:hover .checkbox-custom {
    border-color: #1a365d;
}

.checkbox-text {
    flex: 1;
    color: #374151;
    font-weight: 400;
}

/* YouTube Player Styles */
.youtube-player-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.video-thumbnail:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.play-button svg {
    width: clamp(18px, 4vw, 28px);
    height: clamp(18px, 4vw, 28px);
    margin-left: clamp(1px, 0.2vw, 3px); /* Center the play triangle */
}

#player-wrapper {
    width: 100%;
    height: 100%;
}

/* Responsive Video Iframe */
#fallback-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Container already responsive with padding-bottom technique - no additional media queries needed */

/* Play button now automatically scales with clamp() - no media queries needed */
