/* =====================================================
   CANONICAL OCEAN — CONTACT PAGE
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: #193a3e;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(63, 190, 190, 0.10),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(210, 190, 130, 0.08),
      transparent 28%
    ),
    #f6fbfa;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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


/* =====================================================
   COMMON
===================================================== */

.co-contact-page {
  overflow: hidden;
}

.co-contact-label,
.co-contact-overline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(0, 109, 119, .25);
  border-radius: 999px;
  color: #006d77;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.co-contact-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,.61,.36,1);
}

.co-contact-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


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

.co-contact-hero {
  position: relative;
  min-height: 720px;
  padding: 100px 0 80px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 109, 119, .18),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(210, 190, 130, .13),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f6fbfa,
      #e7f2ef
    );
}

.co-contact-hero-inner {
  width: min(1200px, 86%);
  margin: auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.co-contact-hero-copy {
  position: relative;
  z-index: 3;
}

.co-contact-hero-copy h1 {
  margin: 25px 0 25px;
  max-width: 700px;
  color: #193a3e;
  font-size: clamp(58px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -5px;
  font-weight: 700;
}

.co-contact-hero-copy h1 strong {
  display: block;
  color: #006d77;
  font-weight: 800;
}

.co-contact-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #557074;
  font-size: 15px;
  line-height: 1.9;
}

.co-contact-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.co-contact-primary-btn,
.co-contact-secondary-btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition: .3s ease;
}

.co-contact-primary-btn {
  color: white;
  background: #006d77;
  box-shadow: 0 15px 35px rgba(0,109,119,.20);
}

.co-contact-primary-btn:hover {
  transform: translateY(-4px);
  background: #193a3e;
}

.co-contact-secondary-btn {
  color: #193a3e;
  border: 1px solid rgba(25,58,62,.22);
  background: rgba(255,255,255,.45);
}

.co-contact-secondary-btn:hover {
  transform: translateY(-4px);
  border-color: #006d77;
  color: #006d77;
}


/* HERO VISUAL */

.co-contact-hero-visual {
  position: relative;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-contact-hero-visual img {
  position: relative;
  z-index: 3;
  width: min(330px, 65%);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(
    0 35px 35px rgba(0,50,55,.22)
  );
  transition: transform .6s ease;
}

.co-contact-hero-visual:hover img {
  transform: translateY(-12px) rotate(2deg);
}

.co-contact-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,109,119,.15);
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-color: rgba(210,190,130,.3);
}

.co-contact-drop {
  position: absolute;
  width: 280px;
  height: 280px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(63,190,190,.25),
      rgba(0,109,119,.05) 55%,
      transparent 70%
    );
  filter: blur(2px);
}

.co-contact-floating-card {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 65px;
  width: 210px;
  padding: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,109,119,.12);
  box-shadow: 0 25px 50px rgba(0,50,55,.12);
  backdrop-filter: blur(15px);
}

.co-contact-floating-card span {
  display: block;
  color: #006d77;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

.co-contact-floating-card strong {
  display: block;
  margin-top: 12px;
  color: #193a3e;
  font-size: 20px;
}

.co-contact-floating-card small {
  display: block;
  margin-top: 5px;
  color: #738689;
  font-size: 10px;
}

.co-contact-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #789093;
  font-size: 8px;
  letter-spacing: 2px;
}

.co-contact-scroll i {
  color: #006d77;
}


/* =====================================================
   INFO
===================================================== */

.co-contact-info {
  padding: 35px 0;
  background: #193a3e;
}

.co-contact-info-grid {
  width: min(1200px, 86%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.co-contact-info-card {
  min-height: 100px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  transition: .3s ease;
}

.co-contact-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.08);
}

.co-contact-info-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,190,190,.3);
  color: #63bec0;
}

.co-contact-info-card span {
  display: block;
  color: #83a2a5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.co-contact-info-card a,
.co-contact-info-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
}


/* =====================================================
   INTRO
===================================================== */

