/* --- Global & Reset Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --bg-main: #051329;       /* Deep dark blue background */
  --bg-bottom: #020c1b;     /* Slightly darker blue for bottom bar */
  --text-light: #ffffff;    /* White headings */
  --text-muted: #a3b3c9;    /* Muted gray-blue for links and text */
  --accent-gold: #cca464;   /* Gold color for arrows, icons, and scroll button */
}

body {
  background-color: #f0f0f0; /* Just for preview contrast */
}

/* --- Footer Layout --- */
.footer {
  background-color: var(--bg-main);
  color: var(--text-muted);
  padding: 70px 0 0 0;
  font-size: 15px;
}

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

/* --- Column Content --- */
.footer-col h3 {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

/* Contact Info Styling */
.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-list a:hover {
  color: var(--text-light);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 15px;
  color: var(--accent-gold);
  font-size: 13px;
  margin-top: 2px;
}

/* Link Lists Styling (Quick Links, Categories, Discover) */
.link-list li {
  margin-bottom: 15px;
}

.link-list a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.link-list a i {
  color: var(--accent-gold);
  font-size: 11px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.link-list a:hover {
  color: var(--text-light);
}

.link-list a:hover i {
  transform: translateX(3px);
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
  background-color: var(--bg-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: absolute;
  right: 40px;
  bottom: 0;
  background-color: var(--accent-gold);
  color: #fff;
  width: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: background-color 0.3s;
}

.scroll-to-top:hover {
  background-color: #b38d50; /* Slightly darker gold on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 60px; /* Make space for scroll button on small viewports */
  }

  .scroll-to-top {
    right: 50%;
    transform: translateX(50%);
    border-radius: 4px 4px 0 0;
  }
}


/* --- Clients Section Styling --- */
.clients-section {
  background-color: #fbf6f0; /* Off-white / cream background matching image */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Optional: Subtle wavy line vector simulation in background */
.clients-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 20% 30%, transparent 50%, #cca464 50%), 
                    radial-gradient(circle at 80% 70%, transparent 50%, #cca464 50%);
  background-size: 60px 60px;
  pointer-events: none;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Typography styling */
.clients-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #cca464; /* Brand Gold Color */
  margin-bottom: 15px;
  text-transform: uppercase;
}

.clients-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c1829; /* Deep dark blue/black title */
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.clients-desc {
  font-size: 15px;
  color: #6c757d; /* Soft grey text */
  max-width: 760px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Logo Grid Rules */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
  align-items: center;
  justify-content: center;
}

/* Individual Card Design */
.logo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Soft blend shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 24, 41, 0.06);
}

/* Image Controls inside cards */
.logo-card img {
  max-width: 80%;
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(100%) opacity(75%); /* Gives uniform clean look */
  transition: filter 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%) opacity(100%); /* Colors up gracefully on hover */
}

/* fallback text style if image isn't loaded (e.g., Pull&Bear text) */
.brand-text {
  font-size: 14px;
  font-weight: 800;
  color: #333;
  letter-spacing: 0.5px;
}

/* --- Responsive Layout Breakpoints --- */

@media (max-width: 1200px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .clients-title {
    font-size: 28px;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: 1fr;
  }
}

/* --- About Us Section Styles --- */
.about-section {
  background-color: #fbf6f0; /* Soft off-white creamy background matching layout */
  padding: 100px 20px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Image side gets slightly more room */
  gap: 60px;
  align-items: center;
}

/* --- Gallery Grid Layout --- */
.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.gallery-big {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-big img, 
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Play Button Overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  background-color: #0c1829; /* Dark Navy Blue */
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  padding-left: 5px; /* Aligns the play triangle optically center */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #cca464; /* Switches to Gold on hover */
}

/* Thumbnail Column Layout */
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.thumb-card {
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
}

/* --- Content Styling --- */
.about-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cca464; /* Brand Accent Gold */
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: #0c1829; /* Dark Navy Primary Color */
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.about-desc {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- Stats Grid Styling --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.stat-box {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(12, 24, 41, 0.03);
}

.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #cca464; /* Gold metrics text */
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr; /* Stack layout */
    gap: 50px;
  }
  .gallery-big {
    height: 400px;
  }
  .thumb-card {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
  .about-gallery {
    grid-template-columns: 1fr; /* Sub-gallery collapses vertically on tablets */
  }
  .gallery-thumbs {
    flex-direction: row;
    gap: 15px;
  }
  .thumb-card {
    flex: 1;
    height: 200px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on smaller screens */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-thumbs {
    flex-direction: column;
  }
  .stats-grid {
    grid-template-columns: 1fr; /* Single column layout for small mobile targets */
  }
}