/* static/css/style.css */

/* == PENGATURAN DASAR & FONT == */

/* ===========================================================
   1. PENGATURAN DASAR & FONT
   =========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

/* ===========================================================
   2. VARIABEL WARNA & RESET
   =========================================================== */
:root {
  --primary-color: #0d6efd; /* Biru */
  --secondary-color: #0dcaf0; /* Cyan/Turquoise dari logo */
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --grey-color: #6c757d;
}

/* == RESET & BASE STYLES == */
* {
  box-sizing: border-box;
}

/* ===========================================================
   3. BASE STYLES (Body, Typography)
   =========================================================== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #dedee9;
  color: var(--dark-color);
  line-height: 1.7;
}

/* ===========================================================
   4. LAYOUT DASAR (Container)
   =========================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.header-container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.3;
}

/* == HEADER & NAVIGASI == */

/* ===========================================================
   5. HEADER & NAVIGASI
   =========================================================== */
header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.logo-container img {
  width: 120px;
}

.logo-container h1 {
  font-size: 1.8rem;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

nav ul li a:hover {
  color: var(--dark-color);
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* == HERO SECTION (UMUM) == */

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
.hero {
  padding: 80px 0;
  text-align: center;
}

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
.hero h1,

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
.hero p {
  font-size: 1.2rem;
  color: var(--grey-color);
  max-width: 700px;
  margin: 0 auto;
}

/* == HALAMAN UTAMA - KARTU LAYANAN == */

/* ===========================================================
   7. KARTU LAYANAN (Home Services)
   =========================================================== */
#services {
  padding: 80px 0;
  margin-bottom: 30px;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  padding: 0;
  width: 100%;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  max-width: 100%;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 40px 20px 20px 20px;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-sizing: border-box;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .project-title {
  opacity: 1;
  transform: translateY(0);
}

/* == HALAMAN LAYANAN IT - SERVICES & TECH GRID == */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

/* ===========================================================
   8. LAYANAN IT / SERVICES GRID
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-item .icon,
.advantage-item .icon,
.tech-item .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-item h3 {
  margin-bottom: 15px;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--grey-color);
}

.service-item ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* TECHNOLOGY SECTION */

/* ===========================================================
   9. TECHNOLOGY SECTION
   =========================================================== */
#technology {
  padding: 80px 0;
  background-color: #fff;
}

.tech-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tech-description h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tech-description p {
  color: var(--grey-color);
  margin-bottom: 30px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-item {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.tech-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.tech-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* == SECTION UMUM (ADVANTAGES, ABOUT, CTA) == */

/* ===========================================================
   10. ABOUT SECTION & ADVANTAGES
   =========================================================== */
.about-section,
#advantages {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.about-image {
  position: relative;
}

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

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text .section-tagline {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--grey-color);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.stat-item {
  text-align: center;
  padding: 20px 15px; /* Padding konsisten */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 2px solid rgba(13, 110, 253, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-bottom-color: rgba(13, 110, 253, 0.3);
}

.stat-item h3,
.stat-item p {
  width: 100%;
  max-width: 200px; /* Batasi lebar untuk alignment yang konsisten */
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.95rem;
  color: var(--grey-color);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

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

.advantage-item {
  text-align: center;
}

/* ===========================================================
   11. CTA (Call To Action)
   =========================================================== */
#cta {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: white;
  text-align: center;
}

/* ===========================================================
   11. CTA (Call To Action)
   =========================================================== */
#cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.cta-button:hover {
  background-color: #0b5ed7;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(13, 110, 253, 0.3);
}

.cta-mobile {
  display: none !important;
}

/* == HALAMAN KONTAK == */

/* ===========================================================
   12. KONTAK PAGE
   =========================================================== */
#contact {
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--grey-color);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-details i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 25px;
  text-align: center;
}