.co-contact-intro {
  width: min(1200px, 86%);
  margin: auto;
  padding: 130px 0 100px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
}

.co-contact-intro-number {
  color: #b2c5c6;
  font-size: 13px;
  font-weight: 700;
}

.co-contact-intro-content {
  max-width: 850px;
}

.co-contact-intro h2 {
  margin: 22px 0;
  color: #193a3e;
  font-size: clamp(45px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -3px;
}

.co-contact-intro h2 strong {
  color: #006d77;
}

.co-contact-intro p {
  max-width: 720px;
  color: #657c7f;
  font-size: 14px;
  line-height: 1.9;
}


/* =====================================================
   FORM
===================================================== */

.co-contact-form-section {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(63,190,190,.12),
      transparent 28%
    ),
    #e9f3f1;
}

.co-contact-form-wrap {
  width: min(1200px, 86%);
  margin: auto;
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.co-contact-form-heading h2 {
  margin: 22px 0 15px;
  color: #193a3e;
  font-size: clamp(42px, 4vw, 65px);
  line-height: .98;
  letter-spacing: -3px;
}

.co-contact-form-heading h2 strong {
  color: #006d77;
}

.co-contact-form-heading p {
  color: #6a8082;
  font-size: 13px;
  line-height: 1.8;
}

.co-contact-form {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,109,119,.10);
  box-shadow: 0 25px 60px rgba(0,60,65,.08);
}

.co-contact-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.co-contact-field-full {
  grid-column: 1 / -1;
}

.co-contact-field label {
  color: #193a3e;
  font-size: 11px;
  font-weight: 700;
}

.co-contact-field input,
.co-contact-field select,
.co-contact-field textarea {
  width: 100%;
  border: 1px solid #d6e1df;
  outline: none;
  border-radius: 3px;
  padding: 15px;
  color: #193a3e;
  background: #fff;
  font: inherit;
  font-size: 12px;
  transition: .25s ease;
}

.co-contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.co-contact-field input:focus,
.co-contact-field select:focus,
.co-contact-field textarea:focus {
  border-color: #006d77;
  box-shadow: 0 0 0 3px rgba(0,109,119,.07);
}

.co-contact-submit {
  grid-column: 1 / -1;
  min-height: 55px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #006d77;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.co-contact-submit i {
  margin-left: 10px;
}

.co-contact-submit:hover {
  transform: translateY(-3px);
  background: #193a3e;
  box-shadow: 0 15px 30px rgba(0,60,65,.15);
}

.co-contact-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #006d77;
  font-size: 11px;
  text-align: center;
}


/* =====================================================
   SERVICES
===================================================== */

.co-contact-services {
  width: min(1200px, 86%);
  margin: auto;
  padding: 130px 0;
}

.co-contact-section-heading {
  max-width: 800px;
}

.co-contact-section-heading h2 {
  margin: 22px 0 50px;
  color: #193a3e;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -3px;
}

.co-contact-section-heading h2 strong {
  color: #006d77;
}

.co-contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.co-contact-service-card {
  position: relative;
  min-height: 370px;
  padding: 30px;
  border: 1px solid rgba(0,109,119,.12);
  background: rgba(255,255,255,.7);
  overflow: hidden;
  transition: .4s ease;
}

.co-contact-service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(63,190,190,.08);
  transition: .5s ease;
}

.co-contact-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,109,119,.25);
  box-shadow: 0 25px 50px rgba(0,60,65,.10);
}

.co-contact-service-card:hover::before {
  transform: scale(2);
}

.co-contact-service-number {
  color: #a1b7b8;
  font-size: 10px;
  font-weight: 700;
}

.co-contact-service-icon {
  width: 55px;
  height: 55px;
  margin-top: 40px;
  display: grid;
  place-items: center;
  color: #006d77;
  border: 1px solid rgba(0,109,119,.2);
}

.co-contact-service-card h3 {
  margin: 25px 0 12px;
  color: #193a3e;
  font-size: 21px;
}

.co-contact-service-card p {
  color: #718487;
  font-size: 12px;
  line-height: 1.8;
}

