/*
 * Çanakkale Otoyol Yardım - Premium Styling System
 * Custom-tailored dark mode, vibrant accents, and smooth transitions
 */



:root {
  /* Color Palette */
  --bg-primary: #030813;
  --bg-secondary: #081121;
  --bg-tertiary: #0c1629;
  --bg-accent: rgba(255, 157, 0, 0.04);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 157, 0, 0.15);
  
  --color-gold: #ff9d00;
  --color-gold-hover: #e08a00;
  --color-green: #05b863;
  --color-green-hover: #049d53;
  --color-white: #ffffff;
  --color-text-main: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-dark: #0f172a;
  
  /* Fonts */
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(12, 22, 41, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 157, 0, 0.02) 0%, transparent 40%);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 157, 0, 0.3);
}

.btn-green {
  background-color: var(--color-green);
  color: var(--color-white);
}

.btn-green:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(5, 184, 99, 0.3);
}

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

.btn-outline:hover {
  background-color: rgba(255, 157, 0, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--color-text-main);
}

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

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

/* Top Banner */
.top-banner {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  padding: 8px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.top-banner a {
  color: var(--color-text-dark);
  text-decoration: underline;
  margin-left: 4px;
}

/* Header */
.site-header {
  background-color: rgba(3, 8, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 46px;
  height: 46px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-custom-logo {
  max-height: 100px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.site-custom-logo:hover {
  transform: scale(1.03);
}

.logo-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text-dark);
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Main Layout */
main {
  padding: 40px 0 60px;
}

/* Grid Layouts */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* Hero Section */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 157, 0, 0.4);
  background-color: rgba(255, 157, 0, 0.05);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 900;
}

.hero-title .highlight {
  color: var(--color-gold);
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  margin-top: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 157, 0, 0.1);
  border: 1px solid rgba(255, 157, 0, 0.3);
  color: var(--color-gold);
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Call Widget Card */
.call-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.call-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-gold);
}

.call-widget:hover {
  border-color: var(--border-glow);
  box-shadow: 0 4px 30px rgba(255, 157, 0, 0.05);
}

.call-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 157, 0, 0.1);
  border: 1px solid rgba(255, 157, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-gold);
}

.call-info {
  display: flex;
  flex-direction: column;
}

.call-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.call-number {
  font-size: 2.1rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.15;
  margin: 2px 0;
  transition: var(--transition-smooth);
}

.call-widget:hover .call-number {
  color: var(--color-gold);
}

.call-subtext {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Location Panel Widget */
.location-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.location-widget-title svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
}

.signal-badge {
  background-color: rgba(5, 184, 99, 0.1);
  border: 1px solid rgba(5, 184, 99, 0.3);
  color: var(--color-green);
  font-size: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.location-widget-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Radar Display Area */
.radar-box {
  background-color: rgba(3, 8, 19, 0.6);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.radar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 157, 0, 0.05);
  border: 1px solid rgba(255, 157, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.radar-circle svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  z-index: 2;
}

.radar-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 157, 0, 0.4);
  animation: pulse 2s infinite ease-out;
  opacity: 0;
  z-index: 1;
}

.radar-pulse:nth-child(2) {
  animation-delay: 0.6s;
}

.radar-pulse:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.radar-status-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  z-index: 3;
}

.radar-status-sub {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0 16px;
  z-index: 3;
}

.location-widget .btn-gold {
  width: 100%;
  padding: 12px;
  font-size: 0.85rem;
}

.location-quick-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.location-quick-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

.location-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.location-quick-actions .btn {
  padding: 10px;
  font-size: 0.8rem;
  border-radius: 6px;
}

/* Tab System Components */
.tab-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(3, 8, 19, 0.4);
}

.tab-nav-item {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.tab-nav-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-muted);
}

.tab-nav-item.active {
  color: var(--color-gold);
  background-color: var(--bg-secondary);
}

.tab-nav-item.active svg {
  stroke: var(--color-gold);
}

.tab-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
}

