/* ==========================================
   GOOGLE FONT
========================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ==========================================
   RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fbff;
  color: #1f2937;
  line-height: 1.6;
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #2563eb;
  cursor: pointer;
}


.navbar {
  height: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 8%;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(37, 99, 235, 0.08);

  position: sticky;
  top: 0;

  z-index: 999;
}

.logo img {
  width: 70px;

  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.08);
}

nav {
  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #374151;

  font-weight: 600;

  transition: 0.3s;
}

nav a:hover {
  color: #2563eb;
}

/*=========================
      BUTTONS
=========================*/

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  border: none;

  padding: 14px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.35s;

  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.25);
}

.btn-outline {
  background: #fff;

  border: 2px solid #2563eb;

  color: #2563eb;

  padding: 14px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #2563eb;

  color: #fff;

  transform: translateY(-5px);
}



/* ===========================
   BACK TO HOME
=========================== */

.back-home {
  position: fixed;
  top: 25px;
  left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  text-decoration: none;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-home i {
  font-size: 14px;
}

.back-home:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  transform: translateX(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* ==========================================
   CONTAINER
========================================== */

.container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}

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

.contact-hero {
  padding: 120px 20px 90px;

  text-align: center;

  background:
    radial-gradient(
      circle at top right,
      rgba(99, 102, 241, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(139, 92, 246, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff, #f7faff);
}

.hero-tag {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background: #eef2ff;

  color: #6366f1;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 25px;
}

.contact-hero h1 {
  font-size: 56px;

  font-weight: 800;

  margin-bottom: 25px;

  line-height: 1.1;

  background: linear-gradient(90deg, #111827, #374151, #6366f1);

  background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.contact-hero p {
  max-width: 760px;

  margin: auto;

  color: #64748b;

  font-size: 20px;

  line-height: 1.9;
}

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

.contact-section {
  padding: 90px 0;
}

.contact-section h2 {
  text-align: center;

  font-size: 44px;

  font-weight: 800;

  margin-bottom: 20px;
}

.section-text {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 70px;

  color: #64748b;

  font-size: 18px;
}

/* ==========================================
   HORIZONTAL CARD
========================================== */

.contact-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  background: #fff;

  padding: 35px;

  margin-bottom: 30px;

  border-radius: 24px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);

  transition: 0.35s;

  position: relative;

  overflow: hidden;
}

.contact-row::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 6px;

  height: 100%;

  background: linear-gradient(#6366f1, #8b5cf6);
}

.contact-row:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

/* ==========================================
   LEFT SIDE
========================================== */

.left {
  display: flex;

  align-items: center;

  gap: 25px;

  min-width: 320px;
}

.icon {
  width: 78px;

  height: 78px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  flex-shrink: 0;
}

.hr {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.manager {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.social {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.office {
  background: linear-gradient(135deg, #10b981, #059669);
}

.left h3 {
  font-size: 28px;

  margin-bottom: 6px;
}

.left span {
  color: #6b7280;

  font-size: 15px;
}

/* ==========================================
   RIGHT SIDE
========================================== */

.right {
  display: flex;

  gap: 40px;

  flex: 1;

  justify-content: space-between;
}

.person {
  flex: 1;
}

.person h4 {
  font-size: 20px;

  margin-bottom: 12px;
}

.person p {
  margin: 8px 0;

  color: #6b7280;

  font-size: 15px;
}

.person i {
  color: #6366f1;

  width: 20px;
}

.person a {
  display: inline-block;

  margin-top: 15px;

  color: #0a66c2;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.person a:hover {
  color: #2563eb;
}

/* ==========================================
   SOCIAL
========================================== */

.social-icons {
  display: flex;

  gap: 18px;

  margin-left: auto;
}

.social-icons a {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 24px;

  transition: 0.35s;
}

.social-icons a:nth-child(1) {
  background: #25d366;
}

.social-icons a:nth-child(2) {
  background: #0a66c2;
}

.social-icons a:nth-child(3) {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icons a:nth-child(4) {
  background: #1877f2;
}

.social-icons a:nth-child(5) {
  background: #ea4335;
}

.social-icons a:hover {
  transform: translateY(-8px) scale(1.08);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   OFFICE
========================================== */

.office-address {
  flex: 1;

  color: #4b5563;

  font-size: 16px;

  line-height: 2;
}

.office-address strong {
  color: #111827;

  font-size: 20px;
}

/* ==========================================
   SCROLL ANIMATION
========================================== */

.card {
  opacity: 0;

  transform: translateY(60px);

  transition: all 0.8s ease;
}

.card.show {
  opacity: 1;

  transform: translateY(0);
}

/* ==========================================
   FLOATING ICON ANIMATION
========================================== */

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.icon {
  animation: floatIcon 3s ease-in-out infinite;
}

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

@media (max-width: 1100px) {
  .contact-row {
    flex-direction: column;

    align-items: flex-start;
  }

  .right {
    width: 100%;

    flex-direction: column;

    gap: 30px;
  }

  .social-icons {
    margin-left: 0;

    margin-top: 20px;
  }

  .office-address {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }

  .menu-toggle {
  display: block;
}

   .navbar {
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo img {
    width: 55px;
  }

  /* Hide Get Started button */
  .navbar .btn-primary {
    display: none;
  }

  /* Show hamburger icon */
  .menu-toggle {
    display: block;
  }

  /* Navigation Menu */
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;

    max-height: 0;
    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  /* Open menu */
  nav.active {
    max-height: 450px;
    padding: 15px 0;
    background: #ffffff;
    color: #2563eb;
  }

  nav a {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
  }

  nav a:hover {
    background: #f5f9ff;
    color: #2563eb;
  } 

  .contact-hero {
    padding: 90px 20px 70px;
  }

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

  .contact-hero p {
    font-size: 17px;
  }

  .contact-section {
    padding: 70px 20px;
  }

  .contact-section h2 {
    font-size: 34px;
  }

 .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  text-align: center;
  gap: 15px;
}

.left div {
  width: 100%;
  text-align: center;
}

.left h3,
.left span {
  width: 100%;
  text-align: center;
}

  .left h3 {
    font-size: 24px;
  }

  .contact-row {
    padding: 25px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h2 {
    font-size: 30px;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    grid-column: auto;
  }

  .contact-form button {
    grid-column: auto;

    width: 100%;
  }

  .map-section {
    padding: 70px 20px;
  }

  .map-section h2 {
    font-size: 32px;
  }

  .map-section iframe {
    height: 350px;
  }

  .social-icons {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;
  }

  .social-icons a {
    width: 55px;

    height: 55px;

    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 12px;
  }

  .left h3 {
    font-size: 22px;
  }

  .person h4 {
    font-size: 18px;
  }

  .person p {
    font-size: 14px;
  }

  .office-address {
    font-size: 14px;
  }

  .map-section iframe {
    height: 300px;
  }
}
