/* =========================
   SERVICES SECTION
   ========================= */

.services{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:80px 60px;

/* PROFESSIONAL GRADIENT */
background:linear-gradient(
135deg,
#111827 0%,
#0f172a 40%,
#020617 100%
);

color:white;
}

.services-page{
background:linear-gradient(
to bottom,
#111827,
#0f172a
);
}

.services-page .wrapper{
background:#111827;
}

.services-page .nav{
background:#111827;
backdrop-filter:none; /* remove blur for cleaner look */
}


.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
gap:40px;
max-width:1200px;
width:100%;
}

.service-card{

background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
padding:30px;
position:relative;
transition:all .35s ease;
}

.service-card:hover{
transform:translateY(-6px);
border-color:#f4a261;
}

.service-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.service-top i{
font-size:40px;
color:#8b5cf6;
}

.service-number{
border:2px solid #f4a261;
padding:6px 14px;
font-size:14px;
}

.service-card h2{
font-family:'Marcellus',serif;
font-size:32px;
margin-bottom:20px;
}

.service-card p{
color:#cbd5e1;
line-height:1.7;
margin-bottom:20px;
}

.service-card ul{
list-style:none;
padding:0;
}

.service-card li{
margin-bottom:10px;
position:relative;
padding-left:18px;
color:#cbd5e1;
}

.service-card li::before{
content:"";
position:absolute;
left:0;
top:8px;

width:8px;
height:8px;

background:#f4a261;
border-radius:50%;
}

.service-card:hover{
transform:translateY(-6px);
border-color:#f4a261;
box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* =========================
   WHAT WE OFFER SECTION
   ========================= */

.what-we-offer {
  background: linear-gradient(135deg, #0b1120 0%, #111827 100%);
  padding: 100px 60px;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-offer .container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.section-header {
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}

.section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f59e0b;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.title-white {
  color: white;
}

.title-gold {
  color: #f59e0b;
}

.section-subtitle {
  font-size: 18px;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 600px;
  text-align: left;
  overflow: hidden;
}



.offer-card:nth-child(2) {
  animation-delay: 0.4s;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.offer-card.active {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  border-color: #f59e0b;
  animation: pulseGlow 2s infinite;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.1);
}

.card-icon {
  margin-bottom: 30px;
  position: relative;
}

.card-icon i {
  font-size: 48px;
  color: #f59e0b;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.offer-card h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.offer-card p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 16px;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  width: 100%;
}

.offer-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  background-image: linear-gradient(90deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 40%, rgba(245, 158, 11, 0.18) 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.offer-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 1), rgba(245, 158, 11, 0.5));
  flex-shrink: 0;
}

.offer-card li:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
  animation: listFlow 1.2s linear infinite;
}

@keyframes listFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

.learn-more {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  padding: 10px 18px;
  border: 1px solid rgba(245, 158, 11, 0.7);
  background: rgba(245, 158, 11, 0.1);
  color: #f9fafb;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.offer-card:hover .learn-more {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-offer {
    padding: 80px 30px;
  }

  .section-title {
    font-size: 36px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-card {
    padding: 30px 20px;
  }
}

