/* ============================================
   CURE BATUMI - About Page Styles
   Author: Gocha Shevardnadze
   Company: Fix-Dev.com
   ============================================ */

/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('../images/contact-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .container {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.1;
}

.about-hero p {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.who-we-are-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin-bottom: 60px;
}

.content-block {
  margin-bottom: 50px;
}

.content-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin-bottom: 30px;
}

.content-text {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.5;
  max-width: 1200px;
  margin: 0 auto;
}

/* Founder Section */
.founder-section {
  padding: 80px 0;
  background: linear-gradient(271deg, rgba(234, 247, 255, 0.8) 0%, rgba(190, 227, 248, 1) 100%);
}

.founder-container {
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 86px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.founder-header {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.founder-label {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

.divider-line {
  width: 100%;
  max-width: 841px;
  height: 1px;
  background-color: #d0d0d0;
}

.founder-title {
  font-size: 64px;
  font-weight: 700;
  color: #262626;
  line-height: 1.2;
}

.founder-description {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

.founder-features {
  display: flex;
  gap: 65px;
  align-items: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 150px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-text {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
}

.feature-subtext {
  font-size: 12px;
  font-weight: 400;
}

/* Course Info */
.course-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 727px;
}

.course-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}

.course-description {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  padding: 12px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.accordion-toggle {
  width: 48px;
  height: 46px;
  border: 1px solid #7ec8e3;
  border-radius: 50%;
  background-color: transparent;
  color: #7ec8e3;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-toggle:hover {
  background-color: #7ec8e3;
  color: #ffffff;
}

.accordion-content {
  padding: 8px 0 0 0;
  font-size: 20px;
  color: #000000;
  display: none;
  line-height: 1.6;
}

.accordion-item.expanded .accordion-content {
  display: block;
}

.accordion-item.expanded .accordion-toggle {
  background-color: #7ec8e3;
  color: #ffffff;
}

.accordion-divider {
  height: 1px;
  background-color: #d0d0d0;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

/* Call Button */
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  height: 70px;
  background-color: #ffffff;
  border: none;
  border-radius: 35px;
  font-size: 28px;
  font-weight: 700;
  color: #5dade2;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn:hover {
  background-color: #5dade2;
  color: #ffffff;
}

.call-btn:hover .phone-icon path {
  stroke: #ffffff;
}

.phone-icon {
  width: 25px;
  height: 26px;
  flex-shrink: 0;
}

/* CTA Button */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  height: 70px;
  background-color: #5dade2;
  border: none;
  border-radius: 35px;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #4a9bc9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 173, 226, 0.3);
}

.contact-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

/* Founder Image */
.founder-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.founder-image {
  width: 455px;
  height: 624px;
  object-fit: cover;
  border-radius: 10px;
}

.experience-badge {
    left: 268px;
}

.experience-number {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.experience-text {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

/* What We Offer Section */
.what-we-offer-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.what-we-offer-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  text-align: center;
}

.offer-cards {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 80px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
  max-width: 327px;
}

.offer-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background-color: #EAF7FF;
  border-radius: 50%;
  padding: 15px;
}

.offer-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.offer-card-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}

.offer-details {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-detail-item {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.offer-detail-item strong {
  font-weight: 700;
}

/* Why Choose Section */
.why-choose-section {
  padding: 20px 0px 90px 0px;
  background-color: #ffffff;
}

.why-choose-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.5;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
  }

  .founder-image-wrapper {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 48px;
  }

  .about-hero p {
    font-size: 20px;
  }

  .founder-title {
    font-size: 48px;
  }

  .offer-cards {
    gap: 40px;
  }

  .call-btn {
    width: 100%;
    max-width: 370px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 240px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    font-size: 18px;
  }

  .who-we-are-section,
  .founder-section,
  .what-we-offer-section,
  .why-choose-section {
    padding: 0 20px 60px;
  }

  .who-we-are-section .section-title,
  .what-we-offer-section .section-title,
  .why-choose-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .content-subtitle {
    font-size: 28px;
  }

  .content-text {
    font-size: 18px;
  }

  .founder-container {
    padding: 0 20px;
  }

  .founder-title {
    font-size: 36px;
  }

  .founder-description {
    font-size: 18px;
  }

  .founder-features {
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
  }

  .feature-item {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
  }

  .feature-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .feature-subtext {
    font-size: 10px;
  }

  .course-title {
    font-size: 28px;
  }

  .course-description {
    font-size: 18px;
  }

  .accordion-title {
    font-size: 20px;
  }

  .accordion-content {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .call-btn,
  .cta-btn {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    height: 56px;
    border-radius: 28px;
    gap: 12px;
    font-weight: 600;
  }

  .phone-icon,
  .contact-icon {
    width: 22px;
    height: 22px;
  }

  .founder-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .experience-badge {
      width: 70px;
      height: 70px;
      bottom: 115px;
      left: 167px;
  }
  .experience-number {
    font-size: 28px;
  }

  .experience-text {
    font-size: 20px;
  }

  .offer-cards {
    gap: 20px;
    margin-top: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }

  .offer-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
    gap: 15px;
  }

  .offer-card:nth-child(3) {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .offer-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .offer-card-title {
    font-size: 22px;
  }

  .offer-card-text {
    font-size: 16px;
  }

  .offer-detail-item {
    font-size: 18px;
  }

  .why-choose-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 240px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero p {
    font-size: 20px;
  }

  .who-we-are-section,
  .founder-section,
  .what-we-offer-section,
  .why-choose-section {
    padding: 40px 20px 30px;
  }

  .founder-title {
    font-size: 28px;
  }

  .call-btn,
  .cta-btn {
    font-size: 20px;
    height: 50px;
    padding: 10px;
  }

  .offer-cards {
    gap: 15px;
    padding: 0 15px;
  }

  .offer-card {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }

  .offer-card:nth-child(3) {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }

  .offer-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
  }

  .offer-card-title {
    font-size: 18px;
  }

  .offer-card-text {
    font-size: 14px;
  }
}