.tab-content {
  padding: 32px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.pane-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.pane-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Forms */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label span {
  color: var(--color-gold);
}

.form-control {
  background-color: rgba(3, 8, 19, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(3, 8, 19, 0.8);
  box-shadow: 0 0 12px rgba(255, 157, 0, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffa500' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

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

.form-actions-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.form-actions-row .btn {
  padding: 14px;
  font-size: 0.85rem;
}

.form-response-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 12px;
}

.form-response-msg.success {
  display: block;
  background-color: rgba(5, 184, 99, 0.1);
  border: 1px solid rgba(5, 184, 99, 0.2);
  color: var(--color-green);
}

.form-response-msg.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Feedback/Review Form Specifics */
.rating-stars {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.star-input {
  display: none;
}

.star-label {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.star-label:hover,
.star-label:hover ~ .star-label {
  color: var(--color-gold);
}

.star-input:checked ~ .star-label {
  color: var(--color-gold);
}

/* Right Sidebar Panels */
.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}

.sidebar-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-card-title svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
}

.sidebar-card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Areas Grid */
.areas-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.area-pill {
  background-color: rgba(3, 8, 19, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.area-pill:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(255, 157, 0, 0.04);
  transform: translateY(-1px);
}

/* Safety Tips List */
.safety-card {
  border: 1px solid var(--border-glow);
  background-color: rgba(255, 157, 0, 0.02);
}

.safety-card .sidebar-card-title {
  color: var(--color-gold);
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text-main);
}

.safety-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.safety-list li a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-link-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-muted);
}

.footer-link-item:hover {
  color: var(--color-gold);
}

.footer-link-item:hover svg {
  stroke: var(--color-gold);
}

/* Admin Styling Overlays */
.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.submission-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.85rem;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  
  .header-cta {
    width: 100%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .call-widget {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .call-widget::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-actions-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tab-content {
    padding: 20px 16px;
  }
  
  .tab-nav-item {
    padding: 12px 8px;
    font-size: 0.75rem;
    gap: 4px;
  }
}

/* Fleet Gallery Section */
.fleet-gallery {
  margin: 40px 0 50px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
}

.gallery-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
  text-align: center;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(3, 8, 19, 0.95) 0%, rgba(3, 8, 19, 0.4) 70%, transparent 100%);
  color: var(--color-white);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  transform: translateY(4px);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(255, 157, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(3, 8, 19, 0.95) 0%, rgba(3, 8, 19, 0.6) 80%, transparent 100%);
}

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

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .fleet-gallery {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   Navigation Menu Styles
   ========================================================================== */
.main-nav {
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
  padding: 40px 0 60px;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-card, .contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 157, 0, 0.1);
  border: 1px solid rgba(255, 157, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.info-link:hover {
  color: var(--color-gold);
}

.info-text {
  color: var(--color-text-main);
  font-size: 0.95rem;
  font-weight: 500;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(3, 8, 19, 0.4);
}

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

/* ==========================================================================
   Blog Listing Styles
   ========================================================================== */
.blog-section {
  padding: 40px 0 60px;
}

.blog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.blog-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.blog-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

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

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-img-link {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  display: block;
  overflow: hidden;
  background: rgba(3, 8, 19, 0.4);
}

.blog-card-img-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img-link img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 157, 0, 0.25);
}

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

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

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

.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.blog-card-more svg {
  transition: var(--transition-smooth);
}

.blog-card-more:hover {
  color: var(--color-white);
}

.blog-card-more:hover svg {
  transform: translateX(4px);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 32px rgba(255, 157, 0, 0.08);
}

.blog-card-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.empty-blog {
  text-align: center;
  padding: 60px;
  border: 1px dashed var(--border-color);
  border-radius: 16px;
  color: var(--color-text-muted);
}

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

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

/* ==========================================================================
   Blog Detail Styles
   ========================================================================== */
.blog-detail-section {
  padding: 40px 0 60px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.back-to-blog:hover {
  color: var(--color-gold);
}

.blog-detail-header {
  margin-bottom: 24px;
}

.blog-detail-category {
  display: inline-block;
  background: rgba(255, 157, 0, 0.1);
  border: 1px solid rgba(255, 157, 0, 0.2);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-detail-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-detail-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.blog-detail-banner {
  width: 100%;
  max-height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 36px;
  background: rgba(3, 8, 19, 0.4);
}

.blog-detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-banner-placeholder {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.blog-detail-content {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-detail-content p {
  margin-bottom: 24px;
}

.blog-detail-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--color-white);
}

.blog-detail-content ul, .blog-detail-content ol {
  margin: 0 0 24px 24px;
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content strong {
  color: var(--color-white);
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 20px;
  font-style: italic;
  margin: 28px 0;
  color: var(--color-text-main);
}

.blog-detail-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-cta {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(255, 157, 0, 0.03);
}

.blog-sidebar-cta h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-sidebar-cta p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.sidebar-cta-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

.sidebar-cta-btn.whatsapp {
  background-color: rgba(5, 184, 99, 0.1);
  border: 1px solid rgba(5, 184, 99, 0.2);
  color: var(--color-green);
  margin-bottom: 0;
}

.sidebar-cta-btn.whatsapp:hover {
  background-color: rgba(5, 184, 99, 0.18);
}

@media (max-width: 900px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-detail-sidebar {
    position: static;
  }
}

