/* style.css — glocalturkey.org | Turkey Travel Hub */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0A5C8A;
  --accent: #E8521A;
  --secondary: #1A8A5C;
  --dark: #0D1B2A;
  --light: #EBF5FB;
  --cream: #F8FAFB;
  --text: #1A2A3A;
  --muted: #5A7080;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-w: 1200px;
  --tr: 0.2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.3; color: var(--dark); }
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 12px; }
a { color: var(--primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section:nth-child(even) { background: var(--cream); }

/* ── HEADER ── */
.site-header { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 64px; }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.5px; }
.logo span { color: var(--accent); }
.site-nav { display: flex; gap: 24px; }
.site-nav a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; text-decoration: none; transition: color var(--tr); white-space: nowrap; }
.site-nav a:hover { color: var(--accent); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 16px 20px; gap: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 16px; padding: 8px 0; }
}

/* ── HERO ── */
.hero { background-size: cover; background-position: center center; background-repeat: no-repeat; background-color: var(--dark); position: relative; padding: 80px 0; min-height: 360px; display: flex; align-items: center; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 50px 0 40px; background-position: center center; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 15px; }
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(10,92,138,0.6) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 720px; }
.hero-content h1 { color: var(--white) !important; margin-bottom: 16px; }
.hero-content h2, .hero-content h3 { color: var(--white) !important; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.6; margin-bottom: 20px; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 13px; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 15px; text-decoration: none; transition: all var(--tr); cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #D14818; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,82,26,0.3); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: #084A70; color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* ── WIDGET ── */
.widget-section { background: var(--light); padding: 40px 0; }
.widget-container { max-width: 900px; margin: 0 auto; min-height: 200px; }

/* ── CONTENT ── */
.content-section { padding: 50px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section p { margin-bottom: 16px; }
.content-section ul, .content-section ol { margin: 16px 0; padding-left: 24px; }
.content-section li { margin-bottom: 8px; }

/* ── CITY GRID (hub page) ── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin: 30px 0; }
.city-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--tr), box-shadow var(--tr); background: var(--white); text-decoration: none; color: var(--text); }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-card-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.city-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(0,0,0,0.5)); }
.city-card-body { padding: 16px; }
.city-card-body h3 { font-size: 18px; margin-bottom: 6px; }
.city-card-body p { font-size: 14px; color: var(--muted); margin: 0; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin: 30px 0; }
.service-card { padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); transition: transform var(--tr); }
.service-card:hover { transform: translateY(-3px); }
.service-card .icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card ul { list-style: none; padding: 0; margin: 12px 0; }
.service-card li { font-size: 14px; padding: 4px 0; padding-left: 20px; position: relative; }
.service-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin: 30px 0; }
.feature-item { text-align: center; padding: 24px; }
.feature-item .icon { font-size: 32px; margin-bottom: 12px; }
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--muted); }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; margin: 30px 0; counter-reset: step; }
.step-item { text-align: center; position: relative; padding-top: 50px; }
.step-item::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.step-item h3 { font-size: 17px; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--muted); }

/* ── TABLE ── */
.cities-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cities-table th, .cities-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.cities-table th { background: var(--light); font-weight: 600; font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.cities-table td { font-size: 15px; }
.cities-table tr:hover { background: var(--cream); }
.cities-table a { color: var(--primary); font-weight: 500; }

/* ── FAQ ── */
.faq-section { padding: 60px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; color: var(--dark); }
.faq-question::after { content: none; }
.faq-item.open .faq-question { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { color: var(--muted); line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin: 30px 0; }
.review-card { padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.review-stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; line-height: 1.6; margin-bottom: 16px; font-style: italic; color: var(--text); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--primary); font-size: 14px; }
.review-name { font-weight: 600; font-size: 14px; }
.review-location { font-size: 13px; color: var(--muted); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin: 30px 0; }
.team-card { text-align: center; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.team-photo { width: 100px; height: 100px; border-radius: 50%; background: var(--light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.team-name { font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 30px 0; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; font-size: 15px; }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 350px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 350px; border: 0; }

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

/* ── CTA SECTION ── */
.cta-section { background: var(--dark) !important; padding: 60px 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white) !important; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 18px; }
section.cta-section { background: var(--dark) !important; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icons span { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.footer-links h4 { color: var(--white); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color var(--tr); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; margin-bottom: 8px; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.45); max-width: 800px; margin: 0 auto 12px; line-height: 1.5; }
.footer-legal { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }