:root { 
  --brand:#FF6B35; 
  --brand-hover:#e55a2b;
  --text:#0f172a; 
  --muted:#6b7280; 
  --bg:#fafafa; 
  --elevated:#ffffff; 
  --border:#e5e7eb; 
  --shadow:0 2px 8px rgba(2,6,23,0.04); 
  --shadow-lg:0 10px 40px rgba(2,6,23,0.08);
  --link:#2563eb; 
}

* { box-sizing: border-box; }

/* Remove underlines from all links */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

html,body { 
  margin:0; 
  padding:0; 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
  color:var(--text); 
  background:var(--bg); 
}

body { 
  line-height:1.6; 
  font-size: 16px;
}
a { color:var(--link); text-decoration:none; }
a:hover { text-decoration:underline; }

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

/* Tipografi */
h1 { margin:0 0 12px; font-size:clamp(32px, 5vw, 42px); font-weight:700; letter-spacing:-0.02em; color:#0f172a; }
h2 { margin:0 0 16px; font-size:30px; font-weight:700; letter-spacing:-0.01em; color:#111827; line-height:1.15; }
h3 { margin:0 0 8px; font-size:22px; font-weight:600; color:#111827; }
h4 { margin:0 0 8px; font-size:18px; font-weight:600; color:#111827; }
p { font-size: 16px; line-height: 1.6; }

/* Header */
.topbar { 
  position:fixed; 
  top:0; 
  left:0;
  right:0;
  background:#ffffff;
  box-shadow:0 1px 3px rgba(0,0,0,0.1);
  z-index:1000;
  transition: background .3s ease, box-shadow .3s ease;
}

.topbar.transparent {
  background:transparent;
  box-shadow:none;
}

.topbar.transparent .brand,
.topbar.transparent .nav-links a,
.topbar.transparent .nav-hello {
  color:#ffffff;
}

.topbar.transparent .btn-secondary {
  color:#ffffff;
  border-color:rgba(255,255,255,0.3);
}

.topbar.transparent .mobile-user-button {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.topbar.transparent .mobile-user-button:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
}

.topbar.transparent .mobile-menu-toggle {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.topbar.transparent .mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

.topbar .container { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:20px 20px; 
  max-width:1400px;
}

.brand { 
  color:var(--brand); 
  font-weight:700; 
  font-size:28px;
  transition: color .3s ease;
}

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

.nav-links { 
  display:flex; 
  align-items:center; 
  gap:32px;
  flex:1;
  margin-left:48px;
}

.nav-links a {
  color:#111827;
  font-size:16px;
  font-weight:500;
  text-decoration:none;
  transition: color .2s ease;
}

.nav-links a:hover {
  color:var(--brand);
  text-decoration:none;
}

.nav-actions { 
  display:flex; 
  align-items:center; 
  gap:12px; 
}

.nav-hello { 
  color:#374151; 
  margin-right:4px; 
  font-size:14px;
  transition: color .3s ease;
}
nav .btn, .admin-link, .btn { 
  margin-left:0; 
  padding:12px 24px; 
  border:2px solid transparent; 
  background:var(--elevated); 
  border-radius:8px; 
  cursor:pointer; 
  transition: all .2s ease; 
  font-weight:600; 
  color:#111827;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}

.btn-secondary {
  background:transparent;
  color:#ffffff;
  border-color:rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.5);
}

.btn:hover { 
  transform: translateY(-1px); 
  box-shadow:0 4px 12px rgba(2,6,23,0.1); 
  text-decoration:none;
}

.btn:active { transform: translateY(0); box-shadow:none; }
.btn:focus-visible { outline:2px solid rgba(37,99,235,0.4); outline-offset:2px; }

.btn-primary { 
  background:#66CC33; 
  color:#fff; 
  border-color: #66CC33; 
}

.btn-primary:hover { 
  background:#66CC33; 
  border-color:#66CC33;
}

.btn-search {
  background:#66CC33;
  color:#fff;
  border:none;
  padding:16px 40px;
  font-size:16px;
  font-weight:700;
  border-radius:0 12px 12px 0;
  cursor:pointer;
  transition: background .2s ease;
  min-width: 120px;
  flex-shrink: 0;
  box-sizing:border-box;
}

.btn-search:hover {
  background:#66CC33;
}

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

.btn-outline:hover { 
  background:rgba(255,107,53,0.05); 
}

/* Green outlined button for call action */
.btn-outline-green {
  background: transparent;
  color: #52c41a;
  border-color: #52c41a;
}

.btn-outline-green:hover {
  background: rgba(82, 196, 26, 0.05);
  color: #52c41a;
  border-color: #52c41a;
}

.btn-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #262626;
  border: 1px solid #d9d9d9;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-user:hover {
  border-color: #52c41a;
  color: #52c41a;
  box-shadow: 0 2px 6px rgba(82, 196, 26, 0.15);
  transform: translateY(-1px);
}

.btn-user svg {
  flex-shrink: 0;
}

/* Header actions - desktop alignment and uniform button sizing */
.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions-desktop .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
}

/* Hero Banner - Full Screen */
.hero-fullscreen { 
  position:relative; 
  min-height:600px;
  height:85vh;
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
  background-size:cover;
  background-position:center;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  overflow:hidden; 
  margin-bottom:0;
  padding-top:80px;
}

.hero-inner { 
  position:relative; 
  z-index:2; 
  max-width:900px; 
  margin:0 auto; 
  padding:0 20px; 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  text-align:center; 
  gap:20px; 
  width:100%;
  box-sizing:border-box;
}

.hero-fullscreen h1 { 
  margin:0; 
  letter-spacing:-0.01em; 
  font-size:clamp(36px, 6vw, 56px); 
  color:#ffffff; 
  font-weight:700; 
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  line-height:1.15;
}

.hero-subtitle { 
  margin:0; 
  color:rgba(255,255,255,0.98); 
  font-size:20px;
  font-weight:400; 
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  line-height:1.25;
}

/* Search Box Large */
.search-box-large { 
  display:flex; 
  width:100%;
  max-width:1200px;
  margin:0 auto;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  border-radius:12px;
  overflow:visible;
  position: relative;
  box-sizing:border-box;
}

.search-box-large input { 
  flex:1; 
  padding:18px 24px; 
  border:none;
  font-size:16px;
  background:#ffffff;
  color:#111827;
  outline:none;
  border-radius:12px 0 0 12px;
  box-sizing:border-box;
  min-width:0;
}

.search-box-large input::placeholder {
  color:#9ca3af;
}

/* Search Autocomplete */
.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 120px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  margin-top: 2px;
}

.search-autocomplete.active {
  display: block;
}

.autocomplete-header {
  padding: 12px 24px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.autocomplete-item {
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
}

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

.autocomplete-item:hover {
  background: #f9fafb;
}

.autocomplete-item-text {
  font-size: 15px;
  color: #111827;
  font-weight: 500;
}

.autocomplete-item-highlight {
  font-weight: 700;
  color: #FF6B35;
}

.autocomplete-no-results {
  padding: 32px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 15px;
}

/* Cards */
.card { 
  border:1px solid var(--border); 
  border-radius:12px; 
  padding:20px; 
  background:var(--elevated); 
  box-shadow: var(--shadow); 
  transition: transform .2s ease, box-shadow .2s ease; 
}

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

/* Sections */
.section { padding:40px 0; }
.section-title { 
  margin:0 0 24px; 
  font-size:30px; 
  font-weight:700; 
  letter-spacing:-0.01em; 
  color:#111827; 
}

/* Provider CTA Banner */
.provider-cta {
  padding:60px 0;
  background:#f9fafb;
}

.provider-cta-inner {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
}

.provider-cta-image {
  width:100%;
  height:100%;
  min-height:400px;
}

.provider-cta-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.provider-cta-content {
  padding:40px 60px 40px 0;
}

.provider-cta-title {
  font-size:36px;
  font-weight:700;
  color:#66CC33;
  margin:0 0 20px;
  line-height:1.2;
}

.provider-cta-desc {
  font-size:17px;
  color:#4b5563;
  line-height:1.6;
  margin:0 0 32px;
}

.provider-cta-button {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:16px 32px;
  background:#66CC33;
  color:#ffffff;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  text-decoration:none;
  transition: all .2s ease;
  box-shadow:0 4px 12px rgba(34,197,94,0.25);
}

.provider-cta-button:hover {
  background:#66CC33;
  transform: translateY(-2px);
  box-shadow:0 6px 20px rgba(34,197,94,0.35);
  text-decoration:none;
}

.provider-cta-button svg {
  width:20px;
  height:20px;
}

/* Category Grid - Armut Style */
.category-grid { 
  display:grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap:16px; 
  margin:0 0 24px; 
}

.category-item { 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:flex-start; 
  padding:16px; 
  background:#ffffff; 
  border:1px solid var(--border); 
  border-radius:12px; 
  cursor:pointer; 
  transition: all .2s ease; 
  text-align:center;
  min-height:180px;
  text-decoration:none;
  overflow: hidden;
}

.category-item:hover { 
  transform: translateY(-4px); 
  box-shadow:0 8px 24px rgba(2,6,23,0.08); 
  border-color:var(--brand);
  text-decoration:none;
}

.category-icon { 
  font-size:36px; 
  margin-bottom:10px; 
}

.category-image {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image {
  transform: scale(1.05);
}

.category-name { 
  font-size:15px; 
  font-weight:600; 
  color:#0f172a; 
}

/* Hidden items */
.category-hidden {
  display: none;
}

.trend-hidden {
  display: none;
}

/* Show More Button */
.section-action {
  text-align: center;
  margin-top: 24px;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #ffffff;
  font-size: 16px;
  color: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-show-more:hover {
  background: var(--brand);
  color: #ffffff;
}

.btn-show-more svg {
  transition: transform 0.3s ease;
}

.btn-show-more.active svg {
  transform: rotate(180deg);
}

/* Responsive category grid */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-app-cta { padding: 40px 0; }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .category-item {
    padding: 12px;
    min-height: 160px;
  }
  
  .category-icon {
    font-size: 32px;
  }
  
  .category-image {
    height: 100px;
    margin-bottom: 8px;
  }
  
  .category-name {
    font-size: 15px;
  }
}

/* Trend Services Section */
.trend-services {
  padding:60px 0;
  background:#ffffff;
}

.trend-services h2 {
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
  color:#111827;
}

.trend-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  max-width:1400px;
  margin:0 auto;
}

/* Empty state in trend grid */
.trend-grid .empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: #6b7280;
  padding: 24px;
}

@media (max-width: 768px) {
  .trend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:16px;
  }
}

.trend-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background:#ffffff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor:pointer;
  border:1px solid #e5e7eb;
}
.trend-card.hidden { display: none !important; }

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,0.12);
}

