/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0284c7;
  --accent-orange: #f3801d;
  --accent-orange-hover: #d96f14;
  --dark-navy: #0f172a;
  --mid-navy: #1e293b;
  --ice-blue: #f0f9ff;
  --soft-blue: #e0f2fe;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: #f8fafc;
  line-height: 1.6;
}

/* Navbar Logo Styling */
.navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.8rem 8%;
  background-color: #e0f2fe; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 10rem; /* Shifts logo 10rem away from left edge */
}

.site-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Horizontal Link Menu */
.nav-links {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  gap: 2rem;
  margin: 0 10rem 0 0; /* Pushes menu 10rem away from right edge */
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none !important;
  color: #334155;
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

/* Base Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.primary-btn {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #0369a1;
}

/* Orange Buttons (#f3801d) for Contact Section Actions */
.contact-actions .primary-btn,
.contact-actions .map-btn,
a.map-btn {
  background-color: var(--accent-orange);
  color: #ffffff !important;
  text-decoration: none;
  border: none;
}

.contact-actions .primary-btn:hover,
.contact-actions .map-btn:hover,
a.map-btn:hover {
  background-color: var(--accent-orange-hover);
  color: #ffffff !important;
}


/* 1. HERO SECTION */
.hero-section {
  padding: 4rem 8% 5rem 8%;
  background: linear-gradient(90deg, #e0f2fe 100%, #ffffff 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text-content {
  flex: 1;
  text-align: left;
}

.hero-text-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #0f172a;
}

.hero-text-content p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.12);
}


/* 2. WHY US SECTION */
.why-us-section {
  padding: 5rem 8%;
  background: linear-gradient(90deg, #e0f2fe 30%, #ffffff 100%);
}

.why-us-section .section-title h2 {
  color: #0f172a;
}

.why-us-section .section-title p {
  color: #64748b;
}

.why-us-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background-color: #ffffff;
  border-left: 5px solid var(--primary-blue);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.why-us-text {
  flex: 1.2;
}

.why-us-text p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  text-align: justify;
}

.why-us-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-us-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* 3. SERVICES SECTION */
.services-section {
  padding: 5rem 8%;
  background: linear-gradient(90deg, #e0f2fe 30%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--dark-navy);
  font-weight: 700;
}

.section-title p {
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.service-card.featured {
  border: 2px solid var(--primary-blue);
  background-color: var(--ice-blue);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon svg {
  display: inline-block;
  vertical-align: middle;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--dark-navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}


/* 4. LOCATION & CONTACT */
.location-section {
  padding: 5rem 8%;
  background: linear-gradient(90deg, #e0f2fe 30%, #ffffff 100%);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #475569;
}

.contact-info a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.map-embed iframe {
  width: 100%;
  border-radius: 12px;
}

/* Inline Social Row */
.social-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #475569;
}

.social-icons {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  color: #64748b;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* Hover Brand Colors */
.social-icon.facebook:hover {
  background-color: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aebe6 90%);
  color: #ffffff;
  border-color: transparent;
}

.social-icon.youtube:hover {
  background-color: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
}


/* 5. FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--dark-navy);
  color: #94a3b8;
  font-size: 0.9rem;
}


/* Responsive adjustments for Mobile & Tablets */
@media (max-width: 850px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 4%;
    gap: 1rem;
  }

  .logo-container {
    margin-left: 0 !important;
    justify-content: center;
  }

  .site-logo {
    height: 42px;
  }

  .nav-links {
    margin: 0 !important;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hero-container, 
  .why-us-container, 
  .location-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 2rem;
  }

  .hero-text-content, 
  .why-us-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .social-row {
    justify-content: center;
  }
}