/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background-color: #ffffff;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HEADER
========================= */
.site-header {
  width: 100%;
  background-color: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
  padding: 5px;
  border-radius: 25px;
}

/* NAVIGATION */
.main-nav {
  flex: 1;
  margin: 0 24px;
}

.main-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fcd34d;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #fcd34d;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* =========================
   CTA BUTTON (GLOBAL)
========================= */
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #0ea5e9;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #0284c7;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background-color: #f3f4f6;
  padding: 100px 24px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.hero-container .section-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-container .section-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4b5563;
}

/* IMAGE COLLAGE */
.hero-container .section-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-container .section-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-container .section-images img:hover {
  transform: scale(1.05);
}

/* DIFFERENT IMAGE SHAPES */
.hero-container .img-1 {
  border-radius: 40px 0 40px 40px;
}
.hero-container .img-2 {
  border-radius: 0 40px 40px 40px;
}
.hero-container .img-3 {
  border-radius: 40px 40px 0 40px;
}
.hero-container .img-4 {
  border-radius: 40px;
}

/* =========================
   CONTENT SECTIONS
========================= */
.content-section {
  padding: 100px 24px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.section-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.section-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 30px;
}

/* IMAGE COLLAGE */
.section-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.section-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.section-images img:hover {
  transform: scale(1.05);
}

/* DIFFERENT IMAGE SHAPES */
.img-1 {
  border-radius: 40px 0 40px 40px;
}
.img-2 {
  border-radius: 0 40px 40px 40px;
}
.img-3 {
  border-radius: 40px 40px 0 40px;
}
.img-4 {
  border-radius: 40px;
}

/* ALTERNATE BACKGROUND */
.section-gray {
  background-color: #f3f4f6;
}

/* =========================
   SERVICES SECTION - SINGLE BIG IMAGE
========================= */
.services-list-text {
  list-style: disc inside;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2933;
}

.section-image-big img {
  width: 100%;
  height: 100%;
  min-height: 400px; /* desktop height */
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.section-image-big img:hover {
  transform: scale(1.05);
}

/* =========================
   SOCIAL MEDIA SECTION
========================= */
.section-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.section-social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.section-social-icons a:hover {
  transform: scale(1.1);
}

.social-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 60px 24px 30px;
  background-color: #1f2933;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

.footer-company h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-company p {
  color: #cbd5e1;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0ea5e9;
}

.footer-contact p a {
  color: #0ea5e9;
  text-decoration: none;
}

.footer-contact p a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-logo-footer {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-logo-footer:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {
  /* HEADER */
  .site-header .container {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .mobile-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  /* HERO AND CONTENT SECTIONS */
  .hero-container,
  .section-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  /* FORCE TEXT ABOVE IMAGES ON MOBILE */
  .section-text {
    order: 1;
  }

  .section-images,
  .section-image-big {
    order: 2;
  }

  .hero-container .section-text {
    order: 1;
  }

  /* TEXT SIZING */
  .hero-container .section-text h1 {
    font-size: 2rem;
  }

  .hero-container .section-text p,
  .section-text p {
    font-size: 1rem;
  }

  /* IMAGE HEIGHT */
  .hero-container .section-images img,
  .section-images img,
  .section-image-big img {
    height: 160px;
  }

  /* SOCIAL LOGOS RESPONSIVE */
  .section-social-icons {
    justify-content: center;
    gap: 24px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }
}