.trend-card-image {
  position:relative;
  width:100%;
  height:200px;
  overflow:hidden;
  background:#f3f4f6;
}

.trend-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.trend-card-body {
  padding:16px;
}

.trend-card-title {
  font-size:18px;
  font-weight:500;
  color:#111827;
  margin:0 0 12px;
}

.trend-card-meta {
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}

.trend-meta-item {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:15px;
  color:#6b7280;
}

.trend-meta-item.rating-stack {
  flex-direction: column;
  align-items: flex-start;
}
.trend-meta-item.rating-stack > span:last-child {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.3;
}

.trend-meta-item svg,
.trend-meta-item .icon {
  width:16px;
  height:16px;
  color:#9ca3af;
}

.trend-rating {
  display:flex;
  align-items:center;
  gap:4px;
  color:#f59e0b;
  font-weight:600;
}

.trend-rating .star {
  color:#f59e0b;
}

.trend-card-action {
  width:100%;
}

.trend-card-action .btn {
  width:100%;
  justify-content:center;
  background:#66CC33;
  color:#ffffff;
  border:none;
  font-size:15px;
  padding:12px;
  border-radius:8px;
  font-weight:600;
  transition: background .2s ease;
}

.trend-card-action .btn:hover {
  background:#66CC33;
  transform:none;
}

