/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #e5e7eb;
  background: #0f172a;
}

/* Color Palette - Orange & Black Theme */
:root {
  --primary: #ff6b35;      /* Vibrant orange */
  --primary-dark: #e85a28; /* Darker orange */
  --secondary: #3b82f6;    /* Electric blue */
  --dark: #0f172a;         /* Navy dark */
  --dark-2: #1e293b;
  --light: #f1f5f9;
  --grey: #94a3b8;
  --white: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.4rem 3rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Section Titles */
.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.7rem;
  color: var(--grey);
  max-width: 700px;
  margin: 0 auto 5rem;
}

/* ==================== NAVIGATION ==================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--primary);
}

.subtitle {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.7rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 3rem;
}

.hero-highlight i {
  font-size: 2.8rem;
  color: var(--primary);
}

.hero-highlight p {
  font-size: 1.6rem;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-contact {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: var(--grey);
}

.hero-contact i {
  color: var(--primary);
  font-size: 2rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;                 /* Changed from 2rem to 0 */
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: 280px;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  border: 3px solid var(--primary);
  object-fit: cover;          /* Changed back to cover for tight fit */
  background: var(--dark-2);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}






/* ==================== ABOUT SECTION ==================== */

.about {
  padding: 8rem 0;
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.3);
  object-fit: cover;
}

.about-text p {
  font-size: 1.6rem;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-card i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.feature-card p {
  font-size: 1.4rem;
  color: var(--grey);
}

/* ==================== SERVICES SECTION ==================== */

.services {
  padding: 8rem 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-icon i {
  font-size: 3.2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.service-card p {
  font-size: 1.5rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ==================== LOCATIONS SECTION ==================== */

.locations {
  padding: 8rem 0;
  background: var(--dark-2);
}

.locations-intro {
  text-align: center;
  font-size: 1.7rem;
  color: var(--grey);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-item {
  background: var(--dark);
  padding: 2rem 1.5rem;
  border-radius: 0.8rem;
  text-align: center;
  font-size: 1.5rem;
  color: var(--light);
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.location-item i {
  color: var(--primary);
  font-size: 2rem;
}

.location-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.locations-footer {
  text-align: center;
  font-size: 1.6rem;
  color: var(--grey);
}

.locations-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.locations-footer a:hover {
  text-decoration: underline;
}

/* ==================== CONTACT SECTION ==================== */

.contact {
  padding: 8rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item i {
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p,
.contact-item a {
  font-size: 1.5rem;
  color: var(--grey);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary);
}

.emergency-text {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--dark-2);
  padding: 3rem;
  border-radius: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.5rem;
  background: var(--dark);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 0.8rem;
  color: var(--light);
  font-size: 1.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 2rem;
}

.contact-form button {
  width: 100%;
}

/* ==================== FOOTER ==================== */

.footer {
  background: var(--dark-2);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  color: var(--grey);
  font-size: 1.4rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 968px) {
  html {
    font-size: 58%;
  }

  .hero-container,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 7rem;
    flex-direction: column;
    background: var(--dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 3rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  /* Hero image for tablet/mobile */
  .hero-image {
    order: -1;
    padding: 0;
  }

  .hero-image img {
    max-width: 350px;
    height: 200px;
  }
}

@media (max-width: 568px) {
  html {
    font-size: 55%;
  }

  .services-grid,
  .locations-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  /* Hero image for iPhone/small mobile */
  .hero-image {
    padding: 0;
  }

  .hero-image img {
    max-width: 300px;
    height: 170px;
    border-width: 2px;
  }
}

