/* PAGE BACKGROUND (WHITE TEXTURE STYLE) */
.services-page {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}



/* SECTION */
.what-we-offer {
  position: relative;
  padding: 50px 10% 80px;
  padding-top: 120px;
  /* background: url("images/servicesbg.jpg"); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  overflow: hidden;
}

/* 🔥 TEXTURE OVERLAY (THIS IS THE MAGIC) */
.what-we-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 6px 6px;

  opacity: 0.4;
  pointer-events: none;
}

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: transparent;
  transition: 0.3s ease;
  z-index: 1000;
}

.nav.scrolled {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* DEFAULT (ON IMAGE) */
.nav .link,
.logo-text,
.nav-user i,
.nav-socials .social-icon i {
  color: white;
}

.nav,
.nav .link,
.logo-text,
.nav-user i,
.nav-socials .social-icon i {
  transition: all 0.3s ease;
}

/* WHEN SCROLLED */
.nav.scrolled .link,
.nav.scrolled .logo-text,
.nav.scrolled .nav-user i,
.nav.scrolled .nav-socials .social-icon i {
  color: #111827;
}

/* SOCIAL MEDIA ICONS */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s ease;
}

.nav-socials .social-icon i {
  font-size: 22px;
  color: white;
  transition: 0.3s ease;
}

.nav-socials .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-socials .social-icon[href*="facebook"]:hover i {
  color: #1877F2;
}

.nav-socials .social-icon[href*="linkedin"]:hover i {
  color: #0A66C2;
}

.nav-socials .social-icon[href*="tiktok"]:hover i {
  color: #fe2c55;
}

/* Social icons inside nav menu */
.nav-menu ul li .nav-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}

.nav-menu ul li .nav-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s ease;
  text-decoration: none;
}

.nav-menu ul li .nav-socials .social-icon i {
  font-size: 18px;
  color: white;
  transition: 0.3s ease;
}

.nav-menu ul li .nav-socials .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu ul li .nav-socials .social-icon[href*="facebook"]:hover i {
  color: #1877F2;
}

.nav-menu ul li .nav-socials .social-icon[href*="linkedin"]:hover i {
  color: #0A66C2;
}

.nav-menu ul li .nav-socials .social-icon[href*="tiktok"]:hover i {
  color: #fe2c55;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.section-header {
  min-height: 60vh; /* makes it stand alone */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f59e0b;
  ;
}

.section-title {
  font-size: 40px;
  margin: 15px 0;
}

.title-gold {
  color: #f59e0b;
}

.section-subtitle {
  color: #d5dae6;
}

.title-white {
  color: #ffffff;
}

/* CARDS GRID */
.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content media";
  align-items: stretch;
  background: transparent;
  padding: 0;
  border-radius: 18px;
  min-height: 420px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  gap: 20px;
  
}

.offer-card:nth-child(even) {
  grid-template-areas: "media content";
}

.service-media {
  grid-area: media;
  min-height: 420px;
  border-radius: 18px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 88%, rgba(255,255,255,0.16) 88%, rgba(255,255,255,0.16) 89%, transparent 89%),
    linear-gradient(90deg, transparent 90%, rgba(255,255,255,0.16) 90%, rgba(255,255,255,0.16) 91%, transparent 91%);
  pointer-events: none;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  pointer-events: none;
}

.service-copy {
  grid-area: content;
  background: rgba(17,24,39,0.95);
  padding: 35px 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #f59e0b;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ICON */
.card-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;

  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 30px;
  color: #f59e0b;
}

/* TITLE */
.offer-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* TEXT */
.offer-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* LIST */
.offer-card ul {
  padding: 0;
  list-style: none;
  color: #f59e0b;
}

.offer-card li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.offer-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* BUTTON */
.learn-more {
  bottom: 25px;
  padding: 10px 20px;
  font-size: 13px;
  border: 1px solid #f59e0b;
  background: transparent;
  color: white;
  border-radius: 30px;
  transition: 0.3s;
  margin-top: 50px;
}

.learn-more:hover {
  background: #f59e0b;
  color: #111827;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card:nth-child(even) {
    grid-template-areas: "content" "media";
  }

  .card-number {
    top: 15px;
    right: 25px;
  }
}
