/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  background: #fafafa;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --primary: #ff6b1a;
  --primary-dark: #d44d05;
  --secondary: #6b1818;
  --secondary-dark: #4a0f0f;
  --accent: #ffb84d;
  --light: #fff8f3;
  --gray: #6b6b6b;
  --dark: #2b1a1a;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Topbar */
.topbar {
  background: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar .info span { margin-right: 18px; }
.topbar .socials { display: flex; gap: 8px; align-items: center; }
.topbar .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  opacity: 0.85;
  transition: all 0.2s;
}
.topbar .socials a:hover { opacity: 1; background: var(--primary); transform: translateY(-2px); }
.topbar .socials a svg { width: 14px; height: 14px; fill: #fff; }

/* Footer social media icons */
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all 0.25s;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-socials a svg { width: 18px; height: 18px; fill: #fff; }

/* Container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header / Nav */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .logo img { height: 48px; }
}

.nav-menu {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  padding: 10px 16px;
  display: inline-block;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
  background: rgba(200,16,46,0.06);
}

/* Dropdown */
.has-sub > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  transition: background 0.2s;
}
.submenu li a:hover { background: var(--light); color: var(--primary); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(107,24,24,0.88), rgba(255,107,26,0.78)),
              url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 18px; line-height: 1.2; }
.hero p { font-size: 1.15rem; max-width: 760px; margin: 0 auto 28px; opacity: 0.95; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 12px;
}
.btn-outline:hover { background: #fff; color: var(--dark); }

/* Sections */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
}
.section-title p { color: var(--gray); max-width: 700px; margin: 0 auto; }

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(200,16,46,0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--secondary); }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* About preview */
.about-preview {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-preview .about-img {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  height: 360px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 5rem;
  background-image: linear-gradient(135deg, rgba(107,24,24,0.85), rgba(255,107,26,0.85)), url('img/hayalpark-logo.png');
  background-size: cover, 70%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: normal;
  font-size: 0;
}
.about-preview h2 { color: var(--secondary); margin-bottom: 18px; }
.about-preview p { color: var(--gray); margin-bottom: 14px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.stat strong { display: block; font-size: 1.8rem; color: var(--primary); }
.stat span { font-size: 0.85rem; color: var(--gray); }

/* Brands strip */
.brands { background: var(--light); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.brand-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.brand-card:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.brand-card img { display: block; }

/* Products preview */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card .thumb {
  height: 180px;
  background: linear-gradient(135deg, #f0f0f0, #d8d8d8);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary);
}
.product-card .body { padding: 18px; }
.product-card h4 { color: var(--secondary); margin-bottom: 6px; }
.product-card p { font-size: 0.9rem; color: var(--gray); }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta p { margin-bottom: 22px; opacity: 0.95; }

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  padding: 70px 0 50px;
  text-align: center;
}
.page-header h1 { font-size: 2.4rem; margin-bottom: 8px; }
.breadcrumbs { font-size: 0.9rem; opacity: 0.9; }
.breadcrumbs a { color: var(--accent); }

/* Content layout */
.content-section {
  background: #fff;
}
.content-section .wrap {
  max-width: 900px;
  margin: 0 auto;
}
.content-section h2 {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--primary);
  margin-top: 8px;
}
.content-section p {
  color: #444;
  margin-bottom: 16px;
}
.content-section ul.list-styled {
  list-style: none;
  margin: 16px 0;
}
.content-section ul.list-styled li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #444;
}
.content-section ul.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* Two-col blocks */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 30px;
}
.col-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}
.col-card h3 { color: var(--secondary); margin-bottom: 12px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 8px;
}
.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
}
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: #cfcfcf; transition: color 0.2s; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid #333;
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* WhatsApp icon in topbar */
.topbar .info a.wa-link {
  color: #25D366;
  font-weight: 700;
  margin-left: 6px;
}
.topbar .info a.wa-link:hover { text-decoration: underline; }

/* Map container */
.map-wrap {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .about-preview { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { display: block; }
  .submenu {
    position: static;
    box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    padding-left: 16px;
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}
