/* ===== 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: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #e84c3d;
  --primary-dark: #c0392b;
  --secondary: #2c3e50;
  --accent: #f39c12;
  --light: #ecf0f1;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.nav-logo .brand-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo .brand-name span {
  color: var(--primary);
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 5px;
}
.nav-links a {
  color: #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--white);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
  color: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text h1 span {
  color: var(--primary);
}
.hero-text p {
  font-size: 1.1rem;
  color: #bdc3c7;
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,76,61,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ===== SECTION BASE ===== */
section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-title p { color: #666; font-size: 1.05rem; }
.section-title .divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== FEATURES / STATS ===== */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--light);
  padding: 35px 25px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.feature-card p { color: #666; font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services { background: #f0f4f8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card .card-body {
  padding: 25px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.service-card p { color: #666; font-size: 0.95rem; margin-bottom: 15px; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.about-image .exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-image .exp-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-image .exp-badge .label { font-size: 0.85rem; }
.about-text h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}
.about-text p { color: #555; margin-bottom: 15px; }
.about-list { margin: 20px 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #444;
}
.about-list li::before {
  content: '✓';
  background: var(--primary);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== CONTACT INFO STRIP ===== */
.contact-strip {
  background: var(--primary);
  color: var(--white);
  padding: 30px 20px;
}
.contact-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-item .icon { font-size: 1.8rem; }
.contact-item .info .label { font-size: 0.8rem; opacity: 0.85; }
.contact-item .info .value { font-size: 1.05rem; font-weight: 700; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,76,61,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: white;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ===== MAP ===== */
.map-section { background: var(--white); }
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--secondary), #1a252f);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-banner .breadcrumb { color: #bdc3c7; font-size: 0.9rem; }
.page-banner .breadcrumb span { color: var(--primary); }

/* ===== FOOTER ===== */
footer {
  background: var(--secondary);
  color: #bdc3c7;
  padding: 60px 20px 20px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-col ul li a {
  color: #bdc3c7;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.contact-info-box {
  background: var(--secondary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-info-box h3 { font-size: 1.5rem; margin-bottom: 25px; }
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.info-item .icon {
  font-size: 1.5rem;
  background: var(--primary);
  padding: 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.info-item .text .label { font-size: 0.8rem; opacity: 0.7; margin-bottom: 3px; }
.info-item .text .value { font-size: 1rem; font-weight: 600; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-size: 0.95rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #27ae60; }
.toast.error { border-left: 4px solid var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    padding: 15px;
    gap: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-image { display: none; }
  .hero-btns { justify-content: center; }
  .about-content { grid-template-columns: 1fr; }
  .about-image .exp-badge { right: 10px; bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 1.8rem; }
}
