/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ================= NAVBAR (FIXED TAB BAR) ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  border-bottom: 1px solid #f1f5f9;
}

.navbar nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ================= HERO (FULL SCREEN) ================= */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: 80px; /* navbar height */
  color: #fff;
  overflow: hidden;
}

/* ===== HERO BACKGROUND LAYER (ONLY THIS ANIMATES) ===== */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

/* ================= HERO CONTENT (STABLE) ================= */

.hero-content {
  position: absolute;
  top: 8%;
  left: 22%;
  transform: translateY(-50%);
  max-width: 620px;
  z-index: 2;
}


.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  color:#e5e7eb;
  margin-bottom: 26px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid #ffffff;
  transition: all 0.25s ease;
}

/* subtle hover like reference */
.hero-btn:hover {
  background: transparent;
  color: #ffffff;
}


/* ================= HERO CONTROLS (STABLE) ================= */

/* ================= HERO CONTROLS ================= */

.hero-controls {
  position: absolute;
  right: 5%;
  bottom: 120px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

/* Circle buttons */
.hero-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9); /* default white */
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #000;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* Hover effect (professional) */
.hero-controls button:hover {
  background: #000;     /* hover color */
  color: #fff;          /* icon/text white */
  border-color: #000;
}

/* Active / pressed feel */
.hero-controls button:active {
  transform: scale(0.95);
}


/* ================= HERO DOTS (STABLE) ================= */

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  background: #aaa;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  cursor: pointer;
}

.hero-dots .active {
  background: #fff;
}

/* ================= HERO IMAGE ANIMATIONS ================= */
/* ONLY background animates — content NEVER moves */

/* Slide 2: Fade + Zoom */
.hero-bg.animate-fade-zoom {
  animation: fadeZoom 5s ease-in-out forwards;
}

@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(1.12); }
  30% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

/* Slide 3: Pan + Zoom */
.hero-bg.animate-pan {
  animation: panZoom 5s linear forwards;
}

@keyframes panZoom {
  0% { transform: scale(1.08) translateX(0); }
  100% { transform: scale(1) translateX(-20px); }
}

/* ================= IMPACT STATISTICS ================= */

.impact-stats {
  background: #fff;
  padding: 120px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-card {
  padding: 40px 30px;
  border-left: 3px solid #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 18px;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 500;
}

.stat-subtitle {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  display: block;
  margin-top: 8px;
}

/* ================= WHAT WE DO ================= */

.what-we-do {
  padding: 120px 80px;
  background: #f1f5f9;
}

.wwd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.wwd-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0f172a;
}

.wwd-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.wwd-container {
  display: flex;
  gap: 28px;
  overflow-x: auto;
}

.wwd-container::-webkit-scrollbar {
  display: none;
}

.wwd-card {
  min-width: 360px;
  background: #fafafa;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.wwd-card:hover {
  transform: translateY(-6px);
}

.wwd-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.wwd-content {
  padding: 22px;
}

/* ================= OUR STORY ================= */

.our-story {
  background: #fafbfc;
  padding: 120px 0;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-tag {
  font-size: 13px;
  color: #0d9488;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 16px;
}

.our-story-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
  line-height: 1.2;
}

.our-story-text p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 30px;
}

.story-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #0f172a;
  border: 1px solid #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}

.story-btn:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

/* Our Story image – fixed square box, image fills it, no empty space */
.our-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  background: #e2e8f0;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}

.our-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .our-story-grid {
    grid-template-columns: 1fr;
  }

  .our-story-image {
    max-width: 100%;
    margin-left: 0;
  }
}



/* ================= MILESTONES ================= */

.milestones {
  background: #e2e8f0;
  padding: 120px 80px;
}

.milestones-content {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.milestones-text {
  max-width: 600px;
}

.milestones-tag {
  font-size: 13px;
  color: #0d9488;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.milestones-text h2 {
  font-size: 42px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.milestones-text p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.milestones-year {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
}

.year-line {
  flex: 1;
  height: 2px;
  background: #d1d5db;
  position: relative;
}

.year-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #0f172a;
  border-radius: 50%;
}

.milestones-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.milestones-gallery .milestone-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #cbd5e1;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.milestones-gallery .milestone-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.milestones-gallery .milestone-item:hover img {
  transform: scale(1.06);
}

/* ================= FOOTER ================= */

.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 80px 80px 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col.footer-brand {
  max-width: 280px;
}