.co-contact-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #006d77;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}

.co-contact-service-card a i {
  transition: .3s ease;
}

.co-contact-service-card:hover a i {
  transform: translateX(5px);
}


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

.co-contact-story {
  width: min(1200px, 86%);
  margin: 0 auto 130px;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: #193a3e;
  overflow: hidden;
}

.co-contact-story-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.co-contact-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.co-contact-story:hover .co-contact-story-image img {
  transform: scale(1.05);
}

.co-contact-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,30,35,.05),
      rgba(0,30,35,.55)
    );
}

.co-contact-story-mark {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.co-contact-story-content {
  padding: 65px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.co-contact-story-content .co-contact-label {
  color: #63bec0;
  border-color: rgba(99,190,192,.35);
}

.co-contact-story-content h2 {
  margin: 25px 0;
  color: white;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -3px;
}

.co-contact-story-content h2 strong {
  color: #63bec0;
}

.co-contact-story-content p {
  color: #a8bcbe;
  font-size: 12px;
  line-height: 1.9;
}

.co-contact-outline-btn {
  width: fit-content;
  margin-top: 25px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  font-size: 10px;
  font-weight: 700;
  transition: .3s ease;
}

.co-contact-outline-btn:hover {
  background: #63bec0;
  color: #193a3e;
  border-color: #63bec0;
}


/* =====================================================
   PROCESS
===================================================== */

.co-contact-process {
  padding: 120px 0;
  background: #e9f3f1;
}

.co-contact-process > .co-contact-section-heading {
  width: min(1200px, 86%);
  margin: auto;
}

.co-contact-process-grid {
  width: min(1200px, 86%);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.co-contact-process-card {
  min-height: 280px;
  padding: 28px;
  background: #f8fbfa;
  border: 1px solid rgba(0,109,119,.1);
  transition: .35s ease;
}

.co-contact-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,60,65,.08);
}

.co-contact-process-card > span {
  color: #a2b6b7;
  font-size: 10px;
  font-weight: 700;
}

.co-contact-process-card > i {
  display: block;
  margin: 40px 0 20px;
  color: #006d77;
  font-size: 22px;
}

.co-contact-process-card h3 {
  margin: 0 0 10px;
  color: #193a3e;
  font-size: 18px;
}

.co-contact-process-card p {
  color: #718487;
  font-size: 11px;
  line-height: 1.8;
}


/* =====================================================
   FAQ
===================================================== */

.co-contact-faq {
  width: min(1200px, 86%);
  margin: auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.co-contact-faq-heading h2 {
  margin: 22px 0 15px;
  color: #193a3e;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -3px;
}

.co-contact-faq-heading h2 strong {
  color: #006d77;
}

.co-contact-faq-heading p {
  color: #718487;
  font-size: 12px;
  line-height: 1.8;
}

.co-contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-contact-faq-item {
  border: 1px solid #dbe5e3;
  background: white;
  transition: .3s ease;
}

.co-contact-faq-item:hover {
  border-color: rgba(0,109,119,.25);
}

.co-contact-faq-item button {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  color: #193a3e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.co-contact-faq-item button span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #d7e2e0;
  border-radius: 50%;
  color: #006d77;
  transition: .3s ease;
}

.co-contact-faq-item.open button span {
  transform: rotate(45deg);
  background: #006d77;
  color: white;
}

.co-contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.co-contact-faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: #718487;
  font-size: 11px;
  line-height: 1.8;
}


/* =====================================================
   FINAL CTA
===================================================== */

.co-contact-final {
  position: relative;
  min-height: 450px;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(63,190,190,.16),
      transparent 35%
    ),
    #193a3e;
}

.co-contact-final-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(99,190,192,.12);
  border-radius: 50%;
}

.co-contact-final-content {
  position: relative;
  z-index: 2;
}

.co-contact-final .co-contact-label {
  color: #63bec0;
  border-color: rgba(99,190,192,.3);
}

