/* PolaPeak LLC — Pola Summit */
/* Color Palette: Verdant Berry */
/* Primary: #6B2D5B (berry/wine), Secondary: #2D5A3F (forest green) */
/* Accent: #D4913D (warm amber), Bg: #FAF8F5, Dark: #2F2D2E, Muted: #8B7D6B */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2F2D2E;
  background: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #6B2D5B;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4913D;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FAF8F5;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6B2D5B;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: #2D5A3F;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2F2D2E;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #6B2D5B;
  background: rgba(107,45,91,0.06);
}

.nav-cta {
  background: #6B2D5B !important;
  color: #FAF8F5 !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #943D7A !important;
  color: #FAF8F5 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #2F2D2E;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #2D5A3F 0%, #1A3A2A 40%, #6B2D5B 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,145,61,0.15) 0%, transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,125,107,0.12) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  color: #D4913D;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FAF8F5;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #D4913D;
}

.hero p {
  font-size: 1.15rem;
  color: #E8E0D8;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #D4913D;
  color: #2F2D2E;
}

.btn-primary:hover {
  background: #E8A838;
  color: #2F2D2E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,145,61,0.35);
}

.btn-outline {
  background: transparent;
  color: #FAF8F5;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: #FAF8F5;
  color: #FAF8F5;
  background: rgba(255,255,255,0.05);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.hero-card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.hero-card h3 {
  color: #FAF8F5;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: #C4BFB8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #D4913D;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #B5AFA8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== SECTION COMMONS ========== */
.section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(107,45,91,0.08);
  color: #6B2D5B;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2F2D2E;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #8B7D6B;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6B2D5B, #D4913D);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(107,45,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2F2D2E;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #8B7D6B;
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
  background: #2D5A3F;
  color: #FAF8F5;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,145,61,0.12) 0%, transparent 70%);
}

.about .section-label {
  background: rgba(212,145,61,0.15);
  color: #D4913D;
}

.about .section-title {
  color: #FAF8F5;
}

.about .section-subtitle {
  color: #C4BFB8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FAF8F5;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text p {
  color: #D5CFC8;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-features-list {
  list-style: none;
  margin-top: 24px;
}

.about-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #E8E0D8;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4913D;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 30px;
}

.about-stat-card .stat-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: #D4913D;
  margin-bottom: 4px;
}

.about-stat-card .stat-label {
  font-size: 0.9rem;
  color: #B5AFA8;
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 36px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(107,45,91,0.1);
  color: #6B2D5B;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2F2D2E;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: #8B7D6B;
  line-height: 1.65;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #FAF8F5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 5rem;
  color: #EFE6EE;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #2F2D2E;
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B2D5B, #2D5A3F);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF8F5;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.95rem;
  color: #2F2D2E;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: #8B7D6B;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #6B2D5B, #3D1A34);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,145,61,0.1) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FAF8F5;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #C4BFB8;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #D4913D;
  color: #2F2D2E;
  font-size: 1rem;
  padding: 16px 40px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F2D2E;
  margin-bottom: 16px;
}

.contact-info p {
  color: #8B7D6B;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(107,45,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.95rem;
  color: #2F2D2E;
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: #8B7D6B;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2F2D2E;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2F2D2E;
  background: #FAF8F5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6B2D5B;
  box-shadow: 0 0 0 3px rgba(107,45,91,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: #6B2D5B;
  color: #FAF8F5;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #943D7A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107,45,91,0.3);
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: rgba(45,90,63,0.1);
  color: #2D5A3F;
  border: 1px solid rgba(45,90,63,0.2);
}

.form-message.error {
  display: block;
  background: rgba(107,45,91,0.08);
  color: #6B2D5B;
  border: 1px solid rgba(107,45,91,0.15);
}

/* ========== FOOTER ========== */
.footer {
  background: #2F2D2E;
  color: #B5AFA8;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FAF8F5;
  margin-bottom: 12px;
}

.footer-about p {
  font-size: 0.92rem;
  color: #999590;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FAF8F5;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #999590;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #D4913D;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #7A7772;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: #7A7772;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #D4913D;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FAF8F5;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 14px 24px;
    display: block;
    border-radius: 0;
  }
  .nav-cta {
    display: inline-block;
    margin: 8px 24px;
    border-radius: 8px !important;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .about-stat-row {
    grid-template-columns: 1fr;
  }
}
