/* ============================================================
   Przeprowadzki Mazowieckie – style.css
   ============================================================ */

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

:root {
  --primary:      #e85d04;
  --primary-dark: #c44c00;
  --dark:         #1a1a2e;
  --dark2:        #16213e;
  --dark3:        #0f3460;
  --light:        #f8f9fa;
  --gray:         #6c757d;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --radius:       14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #222;
  line-height: 1.6;
}

/* ---- Topbar ---- */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.topbar a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ---- Header ---- */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-size: 20px; font-weight: 800; color: var(--dark);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo span { color: var(--primary); }
.logo i    { color: var(--primary); font-size: 22px; }

nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
nav a {
  text-decoration: none; color: #444; font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active { background: var(--light); color: var(--primary); }
.cta-btn {
  background: var(--primary) !important; color: var(--white) !important;
  border-radius: 10px !important; padding: 8px 18px !important;
  font-weight: 600 !important; display: flex !important;
  align-items: center; gap: 6px;
}
.cta-btn:hover { background: var(--primary-dark) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--dark); }
.mobile-nav { display: none; flex-direction: column; padding: 0 24px 16px; gap: 4px; border-top: 1px solid #eee; }
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; color: #444; font-size: 15px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.mobile-nav .mobile-phone { color: var(--primary); font-weight: 700; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, var(--dark3) 100%);
  color: var(--white); padding: 80px 24px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; background: rgba(232,93,4,0.18); color: #ffa45c;
  font-size: 13px; font-weight: 600; border-radius: 20px;
  padding: 6px 16px; margin-bottom: 20px; border: 1px solid rgba(232,93,4,0.3);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero h1 span { color: var(--primary); }
.hero > p { font-size: 18px; color: #bbb; max-width: 560px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 14px 32px; border-radius: 12px; font-size: 16px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,93,4,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 12px; font-size: 16px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(232,93,4,0.08); }

.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 13px; color: #aaa; margin-top: 4px; }

/* ---- Page Hero (podstrony) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, var(--dark3) 100%);
  color: var(--white); padding: 60px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: #bbb; font-size: 17px; max-width: 580px; margin: 0 auto; }

/* ---- Phone Bar ---- */
.phone-bar {
  background: var(--primary); color: var(--white);
  text-align: center; padding: 18px 24px; font-size: 18px; font-weight: 700;
}
.phone-bar a { color: var(--white); text-decoration: none; font-size: 24px; font-weight: 800; }
.phone-bar .sub { font-size: 13px; font-weight: 400; opacity: 0.85; margin-top: 4px; }

/* ---- Sections ---- */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-desc { color: var(--gray); font-size: 16px; max-width: 580px; margin-bottom: 48px; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid #eee;
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), #ff7b35);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: var(--white); margin-bottom: 18px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ---- Content page layout ---- */
.content-section { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.content-text h2 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.content-text p { color: #444; font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.content-text ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.content-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #444;
}
.content-text ul li::before {
  content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.content-images { display: flex; flex-direction: column; gap: 16px; }
.content-images img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; max-height: 260px;
  box-shadow: var(--shadow);
}
.content-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.content-images-grid img {
  width: 100%; border-radius: 10px; object-fit: cover; height: 160px;
  box-shadow: var(--shadow);
}

/* ---- Why Section ---- */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; background: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; flex-shrink: 0;
}
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray); }
.why-visual {
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  border-radius: 20px; padding: 40px; color: var(--white); text-align: center;
}
.why-visual i { font-size: 64px; color: var(--primary); margin-bottom: 20px; display: block; }
.why-visual h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.why-visual p { color: #bbb; font-size: 15px; margin-bottom: 24px; }
.why-phone { color: #ff7b35; font-size: 28px; font-weight: 800; text-decoration: none; display: block; margin-top: 16px; }
.why-phone:hover { color: var(--primary); }

/* ---- Cities / Area ---- */
.area-section { background: var(--white); }
.cities-box {
  background: var(--light); border-radius: var(--radius);
  padding: 32px; line-height: 2; color: #555; font-size: 15px;
}
.cities-box strong { color: var(--primary); font-weight: 700; font-size: 16px; }

/* ---- Routes (Transport Polska) ---- */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.route-card {
  background: var(--light); border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--dark);
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.route-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.route-card i { color: var(--primary); font-size: 18px; flex-shrink: 0; }

/* ---- Countries (Transport UE) ---- */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 32px; }
.country-chip {
  background: var(--light); border-radius: 10px; padding: 12px 16px;
  text-align: center; font-size: 14px; font-weight: 600; color: var(--dark);
  border: 1px solid #e0e0e0;
  transition: background 0.2s, border-color 0.2s;
}
.country-chip:hover { background: rgba(232,93,4,0.07); border-color: var(--primary); }

/* ---- Contact section ---- */
.contact-section { background: linear-gradient(135deg, var(--dark), var(--dark3)); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-label { color: #ffa45c !important; }
.contact-info h2 { font-size: 34px; font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: #bbb; font-size: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(232,93,4,0.15); border: 1px solid rgba(232,93,4,0.3);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.contact-detail a { color: var(--white); text-decoration: none; font-size: 18px; font-weight: 700; }
.contact-detail a:hover { color: var(--primary); }
.contact-detail strong { color: var(--white); font-size: 16px; font-weight: 600; display: block; }
.contact-detail span { color: #bbb; font-size: 13px; }

.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px;
}
.contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: #aaa; margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 16px;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #666; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark); }
.btn-submit {
  width: 100%; background: var(--primary); color: var(--white);
  border: none; border-radius: 12px; padding: 14px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--primary-dark); }

/* ---- Footer ---- */
footer { background: #111; color: #888; text-align: center; padding: 32px 24px; font-size: 14px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-size: 18px; font-weight: 800; color: #ccc; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.footer-logo span { color: var(--primary); }
.footer-logo i    { color: var(--primary); }
footer p { margin-bottom: 6px; }
footer a { color: var(--primary); text-decoration: none; }

/* ---- Float call ---- */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--primary); color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(232,93,4,0.45);
  transition: transform 0.2s; animation: pulse 2s infinite;
}
.float-call:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(232,93,4,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(232,93,4,0.75); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .why-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 56px 20px 72px; }
  .hero-stats { gap: 24px; }
  section { padding: 56px 20px; }
}