/* Popular Services Grid - 6 columns */
.popular-services {
  padding:60px 0;
  background:#fafafa;
}

.popular-services h2 {
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
  color:#111827;
}

.popular-grid {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:20px;
  max-width:1400px;
  margin:0 auto;
}

.popular-card {
  background:#ffffff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor:pointer;
  border:1px solid #e5e7eb;
}

.popular-card:hover {
  transform: translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,0.1);
}

.popular-card-image {
  width:100%;
  height:140px;
  overflow:hidden;
  background:#f3f4f6;
}

.popular-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.popular-card-body {
  padding:12px;
  text-align:center;
}

.popular-card-title {
  font-size:16px;
  font-weight:500;
  color:#111827;
  margin:0;
}

/* Service Cards - Legacy */
.card-list { 
  display:grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap:20px; 
  margin:0 0 40px; 
}

.services-grid .service-card { 
  display:flex; 
  flex-direction:column; 
  overflow:hidden; 
  padding:0; 
  border-radius:12px;
}

.services-grid .service-card img { 
  width:100%; 
  height:180px; 
  object-fit:cover; 
  display:block; 
}

.services-grid .service-card .service-card-body { 
  padding:16px; 
}

.service-title { 
  font-weight:500; 
  color:#111827; 
  font-size:16px; 
  margin-bottom:6px;
}

.service-desc { 
  color:#6b7280; 
  font-size:14px; 
  line-height:1.5;
}

.price-range { 
  font-size:14px; 
  color:var(--brand); 
  margin-top:8px; 
  font-weight:600;
}

/* Stats */
.stats { 
  display:grid; 
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
  gap:16px; 
  margin-bottom:20px;
}

