/* ===================================
   DASTA - Components (Buttons, Cards, Forms)
   =================================== */

/* ===================================
   Buttons
   =================================== */
.btn{
  display:inline-block;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor:pointer;
  text-align:center;
}

.btn-primary{
  background: var(--secondary-color);
  color: var(--bg-white);
}
.btn-primary:hover{
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.30);
}

.btn-secondary{
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}
.btn-secondary:hover{
  background: var(--bg-white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-white{
  background: var(--bg-white);
  color: var(--primary-color);
}
.btn-white:hover{
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow);
}

/* ===================================
   Section Headers
   =================================== */
.section-label{
  display:inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title{
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle{
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-text{
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-header{
  text-align:center;
  margin-bottom: 60px;
}

/* ===================================
   Check List
   =================================== */
.check-list{
  list-style:none;
  margin: 30px 0;
}

.check-list li{
  display:flex;
  align-items:flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-medium);
}

.check-list svg{
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================
   Service Cards
   =================================== */
.service-card{
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 45px;
  transition: var(--transition);
}

.service-card:hover{
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px var(--shadow);
  transform: translateY(-10px);
}

.service-icon{
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 25px;
}

.service-icon svg{
  width: 36px;
  height: 36px;
  color: var(--bg-white);
}

.service-title{
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-description{
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-features{
  list-style:none;
  margin-bottom: 30px;
}

.service-features li{
  padding: 10px 0;
  padding-left: 25px;
  position:relative;
  color: var(--text-medium);
  font-size: 15px;
}

.service-features li::before{
  content:'▸';
  position:absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 900;
}

.service-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.service-link:hover{
  color: var(--secondary-color);
  gap: 15px;
}

.service-link svg{ width: 20px; height: 20px; }

/* ===================================
   Process Steps
   =================================== */
.process-step{
  text-align:center;
  padding: 40px 30px;
  background: var(--bg-white);
  border-radius: 15px;
  transition: var(--transition);
}

.process-step:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow);
}

.step-number{
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.step-title{
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-description{
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===================================
   Project Cards
   =================================== */
.project-card{
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.project-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-dark);
}

.project-image{
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}

.project-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-content{
  padding: 30px;
}

.project-title{
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.project-description{
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.7;
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible{
  transform: translateY(0);
}

.cookie-content{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text{
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
}

.cookie-text strong{
  color: var(--text-dark);
  font-weight: 700;
}

.cookie-text a{
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions{
  display: flex;
  gap: 12px;
}

.cookie-btn{
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept{
  background: var(--primary-color);
  color: var(--bg-white);
}

.cookie-btn-accept:hover{
  background: var(--primary-dark);
}

.cookie-btn-decline{
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover{
  border-color: var(--primary-color);
  background: rgba(13, 40, 71, 0.05);
}
