/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --navy: #101b2d;
  --gold: #c5a46d;
  --gold-light: #e0c993;
  --cream: #f5f2eb;
  --white: #ffffff;
  --text: #29313c;
  --muted: #727780;
  --border: #ddd8cf;

  --services-bg: #ffffff;
  --service-card-bg: #f8fafc;
  --service-border: #d3d7dc;
  --service-title: #101026;
  --service-muted: #687381;
}

/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family: "Inter", sans-serif;

  color: var(--text);
  background: var(--white);

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* =========================================================
   GLOBAL SECTION
========================================================= */

.section {
  padding: 110px 0;
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

.eyebrow {
  margin-bottom: 20px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 4px;
  line-height: 1.3;

  text-transform: uppercase;
}

em {
  color: var(--gold);
  font-style: italic;
}

/* =========================================================
   GLOBAL BUTTON
========================================================= */

.btn {
  display: inline-block;

  padding: 14px 28px;

  background: var(--gold);
  color: var(--navy);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1.5px;
  line-height: 1.2;

  text-transform: uppercase;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* =========================================================
   SERVICES / WHAT WE PROVIDE
========================================================= */

.services-preview {
  width: 100%;

  margin: 0;
  padding: 55px 20px 45px;

  background: var(--services-bg);
}

/* =========================================================
   SERVICES HEADING
========================================================= */

.services-heading {
  margin: 0 auto 42px;

  text-align: center;
}

.services-heading h2 {
  margin: 0;

  color: #050505;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 42px;
  font-weight: 900;

  letter-spacing: 2px;
  line-height: 1.2;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.services-heading p {
  max-width: 900px;

  margin: 30px auto 0;

  color: #111;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 18px;
  font-weight: 400;

  font-style: italic;

  line-height: 1.55;
}

/* =========================================================
   SERVICES GRID
   5 CARDS ON DESKTOP
========================================================= */

.services-container {
  width: min(1580px, 96%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 18px;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  min-width: 0;
  min-height: 555px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--service-card-bg);

  border: 1px solid var(--service-border);
  border-radius: 5px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}

/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
  width: 100%;
  height: 245px;

  flex-shrink: 0;

  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

/* =========================================================
   SERVICE CARD CONTENT
========================================================= */

.service-card-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 30px 30px 27px;
}

.service-card-content h3 {
  margin: 0 0 16px;

  color: var(--service-title);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;
  font-weight: 700;

  line-height: 1.2;
}

.service-card-content p {
  margin: 0;

  color: var(--service-muted);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 17px;
  font-weight: 400;

  line-height: 1.5;
}

/* =========================================================
   SERVICE DURATION
========================================================= */

.service-duration {
  margin-top: auto;
  padding-top: 32px;

  display: flex;
  align-items: center;

  gap: 7px;

  color: #8b949e;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  line-height: 1.4;
}

.service-duration span:first-child {
  color: inherit;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 19px;
  line-height: 1;
}

/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
  display: flex;
  justify-content: center;

  margin-top: 25px;
}

/* =========================================================
   KNOW MORE BUTTON
========================================================= */

.services-know-more {
  min-width: 160px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  background: #071a4d;
  color: #ffffff;

  border-radius: 10px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  font-weight: 700;

  line-height: 1.3;

  text-decoration: underline;
  text-underline-offset: 3px;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.services-know-more:hover {
  background: #102d6c;
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   SERVICES LARGE TABLET
========================================================= */

@media (max-width: 1100px) {
  .services-container {
    width: 94%;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
  }

  .service-card {
    min-height: 540px;
  }
}

/* =========================================================
   SERVICES TABLET
========================================================= */

@media (max-width: 800px) {
  .services-container {
    width: 94%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px;
  }

  .service-card {
    min-height: 530px;
  }
}

/* =========================================================
   SERVICES MOBILE
========================================================= */

@media (max-width: 650px) {
  .services-preview {
    padding: 45px 18px 40px;
  }

  .services-heading {
    margin-bottom: 35px;
  }

  .services-heading h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .services-heading p {
    margin-top: 24px;

    font-size: 15px;

    line-height: 1.55;
  }

  .services-container {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .service-card {
    min-height: 520px;
  }

  .service-image {
    height: 230px;
  }

  .service-card-content {
    padding: 25px 25px 24px;
  }

  .service-card-content h3 {
    font-size: 21px;
  }

  .service-card-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .service-duration {
    padding-top: 28px;

    font-size: 15px;
  }

  .services-know-more {
    min-width: 150px;

    padding: 11px 22px;

    font-size: 15px;
  }
}

/* =========================================================
   SERVICES SMALL PHONES
========================================================= */

@media (max-width: 400px) {
  .services-preview {
    padding: 40px 15px 35px;
  }

  .services-heading {
    margin-bottom: 30px;
  }

  .services-heading h2 {
    font-size: 26px;
  }

  .services-heading p {
    margin-top: 20px;

    font-size: 14px;
  }

  .service-image {
    height: 210px;
  }

  .service-card {
    min-height: 500px;
  }

  .service-card-content {
    padding: 22px;
  }

  .service-card-content h3 {
    font-size: 20px;
  }

  .service-card-content p {
    font-size: 14px;
  }

  .service-duration {
    font-size: 14px;
  }

  .services-know-more {
    min-width: 145px;

    padding: 10px 20px;

    font-size: 14px;
  }
}

/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 350px) {
  .services-preview {
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-heading h2 {
    font-size: 24px;
  }

  .services-heading p {
    font-size: 13px;
  }

  .services-container {
    gap: 20px;
  }

  .service-card {
    min-height: 480px;
  }

  .service-image {
    height: 195px;
  }

  .service-card-content {
    padding: 20px;
  }

  .service-card-content h3 {
    font-size: 19px;
  }

  .service-card-content p {
    font-size: 13px;
  }
}

















