/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --color-primary: #67BFBF;
  --color-text-heading: #4E5E68;
  --color-text-body: #000000;
  --color-text-white: #FFFFFF;
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F7F8FA;
  --color-footer-bg: #101828;
  --color-footer-text: #D1D5DC;
  
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 40px;
  --text-3xl: 50px;
  --text-4xl: 80px;
  
  /* Spacing */
  --container-max-width: 1440px;
  --container-padding: 84px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 22px;
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 934px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/aboutus-creteunlocked.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 60px;
  color: var(--color-text-white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0 100px;
  background-color: var(--color-bg-white);
}

.about__text {
  max-width: 1093px;
  margin: 0 auto;
  text-align: justify;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 22px;
  color: var(--color-text-body);
}

.about__text p {
  margin-bottom: 22px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 64px;
  color: var(--color-text-heading);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 70px;
}

/* ============================================
   KEY FEATURES SECTION
   ============================================ */
.features {
  padding: 0 0 100px;
  background-color: var(--color-bg-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 28px;
  color: var(--color-text-heading);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.feature-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 22px;
  color: var(--color-text-body);
  max-width: 340px;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
  padding: 43px 0;
  background-color: var(--color-bg-light);
  position: relative;
}

.social-section .container {
  max-width: 1200px;
}

.social-section__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0;
}

.social-section__image {
  flex: 0 0 auto;
  position: relative;
}

.phone-mockup {
  width: auto;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.social-section__text {
  flex: 0 1 auto;
  text-align: left;
  max-width: 350px;
}

.social-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-text-heading);
  margin-bottom: 16px;
}

.social-section__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 22px;
  color: var(--color-text-body);
  margin-bottom: 24px;
}

.social-section__buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-text-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn--facebook {
  background-color: #1877F2;
}

.social-btn--youtube {
  background-color: #FF0000;
}

.social-btn--tiktok {
  background-color: #000000;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 100px 0;
  background-color: var(--color-bg-white);
}

.stats__grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat-card {
  width: 290px;
  height: 290px;
  background-color: var(--color-primary);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 1;
  color: var(--color-text-white);
}

.stat-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 1.2;
  color: var(--color-text-white);
  text-transform: capitalize;
  margin-top: 8px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  padding: 0 0 100px;
  background-color: var(--color-bg-white);
}

.team__text {
  max-width: 1093px;
  margin: 0 auto 60px;
  text-align: justify;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 22px;
  color: var(--color-text-body);
}

.team__text p {
  margin-bottom: 22px;
}

.team__text p:last-child {
  margin-bottom: 0;
}

.team__photo {
  max-width: 1031px;
  margin: 0 auto;
}

.team__photo-placeholder {
  width: 100%;
  height: 472px;
  background-image: url('img/team-photo-creteunlocked.jpg');
  border-radius: var(--radius-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.team__photo-placeholder span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 64px;
  color: #ffffff;
  text-transform: capitalize;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
.keyboard-navigation *:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-primary: #008080;
    --color-text-heading: #000000;
  }
}

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-padding: 40px;
  }
  
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  
  .feature-card__description {
    max-width: 280px;
  }
  
  .stats__grid {
    gap: 40px;
  }
  
  .stat-card {
    width: 250px;
    height: 250px;
  }
  
  .stat-card__number {
    font-size: 60px;
  }
  
  .social-section__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .social-section__image {
    order: 1;
  }
  
  .social-section__text {
    order: 2;
    text-align: center;
    max-width: 500px;
  }
  
  .social-section__buttons {
    justify-content: center;
  }
  
  .phone-mockup {
    max-width: 280px;
  }
}

/* ============================================
   RESPONSIVE STYLES - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
    --text-2xl: 32px;
    --text-3xl: 36px;
  }
  
  .hero {
    height: 275px;
  }
  
  .hero__title {
    font-size: var(--text-3xl);
    line-height: 44px;
    padding: 0 20px;
  }
  
  .about {
    padding: 60px 0;
  }
  
  .about__text {
    text-align: left;
    max-width: 100%;
    padding: 0 8px;
  }
  
  .section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
    padding: 0 16px;
  }
  
  .features {
    padding: 0 0 60px;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }
  
  .feature-card__icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-card__title {
    font-size: var(--text-base);
  }
  
  .feature-card__description {
    max-width: 300px;
  }
  
  .stats {
    padding: 60px 0;
  }
  
  .stats__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .stat-card {
    width: 200px;
    height: 200px;
  }
  
  .stat-card__number {
    font-size: var(--text-4xl);
  }
  
  .team__text {
    max-width: 350px;
    margin-bottom: 40px;
  }
  
  .team__photo {
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }
  
  .team__photo-placeholder {
    height: 300px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  .team__photo-placeholder span {
    font-size: 28px;
  }
  
  .social-section {
    padding: 30px 0 40px;
  }
  
  .social-section__content {
    gap: 30px;
  }
  
  .social-section__text {
    max-width: 100%;
    padding: 0 16px;
  }
  
  .phone-mockup {
    max-width: 260px;
  }
  
  .social-section__title {
    font-size: var(--text-lg);
  }
  
  .social-section__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* Figma mobile: line 1 = Instagram, line 2 = Facebook, line 3 = YouTube + TikTok */
  .social-section__buttons .social-btn {
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .social-section__buttons .social-btn svg {
    width: 14px;
    height: 14px;
  }
  
  /* Instagram - row 1, spans both columns */
  .social-section__buttons .social-btn:nth-child(1) {
    grid-column: 1 / -1;
    width: 160px;
  }
  
  /* Facebook - row 2, spans both columns */
  .social-section__buttons .social-btn:nth-child(2) {
    grid-column: 1 / -1;
    width: 160px;
  }
  
  /* YouTube - row 3, left column */
  .social-section__buttons .social-btn:nth-child(3) {
    grid-column: 1;
    justify-self: end;
  }
  
  /* TikTok - row 3, right column */
  .social-section__buttons .social-btn:nth-child(4) {
    grid-column: 2;
    justify-self: start;
  }
}

/* ============================================
   RESPONSIVE STYLES - SMALL MOBILE
   ============================================ */
@media (max-width: 400px) {
  :root {
    --container-padding: 16px;
  }
  
  .hero__title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .section-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .stat-card {
    width: 180px;
    height: 180px;
  }
  
  .stat-card__number {
    font-size: 48px;
  }
  
  .stat-card__label {
    font-size: var(--text-base);
  }
  
  .team__text {
    text-align: left;
    max-width: 100%;
    padding: 0 8px;
  }
  
  .phone-mockup {
    max-width: 220px;
  }
  
  .social-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* ============================================
   ANIMATION DEFAULTS (ensure visibility)
   ============================================ */
.feature-card,
.stat-card,
.team__photo-placeholder,
.section-title,
.social-section__content {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-on-scroll:not(.animated) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}



@media (min-width: 1300px) {
	.hero::before{
		background-size: cover;
	}	
}	
@media (max-width: 1299px) {
	.hero::before{
		background-size: contain;
	}	
}