/* style/style.css - single CSS file, completely fresh design for activities */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fcfcfc;
  color: #1e2b37;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER (unchanged) === */
header {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e6f0f5;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: #f0f9ff;
  border-radius: 14px;
  padding: 6px;
}

.company-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0277bd;
  letter-spacing: -0.3px;
  line-height: 1.3;
  max-width: 350px;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: #1e2b37;
  font-size: 1.1rem;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
}

nav a:hover {
  color: #0277bd;
  border-bottom-color: #0277bd;
}

/* === HERO SECTION (unchanged) === */
.hero {
  background: linear-gradient(145deg, #e1f0fa 0%, #ffffff 80%);
  padding: 50px 0 70px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-img {
  max-width: 380px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 30px -15px rgba(2,119,189,0.3);
  background: #cbe5f4;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.6rem;
  color: #01579b;
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.3rem;
  color: #2c4859;
  margin-bottom: 28px;
}

.btn {
  background: #0277bd;
  color: white;
  padding: 14px 36px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(2,119,189,0.35);
}

.btn:hover {
  background: #01579b;
  transform: scale(1.03);
}

/* === ACTIVITIES SECTION — BRAND NEW DIFFERENT LAYOUT (NO IMAGES) === */
.activities {
  padding: 90px 0 100px;
  background: #ffffff;
}

.section-title {
  font-size: 2.2rem;
  color: #01579b;
  margin-bottom: 60px;
  position: relative;
  padding-right: 20px;
  border-right: 8px solid #0277bd;
  text-align: right;
}

/* unique two-column layout */
.activity-unique {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* right side: vertical timeline (stylish) */
.activity-timeline {
  flex: 1 1 280px;
  background: #f3f9ff;
  padding: 30px 25px;
  border-radius: 40px;
  box-shadow: inset 0 2px 8px rgba(0,100,150,0.05), 0 15px 25px rgba(0,70,120,0.1);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #9fd0f0, transparent);
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #0277bd;
  box-shadow: 0 5px 15px rgba(2,119,189,0.25);
  border: 2px solid white;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content span {
  font-weight: 700;
  font-size: 1.2rem;
  color: #01579b;
  background: white;
  padding: 8px 18px;
  border-radius: 40px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.02);
  display: inline-block;
  border: 1px solid #d2e9ff;
}

/* left side: detailed description cards */
.activity-descriptions {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  align-content: start;
}

.desc-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 28px 25px;
  box-shadow: 0 18px 30px -8px rgba(1, 87, 120, 0.12);
  border: 1px solid #e3f0fa;
  transition: 0.2s;
}

.desc-card:hover {
  transform: translateY(-6px);
  border-color: #9fd0f0;
  box-shadow: 0 25px 30px -10px #a1c9e6;
}

.desc-card h3 {
  font-size: 1.4rem;
  color: #01579b;
  margin-bottom: 18px;
  border-bottom: 3px solid #cde4f5;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desc-card h3 i {
  color: #0277bd;
  font-size: 1.6rem;
}

.desc-card p {
  color: #1f3a4b;
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: justify;
}

/* === CONTACT SECTION (unchanged, images allowed) === */
.contact {
  background: #f2f8fe;
  padding: 70px 0;
  border-radius: 50px 50px 0 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1 1 280px;
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.02);
}

.contact-info h3 {
  font-size: 2rem;
  color: #01579b;
  margin-bottom: 25px;
}

.contact-info p {
  margin: 15px 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info i {
  color: #0277bd;
  width: 30px;
  font-size: 1.5rem;
}

.contact-info a {
  color: #1e2b37;
  text-decoration: none;
  border-bottom: 1px dotted;
}

.contact-img {
  max-width: 200px;
  margin-top: 30px;
  border-radius: 30px;
  opacity: 0.9;
}

.contact-form {
  flex: 1 1 380px;
  background: white;
  border-radius: 30px;
  padding: 40px 35px;
  box-shadow: 0 20px 35px rgba(0,70,120,0.08);
}

.contact-form h3 {
  font-size: 2rem;
  color: #01579b;
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 15px 0 6px;
  color: #025c8c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #d6e9f5;
  border-radius: 20px;
  font-size: 1rem;
  transition: 0.2s;
  background: #f9fcff;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0277bd;
  outline: none;
  background: white;
}

.btn-submit {
  background: #0277bd;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 0;
  border: none;
  border-radius: 60px;
  margin-top: 28px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 14px #b3d9f0;
}

.btn-submit:hover {
  background: #01579b;
  transform: scale(1.02);
}

/* === FOOTER (unchanged) === */
footer {
  background: #102b36;
  color: #c7e1f0;
  padding: 25px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  height: 35px;
  opacity: 0.7;
}

/* === RTL small touches === */
select {
  background-position: left 1rem center !important;
}

/* === responsive === */
@media (max-width: 850px) {
  .activity-unique {
    flex-direction: column;
  }
  .timeline-item:not(:last-child)::after {
    right: 30px;
  }
}

@media (max-width: 700px) {
  .header-flex {
    flex-direction: column;
    gap: 15px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-content {
    justify-content: center;
    text-align: center;
  }
  .contact-flex {
    flex-direction: column;
  }
  .section-title {
    font-size: 1.8rem;
  }
  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}