/* ---------------- About Page Styles ---------------- */
.about {
  padding: 60px 10%;
  background: #fff;
  color: #222;
  text-align: left;
}

.about-header{
  max-width: 1200px;
  width: 100%;
  justify-self: center;
}

.about-header h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 8px;
  
}

.about-header .subheading {
  font-size: 35px;
  color: #ff7f00; /* highlight color */
  margin-bottom: 30px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 3 equal columns */
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  justify-self: center;
}

.about-col p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-col ul {
  padding-left: 20px;
  list-style-type: disc; /* standard bullet points */
}

.about-img img {
  width: 100%;
  margin-top: 24px;
  border-radius: 8px;
  object-fit: cover;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr; /* tablet: 2 columns */
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr; /* mobile: stack */
  }
}

/* ---------------- Freeze Section ---------------- */
.freeze-section {
  position: relative;
  /* background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80"); */
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)) , url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80") center center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* sticky effect */
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;  
}

.freeze-section h2 {
  font-size: 56px;
  margin-bottom: 15px;
  color: #fff;
}

.freeze-section p {
  font-size: 24px;
  line-height: 1.6;
  color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
  .freeze-content h2 {
    font-size: 26px;
  }
  .freeze-content p {
    font-size: 16px;
  }
}

/* ---------------- Features Section ---------------- */
.features-section {
  width: 100%;
  background: #fff;           /* Full-width white background */
  padding: 60px 20px;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-box {
  flex: 1 1 calc(50% - 30px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #cc6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
  text-align: left;
}

.feature-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 100%;
  }
}

/* ===== Freeze Call Section ===== */
.freeze-call {
  width: 100%;
  background: #002147; /* deep navy for contrast */
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

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

.freeze-text {
  flex: 1;
}

.freeze-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffcc00;
}

.freeze-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.freeze-text .phone {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #ffcc00;
}

.freeze-image {
  flex: 1;
  position: relative;
}

.freeze-image img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -50px; /* push down a little */
  right: -40px; /* stick out of section */
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .freeze-container {
    flex-direction: column;
    text-align: center;
  }

  .freeze-image img {
    right: 0;
    top: 20px;
    margin-top: 20px;
  }
}

/* CTA form */
.cta-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  outline: none;
}

.cta-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  background: #ff7f00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-form button:hover {
  background: black;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
  }
}

/* ===== Scroll Animation Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