.contact-details a {
  text-decoration: none;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Styling Form */
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.services-interest {
  margin-bottom: 20px;
}

.services-interest label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-form button.cta-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.details-container {
  display: none;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e9ecef;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 50%;
  margin: 0 auto;
}

.detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.detail-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.detail-item p {
  font-size: 0.95rem;
  color: var(--grey-color);
  line-height: 1.6;
}

.detail-item img {
  height: 45px;
  width: auto;
  margin-bottom: 15px;
}

/* == RESPONSIVE DESIGN == */

/* TABLET (1024px and below) */

/* ===========================================================
   13. RESPONSIVE - TABLET
   =========================================================== */
@media (max-width: 1024px) {
  /* ===========================================================
   4. LAYOUT DASAR (Container)
   =========================================================== */
  .container {
    padding: 0 15px;
  }

  /* ===========================================================
   8. LAYANAN IT / SERVICES GRID
   =========================================================== */
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .advantages-grid,
  .tech-container,
  .about-content {
    grid-template-columns: 1fr;
  }

  .tech-container {
    text-align: center;
  }

  .cta-desktop {
    display: none !important;
  }

  .cta-mobile {
    display: inline-block !important;
    margin-top: 30px;
  }

  .about-container {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}

/* MOBILE (768px and below) */

/* ===========================================================
   14. RESPONSIVE - MOBILE
   =========================================================== */
@media (max-width: 768px) {
  /* ===========================================================
   4. LAYOUT DASAR (Container)
   =========================================================== */
  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  /* ===========================================================
   6. HERO SECTION
   =========================================================== */
  .hero h1,

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
  .hero h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

  /* ===========================================================
   6. HERO SECTION
   =========================================================== */
  .hero p {
    padding: 0 10px;
  }

  .section-title {
    font-size: 2rem;
    padding: 0 10px;
  }

  nav {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .header-container {
    width: 90%;
    padding: 0 10px;
  }

  .logo-container h1 {
    font-size: 1.3rem;
  }

  /* SERVICES CONTAINER - PERBAIKAN UTAMA */
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    margin-top: 30px;
  }

  /* SERVICES GRID - PERBAIKAN UTAMA */

  /* ===========================================================
   8. LAYANAN IT / SERVICES GRID
   =========================================================== */
  .services-grid {
    grid-template-columns: 1fr; /* Hanya 1 kolom di mobile */
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .service-item {
    padding: 20px; /* Kurangi padding internal */
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .service-item .icon {
    font-size: 2rem;
  }

  .service-item h3 {
    font-size: 1.2rem;
  }

  .service-item p,
  .service-item ul li {
    font-size: 0.9rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* CONTACT FORM FIXES */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info h1 {
    font-size: 2.5rem;
  }

  .details-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
    gap: 20px;
    width: 100%; /* Full width di mobile */
    padding: 0 10px;
  }

  .detail-item {
    padding: 20px; /* Kurangi padding */
  }

  /* SECTION PADDING ADJUSTMENTS */

  /* ===========================================================
   7. KARTU LAYANAN (Home Services)
   =========================================================== */
  #services,

/* ===========================================================
   10. ABOUT SECTION & ADVANTAGES
   =========================================================== */
  .about-section,
  #advantages,

/* ===========================================================
   12. KONTAK PAGE
   =========================================================== */
  #contact,

/* ===========================================================
   11. CTA (Call To Action)
   =========================================================== */
  #cta,

/* ===========================================================
   9. TECHNOLOGY SECTION
   =========================================================== */
  #technology {
    padding: 60px 0; /* Kurangi padding vertikal */
  }

  /* ===========================================================
   10. ABOUT SECTION & ADVANTAGES
   =========================================================== */
  .about-section {
    padding: 60px 0;
  }

  /* PERBAIKAN UTAMA: Layout Mobile */
  .about-container {
    grid-template-columns: 1fr; /* Ubah jadi 1 kolom */
    gap: 40px;
    text-align: center;
  }

  /* PERBAIKAN: Foto di Mobile */
  .about-image {
    order: 2; /* Pindahkan foto ke bawah */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text {
    order: 1; /* Text di atas */
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container {
    width: 100%;
    height: auto;
    min-height: 300px; /* Minimum height untuk foto */
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover; /* Pastikan foto tidak terdistorsi */
  }

  .image-caption {
    font-size: 1.1rem;
    padding: 25px 15px 12px;
  }

  /* Text Adjustments */
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: left; /* Align text left untuk readability */
  }

  /* Stats Mobile Layout */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* PERBAIKAN: Gap yang lebih besar untuk spacing */
    max-width: 100%;
    margin: 30px auto 0; /* PERBAIKAN: Center dengan margin top */
  }

  .stat-item {
    padding: 15px 10px;
    background: transparent;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
    min-height: 60px; /* PERBAIKAN: Minimum height untuk mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-item h3 {
    font-size: 1.8rem; /* PERBAIKAN: Size yang proporsional */
    margin-bottom: 4px;
    line-height: 1;
  }

  .stat-item p {
    font-size: 0.85rem; /* PERBAIKAN: Size yang lebih besar untuk readability */
    margin: 0;
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
  }
}

/* EXTRA SMALL MOBILE (480px and below) */

/* ===========================================================
   15. RESPONSIVE - EXTRA SMALL MOBILE
   =========================================================== */
@media (max-width: 480px) {
  /* ===========================================================
   4. LAYOUT DASAR (Container)
   =========================================================== */
  .container {
    padding: 0 10px;
  }

  .service-item {
    padding: 15px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p,
  .service-item ul li {
    font-size: 0.85rem;
  }

  /* ===========================================================
   6. HERO SECTION
   =========================================================== */
  .hero h1,

/* ===========================================================
   6. HERO SECTION
   =========================================================== */
  .hero h2 {
    font-size: 1.8rem;
    padding: 0 5px;
  }

  .section-title {
    font-size: 1.8rem;
    padding: 0 5px;
  }

  .tech-grid {
    grid-template-columns: 1fr; /* 1 kolom untuk layar sangat kecil */
  }

  nav ul {
    gap: 6px; /* Jarak antar menu minimal */
    justify-content: center;
    flex-wrap: nowrap; /* Paksa dalam 1 baris */
  }

  nav ul li a {
    font-size: 0.65rem; /* Font menu navigasi sangat kecil untuk muat 1 baris */
    white-space: nowrap; /* Cegah text wrap */
    padding: 4px 6px; /* Kurangi padding */
  }

  .project-title {
    font-size: 1.2rem;
    padding: 30px 15px 15px 15px;
  }

  /* ===========================================================
   10. ABOUT SECTION & ADVANTAGES
   =========================================================== */
  .about-section {
    padding: 50px 0;
  }

  .about-container {
    gap: 30px;
  }

  .about-image {
    max-width: 100%; /* Full width di layar kecil */
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container {
    min-height: 250px;
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container img {
    min-height: 250px;
  }

  .image-caption {
    font-size: 1rem;
    padding: 20px 10px 10px;
  }

  .about-stats {
    gap: 20px;
    max-width: 280px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .stat-item {
    padding: 18px 12px;
    min-height: 75px;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .stat-item h3 {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .stat-item p {
    font-size: 0.95rem;
  }
}

/* ===========================================================
   14. RESPONSIVE - MOBILE
   =========================================================== */
@media (max-width: 768px) and (orientation: landscape) {
  /* ===========================================================
   10. ABOUT SECTION & ADVANTAGES
   =========================================================== */
  .about-section {
    padding: 40px 0;
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container {
    min-height: 200px;
  }

  /* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
  .image-container img {
    min-height: 200px;
  }
}

/* ===========================================================
   16. FOOTER
   =========================================================== */
#main-footer {
  background-color: var(--dark-color);
  color: #ccc;
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-column .contact-list i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: #1a1a1a;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Footer */

/* ===========================================================
   14. RESPONSIVE - MOBILE
   =========================================================== */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-column h4::after {
    left: 50%;
    margin-left: -20px;
  }
  .social-icons {
    justify-content: center;
  }
}

/* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

/* ===========================================================
   17. IMAGE CONTAINER (General Styles)
   =========================================================== */
.image-container:hover img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px 20px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