.stat-card { 
  padding:24px; 
  background:#ffffff; 
  border-radius:12px; 
  text-align:center; 
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.stat-value { 
  font-size:36px; 
  font-weight:800; 
  color:var(--brand); 
  letter-spacing:-0.02em; 
}

.stat-label { 
  font-size:16px; 
  color:#6b7280; 
  margin-top:6px; 
}

/* How It Works Section */
.how-it-works {
  padding:80px 0;
  background:#ffffff;
}

.how-it-works h2 {
  text-align:center;
  margin-bottom:60px;
  font-size:36px;
  color:#111827;
}

.how-steps {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:60px;
  max-width:1200px;
  margin:0 auto;
  position:relative;
}

.how-steps::before {
  content:'';
  position:absolute;
  top:160px;
  left:15%;
  right:15%;
  height:2px;
  background:#e5e7eb;
  z-index:0;
}

.how-step {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  z-index:2;
}

.how-step-image {
  width:100%;
  max-width:320px;
  height:320px;
  margin-bottom:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:3;
}

.how-step-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.how-step-number {
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  width:56px;
  height:56px;
  background:#ffffff;
  border:3px solid #FF6B35;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:800;
  color:#FF6B35;
  box-shadow:0 4px 12px rgba(255,107,53,0.2);
  z-index:4;
}

.how-step-title {
  font-size:20px;
  font-weight:700;
  color:#111827;
  margin:0 0 12px;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.how-step-desc {
  font-size:15px;
  color:#6b7280;
  line-height:1.6;
  max-width:320px;
  min-height:80px;
}

/* Features / Steps - Legacy */
.feature-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap:20px; 
}

.feature-card { 
  background:#ffffff; 
  border-radius:12px; 
  padding:24px; 
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.step-card { 
  display:flex; 
  flex-direction:column; 
  gap:12px; 
}

.step-num { 
  width:48px; 
  height:48px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  border-radius:50%; 
  background:var(--brand); 
  color:#fff; 
  font-weight:700; 
  font-size:20px;
}

.feature-title { 
  font-weight:700; 
  color:#0f172a; 
  font-size:18px;
  margin-bottom:4px;
}

.feature-desc { 
  color:#6b7280; 
  font-size:14px; 
  line-height:1.6;
}

/* Testimonials - Modern */
.testimonials-section {
  padding:80px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.testimonials-section h2 {
  text-align:center;
  margin-bottom:50px;
  font-size:36px;
  color:#111827;
}

.testimonials { 
  display:grid; 
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); 
  gap:30px; 
  max-width:1200px;
  margin:0 auto;
}

.t-card { 
  display:flex; 
  flex-direction:column; 
  gap:20px; 
  padding:32px;
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
  border:1px solid #e5e7eb;
  position:relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

.t-card-header {
  display:flex;
  align-items:center;
  gap:16px;
}

.t-avatar {
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #f3f4f6;
}

.t-user-info {
  flex:1;
}

.t-user-name { 
  color:#111827; 
  font-size:16px; 
  font-weight:700;
  margin:0 0 4px;
}

.t-user-title {
  color:#6b7280;
  font-size:13px;
}

.t-rating {
  display:flex;
  gap:4px;
  margin-bottom:4px;
}

.t-star {
  color:#fbbf24;
  font-size:16px;
}

.t-quote-icon {
  position:absolute;
  top:24px;
  right:24px;
  width:32px;
  height:32px;
  opacity:0.1;
}

.t-text { 
  color:#4b5563; 
  font-size:15px; 
  line-height:1.7;
  font-style:normal;
  position:relative;
}

/* CTA */
.cta { margin:40px 0; }

.cta-inner { 
  background:linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,140,95,0.05)); 
  border-radius:16px; 
  padding:32px; 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:20px;
  border:1px solid rgba(255,107,53,0.2);
}

.cta-text { 
  display:flex; 
  flex-direction:column; 
  gap:6px; 
}

.cta-title { 
  font-weight:700; 
  font-size:26px; 
  color:#0f172a; 
}

.cta-desc { 
  color:#6b7280; 
  font-size:16px; 
}

.cta-actions { 
  display:flex; 
  gap:12px; 
}

/* Mobile App CTA Section */
.mobile-app-cta {
  padding:80px 0;
  background:linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  margin-top:60px;
}

.mobile-app-inner {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}

.mobile-app-content h2 {
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin:0 0 24px;
  line-height:1.2;
}

.mobile-app-desc {
  font-size:18px;
  color:#4b5563;
  line-height:1.6;
  margin:0 0 32px;
}

.app-buttons {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.app-button {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 24px;
  background:#000000;
  color:#ffffff;
  border-radius:12px;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  text-decoration:none;
}

.app-button-icon {
  width:32px;
  height:32px;
}

.app-button-text {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.app-button-label {
  font-size:11px;
  opacity:0.8;
}

.app-button-store {
  font-size:18px;
  font-weight:600;
}

.mobile-app-image {
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.mobile-app-image img {
  width:100%;
  height:auto;
  max-height:500px;
  display:block;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Footer - Modern */
.site-footer { 
  background:#f9fafb;
  border-top:1px solid #e5e7eb;
  padding:60px 0 20px;
  margin-top:0;
}

.footer-content {
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap:60px;
  margin-bottom:40px;
}

.footer-column h3 {
  font-size:16px;
  font-weight:700;
  color:#111827;
  margin:0 0 20px;
  padding-bottom:12px;
  border-bottom:1px solid #e5e7eb;
}

.footer-column ul {
  list-style:none;
  padding:0;
  margin:0;
}

.footer-column ul li {
  margin-bottom:12px;
}

.footer-column ul li a {
  color:#6b7280;
  font-size:14px;
  text-decoration:none;
  transition: color .2s ease;
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-column ul li a:hover {
  color:#111827;
  text-decoration:none;
}

.footer-brand-section {
  display:flex;
  flex-direction:column;
  gap:24px;
}

.footer-logo {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:24px;
  font-weight:700;
  color:var(--brand);
  text-decoration:none;
}

.footer-qr {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-qr img {
  width:120px;
  height:120px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:8px;
  background:#ffffff;
}

.footer-qr-text {
  font-size:12px;
  color:#6b7280;
  font-weight:600;
}

.footer-cta-row {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:center;
}
.footer-cta-row > h3,
.footer-cta-row > ul {
  grid-column: 1 / -1;
}
.footer-cta-row .footer-qr {
  grid-column: 1;
  align-self:center;
}
.footer-cta-row .footer-cta-button {
  grid-column: 2;
  justify-self: end;
  align-self:center;
}

.footer-cta-button {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  background:#66CC33;
  color:#ffffff;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition: background .2s ease;
  align-self:flex-start;
}

.footer-cta-button:hover {
  background:#66CC33;
  text-decoration:none;
}

.footer-bottom {
  border-top:1px solid #e5e7eb;
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-legal {
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  order:-1;
  flex:1 1 100%;
}

.footer-legal-links {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-legal-links a {
  color:#6b7280;
  font-size:13px;
  text-decoration:none;
}

.footer-legal-links a:hover {
  color:#111827;
  text-decoration:none;
}

.footer-copyright {
  color:#9ca3af;
  font-size:13px;
}

.footer-social {
  display:flex;
  gap:16px;
  align-items:center;
  order:0;
}

.footer-social a,
.footer-social-link {
  color:#6b7280;
  transition: color .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  text-decoration: none;
}

.footer-social a:hover,
.footer-social-link:hover {
  color:#111827;
  background: #e5e7eb;
  transform: translateY(-2px);
}

.footer-social svg {
  width:20px;
  height:20px;
}

.footer-social i {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.footer-country {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:14px;
  color:#111827;
  cursor:pointer;
  transition: border-color .2s ease;
  order:1;
  margin-left:auto;
}

.footer-country:hover {
  border-color:#d1d5db;
}

.footer-country img {
  width:20px;
  height:14px;
}

.actions-row { display:flex; gap:12px; flex-wrap:wrap; }

/* Modal */
.modal { 
  position:fixed; 
  inset:0; 
  display:none; 
  align-items:center; 
  justify-content:center; 
  z-index:50; 
}

.modal[aria-hidden="false"] { display:flex; }
.modal-backdrop { 
  position:absolute; 
  inset:0; 
  background:rgba(0,0,0,0.5); 
}

.modal-dialog { 
  position:relative; 
  background:#ffffff; 
  border-radius:16px; 
  width:90%; 
  max-width:420px; 
  box-shadow: 0 20px 60px rgba(2,6,23,0.3); 
}

.modal-header { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:20px; 
  border-bottom:1px solid #e5e7eb; 
}

.modal-close { 
  background:transparent; 
  border:none; 
  font-size:24px; 
  cursor:pointer; 
  color:#6b7280;
  transition: color .2s ease;
}

.modal-close:hover {
  color:#111827;
}

.modal-body { 
  padding:20px; 
  display:flex; 
  flex-direction:column; 
  gap:16px; 
}

.modal-body label { 
  display:flex; 
  flex-direction:column; 
  font-size:14px; 
  color:#374151; 
  gap:6px; 
  font-weight:600;
}

.modal-body input { 
  padding:12px; 
  border:1px solid #d1d5db; 
  border-radius:8px; 
}

select, textarea, input[type="text"], input[type="email"], input[type="password"] { 
  padding:12px; 
  border:1px solid #d1d5db; 
  border-radius:8px; 
  transition:border-color .2s ease, box-shadow .2s ease;
  font-size:15px;
}

select:focus-visible, 
textarea:focus-visible, 
input[type="text"]:focus-visible, 
input[type="email"]:focus-visible, 
input[type="password"]:focus-visible { 
  outline:none; 
  border-color:var(--brand); 
  box-shadow:0 0 0 3px rgba(255,107,53,0.1); 
}

/* Toast */
.toast { 
  position:fixed; 
  left:50%; 
  transform:translateX(-50%); 
  bottom:24px; 
  padding:12px 20px; 
  background:#111827; 
  color:#fff; 
  border-radius:10px; 
  display:none; 
  font-size:14px;
  box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.toast.show { display:block; }

/* Chips */
.chips { display:flex; flex-wrap:wrap; gap:10px; }

.chips .chip { 
  padding:10px 16px; 
  background:#ffffff; 
  color:#111827; 
  border-radius:999px; 
  cursor:pointer; 
  border:1px solid #d1d5db;
  font-size:14px;
  font-weight:500;
  transition: all .2s ease;
}

.chips .chip:hover { 
  background:#f3f4f6; 
  border-color:var(--brand);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display:none;
  }
}

@media (max-width: 1200px) {
  .popular-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) { 
  .topbar .container { padding:16px; } 
  
  .nav-actions { gap:6px; }
  .nav-actions .btn { padding:10px 16px; font-size:14px; }
  
  .hero-fullscreen { min-height:500px; height:70vh; }
  .hero-fullscreen h1 { font-size:clamp(32px, 8vw, 48px) !important; }
  .hero-fullscreen h1 { line-height:1.1 !important; }
  .hero-subtitle { line-height:1.2 !important; }
  .hero-inner { gap:16px; }
  .hero-subtitle { font-size:18px !important; }
  
  .provider-cta-inner {
    grid-template-columns: 1fr;
    gap:0;
  }
  
  .provider-cta-image {
    min-height:300px;
  }
  
  .provider-cta-content {
    padding:32px 24px;
  }
  
  .provider-cta-title {
    font-size:28px;
  }
  
  .provider-cta-desc {
    font-size:16px;
  }
  
  .hero-inner {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .search-box-large { 
    flex-direction: row; 
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .search-box-large input { 
    border-radius: 12px 0 0 12px;
    font-size: 15px !important;
    padding: 14px 16px !important;
    min-width: 0;
    flex: 1;
  }
  
  .btn-search {
    border-radius: 0 12px 12px 0;
    padding: 14px 24px !important;
    font-size: 15px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .search-autocomplete {
    right: 0;
    left: 0;
    border-radius: 0 0 12px 12px;
  }
  
  .autocomplete-item {
    padding: 12px 16px;
  }
  
  .autocomplete-item-text {
    font-size: 14px !important;
  }
  
  .btn-show-more {
    padding: 12px 28px !important;
    font-size: 15px !important;
  }
  
  .trend-card-title {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
  
  .trend-meta-item {
    font-size: 14px !important;
  }
  
  .popular-card-title {
    font-size: 15px !important;
    font-weight: 500 !important;
  }
  
  .category-item {
    padding: 16px 12px !important;
    min-height: 100px !important;
  }
  
  .category-item .category-name {
    font-size: 15px !important;
  }
  
  .stat-value {
    font-size: 32px !important;
  }
  
  .stat-label {
    font-size: 15px !important;
  }
  
  .how-step-title {
    font-size: 18px !important;
  }
  
  .how-step-desc {
    font-size: 15px !important;
  }
  
  .section-title { font-size:26px !important; line-height:1.15; }
  
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:16px;
  }
  
  .how-steps {
    grid-template-columns: 1fr;
    gap:50px;
  }
  
  .how-steps::before {
    display:none;
  }
  
  .how-step-image {
    height:200px;
  }
  
  .card-list { 
    grid-template-columns: 1fr; 
  }
  
  .cta-inner { 
    flex-direction:column; 
    text-align:center; 
    padding:24px;
  }
  
  .cta-title { font-size:22px; }
  .cta-desc { font-size:15px; }
  
  .cta-actions { 
    flex-direction:column; 
    width:100%; 
  }
  
  .cta-actions .btn { 
    width:100%; 
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap:24px;
  }
  
  /* Brand & Navigation column spans full width on mobile */
  .footer-brand-section {
    grid-column: 1 / -1;
  }
  .footer-column ul {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px 16px;
  }
  .footer-brand-section ul {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px 16px;
  }
  .footer-column ul li {
    margin:0;
  }
  .footer-column ul li a {
    display:flex;
    align-items:center;
    gap:8px;
  }
  
  .footer-bottom {
    flex-direction:row;
    align-items:center;
    gap:20px;
  }
  
  .footer-legal {
    flex-direction:column;
    align-items:flex-start;
  }
  
  .footer-social {
    order:0;
  }
  
  .mobile-app-cta {
    padding: 40px 0;
  }
  
  .mobile-app-cta .container {
    padding: 0 20px;
  }
  
  .mobile-app-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-app-content {
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-app-content h2 {
    font-size: 28px;
    margin: 0 0 16px;
  }
  
  .mobile-app-desc {
    font-size: 15px;
    margin: 0 0 24px;
  }
  
  .app-buttons {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .app-button {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(50% - 4px);
    padding: 12px 16px;
    box-sizing: border-box;
  }
  
  .app-button-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  
  .app-button-text {
    min-width: 0;
    flex: 1;
  }
  
  .app-button-label {
    font-size: 10px;
  }
  
  .app-button-store {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-app-image {
    order: -1;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .mobile-app-image img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    max-height: none;
    display: block;
    filter: none;
  }
}

/* Extra-small devices (iPhone 13 ~390px width) */
@media (max-width: 420px) {
  .hero-inner {
    padding: 0 12px;
    gap: 12px;
  }
  
  .hero-fullscreen h1 {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.2 !important;
  }
  
  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
  
  .search-box-large {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .search-box-large input {
    font-size: 14px !important;
    padding: 12px 14px !important;
    min-width: 0;
  }
  
  .btn-search {
    padding: 12px 20px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }
  
  .search-autocomplete {
    right: 0;
    left: 0;
    max-height: 300px;
  }
  
  .autocomplete-item {
    padding: 10px 14px;
  }
  
  .autocomplete-item-text {
    font-size: 13px !important;
  }
  
  .mobile-app-cta {
    padding: 32px 0;
    margin-top: 40px;
  }
  
  .mobile-app-cta .container {
    padding: 0 16px;
  }
  
  .mobile-app-inner {
    gap: 20px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-app-content {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-app-content h2 {
    font-size: 22px;
    margin: 0 0 12px;
    line-height: 1.3;
  }
  
  .mobile-app-desc {
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.5;
  }
  
  .app-buttons {
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
  }
  
  .app-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    gap: 6px;
    box-sizing: border-box;
    max-width: calc(50% - 4px);
  }
  
  .app-button-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  
  .app-button-text {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  
  .app-button-label {
    font-size: 8px;
    line-height: 1.2;
    white-space: nowrap;
  }
  
  .app-button-store {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-app-image {
    order: -1;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .mobile-app-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   ARMUT CATEGORY PAGE STYLES
   ============================================ */

.armut-category-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 68px;
}

.armut-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.armut-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.armut-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  line-height: 1.15;
}

.armut-search-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.armut-search-input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-size: 16px;
  outline: none;
  background: #ffffff;
}

.armut-search-input::placeholder {
  color: #9ca3af;
}

.armut-search-btn {
  padding: 18px 40px;
  background: #00C48C;
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 120px;
  flex-shrink: 0;
}

.armut-search-btn:hover {
  background: #00b37e;
}

.armut-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 32px;
}

.armut-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.armut-service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.armut-card-link {
  text-decoration: none;
  display: block;
  flex: 1;
}

.armut-service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.armut-service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.armut-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.armut-service-body {
  padding: 16px;
}

.armut-service-action {
  padding: 0 16px 16px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.armut-service-card:hover .armut-service-action {
  opacity: 1;
  max-height: 100px;
}

.btn-teklif-al {
  display: block;
  width: 100%;
  padding: 12px;
  background: #00C48C;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-teklif-al:hover {
  background: #00b37e;
}

.armut-service-title {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.4;
}

.armut-service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.armut-professionals {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
}

.armut-professionals svg {
  flex-shrink: 0;
}

.armut-price-range {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #52c41a;
  font-weight: 600;
}

.armut-price-range svg {
  flex-shrink: 0;
  color: #52c41a;
}

.armut-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #4b5563;
}

.armut-rating svg {
  flex-shrink: 0;
}

.armut-rating-value {
  font-weight: 600;
  color: #111827;
}

.armut-rating-reviews {
  color: #6b7280;
  font-size: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
  .armut-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .armut-category-hero {
    min-height: 350px;
    padding-top: 60px;
  }

  .armut-hero-content {
    padding: 60px 20px;
  }

  .armut-hero-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .armut-search-box {
    flex-direction: column;
  }

  .armut-search-btn {
    padding: 16px;
  }

  .armut-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .armut-section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  /* Mobile'de butonu her zaman göster */
  .armut-service-action {
    opacity: 1;
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .armut-services-grid {
    grid-template-columns: 1fr;
  }

  .armut-service-image {
    height: 160px;
  }

  /* Mobile'de butonu her zaman göster */
  .armut-service-action {
    opacity: 1;
    max-height: 100px;
  }
}

/* ============================================
   AUTH PAGES (LOGIN / REGISTER)
   ============================================ */

.auth-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #f9fafb;
}

.auth-container {
  display: flex;
  min-height: 100vh;
}

/* Left Side - Brand & Image */
.auth-left {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.auth-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.auth-brand {
  z-index: 2;
  position: relative;
}

.auth-brand a {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

.auth-hero {
  z-index: 2;
  max-width: 480px;
  position: relative;
}

.auth-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.auth-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.auth-image {
  display: none;
}

/* Right Side - Form */
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
  min-height: 100vh;
  overflow-y: auto;
}

.auth-form-container {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  margin-bottom: 32px;
  text-align: center;
}

.auth-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.auth-header p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dc2626;
  font-size: 14px;
}

.auth-error svg {
  flex-shrink: 0;
}

.auth-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #66CC33;
  font-size: 14px;
}

.auth-success svg {
  flex-shrink: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -8px;
  transition: all 0.3s ease;
}

.form-terms {
  margin-top: -8px;
}

.form-terms .checkbox-label {
  align-items: flex-start;
}

.form-terms .checkbox-label span {
  line-height: 1.5;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.link-primary {
  font-size: 14px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-primary:hover {
  color: #5568d3;
}

.link-secondary {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-secondary:hover {
  color: #374151;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 32px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 16px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-social {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-social:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.btn-social svg {
  flex-shrink: 0;
}

.auth-footer {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-footer p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* User Type Selector */
.user-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.user-type-option {
  cursor: pointer;
  position: relative;
}

.user-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.user-type-card {
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: #ffffff;
}

.user-type-option input[type="radio"]:checked + .user-type-card {
  border-color: #FF6B35;
  background: #fff5f3;
}

.user-type-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.user-type-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.user-type-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.user-type-desc {
  font-size: 13px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-left {
    display: none;
  }

  .auth-right {
    flex: 1;
    min-height: 100vh;
  }
  
  .auth-container {
    display: block;
  }
}

@media (max-width: 640px) {
  .auth-right {
    padding: 24px;
  }

  .auth-header h2 {
    font-size: 28px;
  }

  .auth-hero h1 {
    font-size: 36px;
  }
}

/* ============================================
   CATEGORIES PAGE
   ============================================ */

.categories-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 68px;
}

.categories-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.categories-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.categories-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}

.categories-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.category-section {
  margin-bottom: 40px;
}

.category-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  padding: 0 0 15px 0;
  border-bottom: 3px solid #FF6B35;
  display: inline-block;
  margin-bottom: 15px;
}

.category-items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.category-item {
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  text-align: left;
  line-height: 1.3;
}

.category-item:hover {
  border-color: #FF6B35;
  background: #fff5f3;
  color: #FF6B35;
  transform: translateX(4px);
}

.nav-links a.active {
  color: #FF6B35;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-hero {
    min-height: 350px;
    padding-top: 60px;
  }

  .categories-hero-content {
    padding: 60px 20px;
  }

  .categories-hero-title {
    font-size: 32px;
  }

  .category-items-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .category-item {
    padding: 8px 10px;
    font-size: 13px;
  }

  .category-section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .category-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .category-item {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* ============================================
   HELP PAGE
   ============================================ */

.help-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 68px;
  text-align: center;
  color: #ffffff;
}

.help-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.help-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.help-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
}

.help-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px;
}

.help-search-box {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 0 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.help-search-box svg {
  color: #9ca3af;
  flex-shrink: 0;
}

/* ============================================
   LEGAL PAGE - CORPORATE DESIGN
   ============================================ */

.legal-page {
  padding-top: 0;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.contract-hero {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 60px 0 40px;
  margin-top: 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contract-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.contract-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contract-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contract-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  flex-wrap: wrap;
}

.contract-breadcrumb a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: none;
}

.contract-breadcrumb a:hover {
  opacity: 1;
}

.contract-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: white;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contract-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* Legal Card */
.legal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  padding: 48px;
  max-width: 1000px;
  margin: -40px auto 32px;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s ease;
}

.legal-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Legal Header */
.legal-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}

.legal-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-type-badge:hover {
  transform: translateY(-1px);
}

.legal-type-badge.type-provider { 
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  box-shadow: 0 2px 8px rgba(146, 64, 14, 0.15);
}

.legal-type-badge.type-customer { 
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.15);
}

.legal-type-badge.type-general { 
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #075985;
  box-shadow: 0 2px 8px rgba(7, 89, 133, 0.15);
}

.legal-updated {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Legal Content */
.legal-content {
  margin: 24px 0;
}

.legal-content-inner {
  color: #374151;
  font-size: 17px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.legal-content-inner p {
  margin: 0 0 12px;
  color: #374151;
}

.legal-content-inner br {
  line-height: 1.65;
}

.legal-content-inner strong {
  color: #111827;
  font-weight: 600;
}

.legal-content-inner h2,
.legal-content-inner h3,
.legal-content-inner h4 {
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.legal-content-inner h2 {
  font-size: 24px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 8px;
}

.legal-content-inner h3 {
  font-size: 20px;
}

.legal-content-inner h4 {
  font-size: 18px;
}

.legal-content-inner ul,
.legal-content-inner ol {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-content-inner li {
  margin: 4px 0;
  line-height: 1.65;
}

.legal-content-inner blockquote {
  border-left: 4px solid #FF6B35;
  padding-left: 20px;
  margin: 16px 0;
  color: #4b5563;
  font-style: italic;
  background: #f9fafb;
  padding: 16px 20px;
  border-radius: 8px;
}

/* Legal Actions */
.legal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 2px solid #f1f5f9;
  margin-top: 40px;
  flex-wrap: wrap;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.legal-back-link:hover {
  color: #FF6B35;
  transform: translateX(-2px);
}

.legal-actions-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.legal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.legal-action-btn.btn-outline {
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
}

.legal-action-btn.btn-outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-action-btn.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
}

.legal-action-btn.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0821a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

/* Legal Info Card */
.legal-info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.legal-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.legal-info-content {
  flex: 1;
}

.legal-info-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.legal-info-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.legal-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF6B35;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.legal-info-link:hover {
  color: #e55a2b;
  gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contract-hero {
    padding: 40px 0 30px;
    margin-top: 70px;
  }

  .contract-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .contract-hero-title {
    font-size: 28px;
  }

  .contract-hero-subtitle {
    font-size: 16px;
  }

  .legal-card {
    padding: 32px 24px;
    margin: -30px auto 24px;
    border-radius: 20px;
  }

  .legal-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .legal-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .legal-content-inner {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .legal-content-inner p {
    margin: 0 0 10px;
  }
  
  .legal-content-inner h2,
  .legal-content-inner h3,
  .legal-content-inner h4 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .legal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .legal-back-link {
    justify-content: center;
  }

  .legal-actions-group {
    width: 100%;
    flex-direction: column;
  }

  .legal-action-btn {
    width: 100%;
    justify-content: center;
  }

  .legal-info-card {
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
  }

  .legal-info-icon {
    width: 48px;
    height: 48px;
  }
}

@media print {
  .topbar, 
  .site-footer,
  .contract-hero,
  .legal-actions,
  .legal-info-card {
    display: none !important;
  }
  
  .legal-page {
    background: white;
    padding: 0;
  }

  .legal-card {
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .legal-content-inner {
    font-size: 12pt;
    line-height: 1.6;
  }
}

.help-search-box input {
  flex: 1;
  padding: 20px 16px;
  border: none;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.help-search-box input::placeholder {
  color: #9ca3af;
}

.help-categories {
  padding: 80px 0;
  background: #f9fafb;
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-category-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.help-category-icon {
  width: 64px;
  height: 64px;
  background: #FF6B35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.help-category-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}

.help-category-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.help-category-link {
  font-size: 15px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-category-link:hover {
  color: #5568d3;
}

.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title-center {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.15;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d1d5db;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: #667eea;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #6b7280;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: #667eea;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

.help-contact {
  padding: 80px 0;
  background: #f9fafb;
}

.help-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.help-contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}

.help-contact-info > p {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.contact-method p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.contact-hours {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 4px;
}

.help-contact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.help-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .help-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .help-contact-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .help-hero {
    min-height: 350px;
    padding-top: 60px;
  }

  .help-hero-content {
    padding: 60px 20px;
  }

  .help-hero-title {
    font-size: 32px;
  }

  .help-hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .help-categories {
    padding: 60px 0;
  }

  .help-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .help-search-box {
    flex-direction: row;
    padding: 16px 20px;
  }
  
  .help-search-box input {
    padding: 16px 12px;
  }

  .section-title-center {
    font-size: 28px;
  }

  .faq-section,
  .help-contact {
    padding: 60px 0;
  }

  .help-contact-info h2 {
    font-size: 28px;
  }
}

/* Mobile Sidebar Styles */
.nav-actions-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-user-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  max-width: 180px;
  text-decoration: none;
  color: inherit;
}

.mobile-user-button:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  text-decoration: none;
  color: inherit;
}

.mobile-user-button svg {
  flex-shrink: 0;
  color: #6b7280;
  width: 20px;
  height: 20px;
}

.mobile-user-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #111827;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f3f4f6;
}

.mobile-menu-toggle:hover {
  background: #e5e7eb;
  color: #111827;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-sidebar-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.mobile-sidebar-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  width: 32px;
  height: 32px;
}

.mobile-sidebar-close:hover {
  color: #111827;
}

.mobile-sidebar-content {
  flex: 1;
  padding: 0;
  overflow-y: auto;
}

.mobile-sidebar-user {
  padding: 20px;
  background: linear-gradient(135deg, #52c41a 0%, #45a049 100%);
  color: #ffffff;
}

.mobile-sidebar-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Header mobile sidebar avatar and layout */
.mobile-sidebar-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-sidebar-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-sidebar-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-sidebar-user-text strong {
  display: block;
}

.mobile-sidebar-user-info strong {
  font-size: 18px;
  font-weight: 700;
}

.mobile-sidebar-user-role {
  font-size: 14px;
  opacity: 0.9;
}

.mobile-sidebar-section {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-sidebar-section:last-child {
  border-bottom: none;
}

.mobile-sidebar-section-title {
  padding: 0 20px 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-sidebar-links {
  display: flex;
  flex-direction: column;
}

.mobile-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-sidebar-link:hover {
  background-color: #f9fafb;
  color: var(--brand);
  border-left-color: var(--brand);
  text-decoration: none;
}

.mobile-sidebar-link i {
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.mobile-sidebar-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-sidebar-link-logout {
  color: #dc2626;
}

.mobile-sidebar-link-logout:hover {
  background-color: #fef2f2;
  color: #dc2626;
  border-left-color: #dc2626;
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.btn-mobile {
  padding: 8px 16px;
  font-size: 14px;
}

/* Mobile Responsive - Header */
@media (max-width: 768px) {
  .nav-actions-desktop {
    display: none !important;
  }
  
  .nav-actions-mobile {
    display: flex !important;
  }
  
  .brand {
    font-size: 20px;
  }
  
  .topbar .container {
    padding: 12px 16px;
  }
  .topbar .brand .site-logo {
    max-height: 32px !important;
    width: auto;
  }
  .nav-actions-mobile .mobile-user-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px;
  }
  .nav-actions-mobile .mobile-user-button svg {
    width: 18px;
    height: 18px;
  }
  .nav-actions-mobile .mobile-user-name {
    font-size: 12px;
  }
  .nav-actions-mobile .mobile-menu-toggle {
    padding: 6px;
    border-radius: 8px;
  }
  .nav-actions-mobile .mobile-menu-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }
}

/* Desktop - Hide mobile sidebar */
@media (min-width: 769px) {
  .mobile-sidebar {
    display: none !important;
  }
  
  .mobile-sidebar-overlay {
    display: none !important;
  }
}
.site-footer .footer-column ul li a::before {
  content:'›';
  color:#d1d5db;
  font-weight:700;
}

.site-footer .footer-column ul li a:hover::before {
  color:#111827;
}
