/* ===================================
   DASTA - Page Sections
   =================================== */

/* ===================================
   Hero Section
   =================================== */
.hero{
  height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50M50 50L100 0M50 50L100 100M50 50L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  background-size: 100px 100px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.30);
  z-index: 1;
}

.hero-content{
  position:relative;
  z-index: 2;
  text-align:center;
  color: var(--bg-white);
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title{
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
  color: var(--bg-white);
}

.highlight{ color: var(--secondary-color); display:inline-block; }
.dark-blue{ color: var(--primary-color); display: inline-block; }

.hero-subtitle{
  font-size: 22px;
  margin-bottom: 50px;
  opacity: 1;
  font-weight: 500;
  line-height: 1.6;
}

.hero-buttons{
  display:flex;
  gap: 20px;
  justify-content:center;
  flex-wrap:wrap;
}

.scroll-indicator{
  position:absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  color: var(--bg-white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-line{ width: 1px; height: 40px; background: var(--bg-white); opacity: 0.5; }

/* ===================================
   Stats Section
   =================================== */
.stats-section{
  background: var(--bg-white);
  padding: 80px 0;
  margin-top: -50px;
  position:relative;
  z-index: 10;
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 60px var(--shadow);
}

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

.stat-number{
  font-size: 56px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after{ content:'+'; color: var(--secondary-color); }

.stat-label{
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   About Preview
   =================================== */
.about-preview{
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

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

.about-photo{
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.20);
}

.team-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  max-height: 500px;
  object-fit: cover;
}

/* ===================================
   Services Section
   =================================== */
.services-section{
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

/* ===================================
   Process Section
   =================================== */
.process-section{
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

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

/* ===================================
   CTA Section
   =================================== */
.cta-section{
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  position:relative;
  overflow:hidden;
}

.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  background-size: 100px 100px;
}

.cta-content{
  text-align:center;
  position:relative;
  z-index: 2;
}

.cta-title{
  font-size: 48px;
  font-weight: 900;
  color: var(--bg-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-text{
  font-size: 20px;
  color: rgba(255,255,255,0.90);
  margin-bottom: 40px;
}

/* ===================================
   Page Header
   =================================== */
.page-header{
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  text-align: center;
  color: var(--bg-white);
}

.page-title{
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--secondary-color) !important;
}

.page-subtitle{
  font-size: 20px;
  opacity: 0.9;
  color: var(--bg-white);
}

/* ===================================
   Team Member Photo
   =================================== */
.member-photo{
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.member-photo img.team-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===================================
   Google Maps
   =================================== */
.map-section{
  padding: 0;
  background: var(--bg-white);
}

.map-container{
  width: 100%;
  height: 450px;
  border-top: 2px solid var(--border-color);
}

.map-container iframe{
  width: 100%;
  height: 100%;
  display: block;
}