.footer-col h3.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.footer-company {
  font-weight: 600;
  color: #e5e7eb;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
}

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

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

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact li {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact li a {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom p {
  margin-bottom: 20px;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-description {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.8;
  color: #6b7280;
  text-align: left;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .impact-stats {
    padding: 80px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .milestones-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .milestones-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 70px;
  }

  .navbar nav a {
    margin-left: 15px;
    font-size: 12px;
  }

  .hero {
    margin-top: 70px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .impact-stats {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 48px;
  }

  .what-we-do {
    padding: 60px 20px;
  }

  .milestones {
    padding: 60px 20px;
  }

  .milestones-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 60px 20px 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .navbar nav {
    display: none; /* Hide nav on very small screens, can add hamburger menu later */
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .milestones-gallery {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-description {
    font-size: 11px;
  }
}
/* =====================================================
   HERO CONTENT – BOTTOM ALIGNED (FINAL OVERRIDE)
===================================================== */

.hero-content {
  top: auto !important;
  bottom: 22% !important;   /* ⬅️ main control point */
  left: 8% !important;
  transform: none !important;
  max-width: 620px;
}

/* Title */
.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Text */
.hero-content p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 26px;
}

/* Explore button */
.hero-btn {
  padding: 14px 34px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ================= PROFESSIONAL PROJECT GRID ================= */

/* ===== SLIDER STYLE ===== */

.wwd-container {
  display: flex;
  gap: 28px;
  overflow-x: auto;     /* scroll allowed */
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.wwd-container::-webkit-scrollbar {
  display: none;
}


/* each card width = 3 cards fit */
.wwd-card {
  min-width: calc(33.333% - 18px);
  flex-shrink: 0;
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 6px;
}

/* image */
.wwd-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* dark gradient overlay */
.wwd-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
}

/* text */
.wwd-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wwd-overlay p {
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 12px;
}

.wwd-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.3s ease;
}

.wwd-link:hover {
  transform: translateX(5px);
}

/* hover effects (professional feel) */
.wwd-card:hover img {
  transform: scale(1.08);
}

.wwd-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .wwd-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wwd-container {
    grid-template-columns: 1fr;
  }
}

.wwd-card:hover img {
  transform: scale(1.06);
  transition: 0.5s;
}


/* =================================================
   GLOBAL BOXED LAYOUT (AFTER HERO ONLY)
   HERO NOT TOUCHED
================================================= */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}


/* =================================================
   SECTION SPACING
================================================= */

.what-we-do,
.milestones,
.footer {
  padding-top: 110px;
  padding-bottom: 110px;
}


/* =================================================
   WHAT WE DO (Professional look)
================================================= */

.what-we-do {
  background: #f1f5f9;
}

.wwd-header h2 {
  font-size: 40px;
  font-weight: 600;
}

.wwd-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.wwd-arrows button:hover {
  background: #000;
  color: #fff;
}

.wwd-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}


/* =================================================
   MILESTONES
================================================= */

.milestones {
  background: #f5f6f8;
}

.milestones-text h2 {
  font-size: 42px;
  font-weight: 600;
}

.milestones-btn {
  padding: 14px 30px;
  background: #0f172a;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.milestones-btn:hover {
  background: #1e293b;
}


/* =================================================
   FOOTER IMPROVE
================================================= */

.footer {
  background: #1f2937;
  color: #cbd5e1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}


/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 1024px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .navbar nav {
    display: none; /* Hide nav on very small screens, can add hamburger menu later */
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .milestones-gallery {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-description {
    font-size: 11px;
  }
}

/* ================= ABOUT PAGE STYLES ================= */

/* About Hero Section */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero-images {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.image-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 500px;
}

.collage-item {
  position: absolute;
  width: 48%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collage-item:hover img {
  transform: scale(1.1);
}

.collage-item.top-left {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.collage-item.top-right {
  top: 0;
  right: 0;
  transform: rotate(5deg);
}

.collage-item.bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(5deg);
}

.collage-item.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(-5deg);
}

.collage-item:hover {
  z-index: 10;
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Legacy Statistics Section */
.stats-grid-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
}

.stat-item-about {
  padding: 40px 0;
}

.stat-number-about {
  font-size: 64px;
  font-weight: 700;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Arial', sans-serif;
}

.stat-label-about {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-hero-images {
    margin-left: 0;
    max-width: 100%;
  }

  .stats-grid-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .stat-number-about {
    font-size: 48px;
  }

  .stat-label-about {
    font-size: 16px;
  }

  .image-collage {
    max-width: 100%;
  }
}

/* ================= BOARD PAGE STYLES ================= */

.board-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.board-member-card {
  transition: transform 0.3s ease;
}

.board-member-card:hover {
  transform: translateY(-5px);
}

.board-member-image {
  transition: transform 0.3s ease;
}

.board-member-card:hover .board-member-image {
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
  .board-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .chairman-content {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .board-members-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .board-header h1 {
    font-size: 40px !important;
  }

  .chairman-header h2 {
    font-size: 24px !important;
  }
}

/* ================= TIMELINE PAGE STYLES ================= */

.timeline-slider {
  transition: transform 0.5s ease-in-out;
}

.timeline-nav-btn:hover {
  background: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.timeline-dot:hover {
  transform: scale(1.3);
}

.timeline-dot.active {
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 1024px) {
  .timeline-nav-btn {
    left: 10px !important;
    right: 10px !important;
    width: 40px !important;
    height: 40px !important;
  }

  .timeline-content {
    padding: 40px !important;
  }

  .timeline-header h1 {
    font-size: 40px !important;
  }
}

@media (max-width: 768px) {
  .timeline-header h1 {
    font-size: 32px !important;
  }

  .timeline-content h2 {
    font-size: 28px !important;
  }

  .timeline-achievements {
    grid-template-columns: 1fr !important;
  }
}

/* ================= CONTACT PAGE STYLES ================= */

.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-cards-grid {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d9488 !important;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #cbd5e1;
}

.submit-btn:active {
  transform: translateY(0) scale(0.98) !important;
}

@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-hero h1 {
    font-size: 48px !important;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 40px !important;
  }

  .contact-hero h1 {
    font-size: 36px !important;
  }

  .contact-hero p {
    font-size: 18px !important;
  }

  .contact-info,
  .contact-form-section {
    padding: 60px 40px !important;
  }

  .contact-info-side > div {
    padding: 40px !important;
  }

  .contact-info-side h3 {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 40px 20px !important;
  }

  .contact-hero h1 {
    font-size: 28px !important;
  }

  .contact-info,
  .contact-form-section {
    padding: 40px 20px !important;
  }

  .contact-card {
    padding: 30px !important;
  }

  .contact-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 28px !important;
  }
}
