/* RESET */
* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  background: #f5f7fa;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  margin: auto;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* NAV */
.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: #333;
  font-size: 15px;
  font-weight: 600;
  margin: 0 16px;
  text-decoration: none;
}

nav a.active {
  color: #2ea3f2;
}

/* LOGO */
.logo {
  height: 90px;
  object-fit: contain;
}

/* PHONE */
.phone {
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
}

.phone a {
  color: #000;
  text-decoration: none;
}

.phone span {
  color: #666;
  display: block;
  font-size: 11px;
}

/* HERO */
.hero {
  align-items: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  height: 700px;
  margin-bottom: 60px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.small-hero {
  height: 350px;
}

.hero-img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 600px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero span {
  color: #2ea3f2;
}

/* OVERLAY */
.overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  height: 100%;
  position: absolute;
  width: 100%;
}

/* BUTTONS */
.btn {
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
  padding: 14px 24px;
  text-decoration: none;
  transition: 0.3s;
}

.primary {
  background: #2ea3f2;
  color: white;
}

.primary:hover {
  background: #1d8fd8;
}

.secondary {
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
}

.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* FEATURES */
.feature {
  align-items: center;
  display: flex;
  gap: 10px;
}

.feature span {
  color: #ccc;
  display: block;
  font-size: 13px;
}

.features {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.icon {
  font-size: 20px;
}

/* SERVICES */
.services {
  margin-top: -60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 5;
}

.service-grid {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
}

/* CARDS */
.card {
  background: transparent;
  padding: 10px;
  text-align: center;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: #666;
  font-size: 14px;
}

/* SERVICE PAGE */
.services-page {
  padding: 80px 0;
}

.service-card img {
  border-radius: 10px;
  height: 180px;
  margin-bottom: 15px;
  object-fit: cover;
  width: 100%;
}

.service-card ul {
  margin: 15px 0;
  padding-left: 20px;
}

.service-card li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* ABOUT */
.about {
  padding: 100px 0;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.about img {
  border-radius: 12px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

/* AREAS */
.areas {
  background: #f1f5f9;
  padding: 60px 0;
  text-align: center;
}

.area-list {
  margin-top: 20px;
}

.area-list span {
  background: white;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
  margin: 8px;
  padding: 10px 15px;
}

/* GALLERY */
.gallery {
  padding: 80px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.gallery img {
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s;
  width: 100%;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* CTA */
.cta {
  background: #2ea3f2;
  color: white;
  padding: 60px 0;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact-form {
  margin: auto;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px 0;
  padding: 14px;
  width: 100%;
}

.contact-form button {
  background: #2ea3f2;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 14px;
  width: 100%;
}

.contact-form button:hover {
  background: #1d8fd8;
}

/* CONTACT PAGE */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info a {
  color: #2ea3f2;
  font-weight: 600;
  text-decoration: none;
}

.contact-box {
  background: #f1f5f9;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
}

/* PRICING */
.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  margin: 30px auto;
  max-width: 500px;
  padding: 40px;
}

.pricing-card h3 {
  color: #2ea3f2;
  font-size: 42px;
  margin-bottom: 10px;
}

.pricing-card h3 span {
  color: #666;
  font-size: 16px;
}

.pricing-sub {
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  margin-bottom: 8px;
}

.pricing-info {
  color: #666;
  font-size: 14px;
  margin: 30px auto;
  max-width: 600px;
}

.note {
  color: #666;
  font-size: 13px;
  margin: 20px 0;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

/* FLOAT BUTTON */
.call-float {
  background: #2ea3f2;
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: white;
  font-size: 20px;
  padding: 15px;
  position: fixed;
  right: 20px;
  text-decoration: none;
}

/* FONTS */
@font-face {
  font-family: 'Poppins';
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* MOBILE */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    height: auto;
    padding: 100px 0 60px;
  }

  .service-grid {
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    grid-template-columns: 1fr;
  }
}