.co-contact-final h2 {
  margin: 25px 0 15px;
  color: white;
  font-size: clamp(45px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -4px;
}

.co-contact-final h2 strong {
  display: block;
  color: #63bec0;
}

.co-contact-final p {
  margin: 0 auto 30px;
  max-width: 500px;
  color: #9eb5b7;
  font-size: 12px;
  line-height: 1.8;
}

.co-contact-final-btn {
  min-height: 55px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #193a3e;
  background: #63bec0;
  font-size: 11px;
  font-weight: 700;
  transition: .3s ease;
}

.co-contact-final-btn:hover {
  transform: translateY(-4px);
  background: white;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .co-contact-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .co-contact-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .co-contact-hero-visual {
    height: 480px;
  }

  .co-contact-floating-card {
    right: 8%;
  }

  .co-contact-info-grid,
  .co-contact-service-grid,
  .co-contact-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .co-contact-form-wrap,
  .co-contact-faq {
    grid-template-columns: 1fr;
  }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .co-contact-hero {
    min-height: auto;
    padding: 75px 0 55px;
  }

  .co-contact-hero-inner,
  .co-contact-info-grid,
  .co-contact-intro,
  .co-contact-form-wrap,
  .co-contact-services,
  .co-contact-story,
  .co-contact-process > .co-contact-section-heading,
  .co-contact-process-grid,
  .co-contact-faq {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .co-contact-hero-inner {
    gap: 15px;
  }

  .co-contact-hero-copy h1 {
    margin-top: 22px;
    font-size: 53px;
    letter-spacing: -3px;
  }

  .co-contact-hero-copy p {
    font-size: 11px;
    line-height: 1.8;
  }

  .co-contact-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .co-contact-primary-btn,
  .co-contact-secondary-btn {
    width: 100%;
  }

  .co-contact-hero-visual {
    height: 430px;
  }

  .co-contact-hero-visual img {
    width: 180px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
  }

  .co-contact-floating-card {
    right: 5px;
    bottom: 20px;
    width: 175px;
    padding: 15px;
  }

  .co-contact-floating-card strong {
    font-size: 17px;
  }

  .co-contact-scroll {
    display: none;
  }


  .co-contact-info {
    padding: 18px 0;
  }

  .co-contact-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .co-contact-info-card {
    min-height: 80px;
    padding: 15px;
  }


  .co-contact-intro {
    padding: 80px 0;
    grid-template-columns: 35px 1fr;
    gap: 15px;
  }

  .co-contact-intro h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

.co-contact-intro p {
    font-size: 11px;
  }

  
  
  .co-contact-form-section {
    padding: 75px 0;
  }

  .co-contact-form-wrap {
    gap: 35px;
  }

  .co-contact-form-heading h2 {
    font-size: 43px;
  }

  .co-contact-form {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .co-contact-field-full {
    grid-column: auto;
  }

  .co-contact-submit {
    grid-column: auto;
  }

  .co-contact-form-note {
    grid-column: auto;
  }


  .co-contact-services {
    padding: 80px 0;
  }

  .co-contact-section-heading h2 {
    margin-bottom: 35px;
    font-size: 43px;
    letter-spacing: -2px;
  }

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

  .co-contact-service-card {
    min-height: 320px;
  }


  .co-contact-story {
    margin-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .co-contact-story-image {
    min-height: 350px;
  }

  .co-contact-story-content {
    padding: 45px 25px;
  }

  .co-contact-story-content h2 {
    font-size: 42px;
  }


  .co-contact-process {
    padding: 80px 0;
  }

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


  .co-contact-faq {
    padding: 80px 0;
    gap: 40px;
  }

  .co-contact-faq-heading h2 {
    font-size: 42px;
  }


  .co-contact-final {
    min-height: 400px;
    padding: 75px 16px;
  }

  .co-contact-final h2 {
    font-size: 46px;
    letter-spacing: -3px;
  }

  .co-contact-final-btn {
    width: 100%;
    justify-content: center;
    font-size: 9px;
  }

}
contact/script.js