@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 14px;
  scroll-behavior: smooth;

  --white:        #ffffff;
  --bg-1:         #ffffff;
  --bg-2:         #F7F5F0;
  --bg-gold-tint: #FDF8EE;

  --navy:         #11123B;
  --navy-mid:     #2a2c70;
  --gold:         #C4962A;
  --gold-light:   #E4B84A;
  --gold-pale:    #F5E6C0;

  --text:         #6B6B80;
  --text-dark:    #3A3A58;

  --border:       rgba(196, 150, 42, 0.18);
  --border-hover: rgba(196, 150, 42, 0.6);

  --shadow-sm:    0 4px 20px rgba(17, 18, 59, 0.07);
  --shadow-md:    0 12px 50px rgba(17, 18, 59, 0.11);
  --shadow-gold:  0 8px 40px rgba(196, 150, 42, 0.22);

  --gradient-gold: linear-gradient(135deg, #C4962A 0%, #E4B84A 100%);
  --gradient-hero: linear-gradient(140deg, #ffffff 0%, #F5EDD8 100%);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--bg-1);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

li { list-style: none; }

ol, ul, dl, p, h1, h2, h3, h4, h5, figure {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1, h2 { font-size: 18px; margin-bottom: 2rem; }

a { text-decoration: none; outline: 0; transition: color 0.3s ease; }

p { font-size: 14px; line-height: 1.8; color: var(--text); }

[hidden] { display: none !important; }

main { overflow: hidden; }

canvas { width: 100% !important; height: 100% !important; }

/* ── Utilities ── */
.d-flex              { display: flex; }
.justify-content-center { justify-content: center; }
.justify-space-between  { justify-content: space-between; }
.pos-r               { position: relative; }
.align-items-center  { align-items: center; }
.d-inline-block      { display: inline-block; }
.d-block             { display: block; }
.d-none              { display: none; }
.hide                { display: none !important; }
.overflow-hiidle     { overflow: hidden; }

.text        { color: var(--text); }
.t-accent    { color: var(--gold); }
.t-primary   { color: var(--navy); }
.t-right     { text-align: right; }
.t-left      { text-align: left; }
.t-center    { text-align: center; }
.t-white     { color: var(--white); }
.t-upper     { text-transform: uppercase; }
.fw-medium   { font-weight: 500; }
.small       { font-size: 10px; line-height: 14px; }

.bg-primary  { background: var(--bg-2); }
.bg-accent   { background: var(--gold); }
.bg-light    { background: var(--bg-2); }
.bg-gradient { background: var(--gradient-hero); }

.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1.5rem; }
.mt-5  { margin-top: 3rem; }
.ml-2  { margin-left: 0.5rem; }
.ml-4  { margin-left: 1.5rem; }
.mb-4  { margin-bottom: 1.5rem; }

/* ── Container ── */
.container {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

/* ── Card ── */
.card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(17, 18, 59, 0.07);
  position: relative;
  z-index: 1;
}

.shadow { box-shadow: var(--shadow-md); }

/* ── Section ── */
.section { padding: 60px 0; }

.sec-title {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 12px;
}

.sec-title.t-center {
  display: block;
  position: relative;
}

.sec-title.t-center::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 52px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.page-title { font-size: 32px; line-height: 36px; }

.title-tagline {
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.img-fluid { max-width: 100%; height: auto; }
.row-direction { flex-direction: column; }
.is-web { display: none; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 11px 28px;
  text-align: center;
  border-radius: 6px;
  vertical-align: middle;
  user-select: none;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.45s ease;
}

.btn:hover::after { left: 100%; }

.round { border-radius: 30px; }

.btn-accent {
  background: var(--gradient-gold);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(196, 150, 42, 0.35);
}

.btn-accent:hover {
  box-shadow: 0 8px 32px rgba(196, 150, 42, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-accent-border {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-accent-border:hover {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196, 150, 42, 0.35);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   FORM
════════════════════════════════ */
.form-control {
  position: relative;
  height: 3.5rem;
}

.form-input {
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 59, 0.2);
  font-size: 15px;
  padding: 1.1rem 0 0.5rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  position: relative;
  color: var(--navy);
  transition: border-color 0.3s ease;
}

.form-input:focus-visible { outline: 0; }

.form-input:focus {
  border-bottom-color: var(--gold);
}

.form-label {
  position: absolute;
  top: 0.85rem;
  left: 0;
  font-size: 14px;
  color: var(--text);
  transition: 0.3s;
  pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.5rem;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 10;
}

.form-textarea { height: 100%; }
.form-textarea .form-input { resize: none; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196, 150, 42, 0.15);
  min-height: 4rem;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(17, 18, 59, 0.06);
}

.header-wrap {
  height: 48px;
  align-items: center;
}

.brand-logo {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.3px;
}

.brand-logo em {
  color: var(--gold);
  font-style: normal;
}

.header .uil-bars {
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.3s ease;
}

.header .uil-bars:hover { color: var(--gold); }

/* ════════════════════════════════
   BANNER
════════════════════════════════ */
.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(196, 150, 42, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.banner-wrap { position: relative; z-index: 1; }

.banner-img {
  visibility: visible;
  -webkit-animation: border-transform 10s linear infinite alternate forwards;
  animation: border-transform 10s linear infinite alternate forwards;
  border-radius: 100%;
  transition: all 0.8s;
  transition-delay: 0.3s;
  filter: drop-shadow(0 20px 60px rgba(17, 18, 59, 0.15)) drop-shadow(0 0 40px rgba(196, 150, 42, 0.12));
}

.banner h1 {
  color: var(--navy);
  font-size: 68px;
  line-height: 1;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.banner span {
  margin: 18px 0;
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.banner p {
  margin-top: 10px;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 15px;
  max-width: 480px;
}

/* ════════════════════════════════
   ABOUT US
════════════════════════════════ */
#about-us { background: var(--bg-1); }

.about-us-wrap { column-gap: 60px; }

#about-us li {
  column-gap: 18px;
  margin-top: 26px;
  align-items: flex-start;
}

#about-us li h4 {
  font-size: 16px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}

#about-us li p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

#about-us li i {
  font-size: 40px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-img::before {
  content: "";
  position: absolute;
  border: 3px solid var(--gold-pale);
  left: -18px;
  top: -18px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 12px;
}

.about-img img {
  border-radius: 10px;
  display: block;
}

/* ════════════════════════════════
   WHAT WE OFFER  —  category cards
════════════════════════════════ */
#offered { background: var(--bg-2); }

#offered ul {
  column-gap: 20px;
  flex-wrap: wrap;
}

#offered li {
  background: var(--white);
  padding: 38px 28px 36px;
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 59, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  cursor: default;
  flex: 1 1 200px;
}

#offered li:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

#offered li:hover i {
  color: var(--gold);
  transform: scale(1.12) translateY(-3px);
}

#offered li:hover h4 { color: var(--gold); }

#offered i {
  color: var(--navy);
  display: block;
  font-size: 50px;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

#offered h4 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
}

#offered p {
  font-size: 14px;
  margin-top: 10px;
  color: var(--text);
  line-height: 1.8;
}

/* Gold accent bar at bottom of offered card */
#offered li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 20px 20px;
  transition: width 0.4s ease;
}

#offered li:hover::after { width: 100%; }

/* ════════════════════════════════
   EVENTS
════════════════════════════════ */
#events { background: var(--bg-gold-tint); }

#events ul { flex-wrap: wrap; }

#events li {
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 59, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  max-width: 380px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#events li:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.event-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

#events li h4 {
  font-size: 17px;
  margin-bottom: 14px;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--navy);
  font-family: "Playfair Display", serif;
}

#events .author {
  font-size: 13px;
  border-bottom: 1px solid rgba(17, 18, 59, 0.08);
  padding-bottom: 14px;
  color: var(--text);
}

#events .author i { color: var(--gold); }

#events p { font-size: 14px; padding-top: 14px; color: var(--text); flex: 1; }

#events .btn {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  align-self: flex-start;
}

#events .img-event {
  max-height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#events li:hover .img-event { transform: scale(1.05); }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
#testimonials { background: var(--bg-1); }

#testimonials .card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 59, 0.07);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

#testimonials .card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

#testimonials .card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 22px;
  font-size: 84px;
  color: var(--gold);
  opacity: 0.12;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

#testimonials .img-thumb {
  width: 58px;
  height: 58px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin-right: 16px;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
}

#testimonials .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#testimonials .card h4 {
  font-size: 15px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 3px;
}

.city-name {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-style: italic;
}

#testimonials .card p {
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.testimonials-wrap {
  flex-direction: column;
  margin-top: 60px;
  row-gap: 24px;
}

/* ════════════════════════════════
   CLIENTS
════════════════════════════════ */
#clients {
  padding: 50px 0;
}

.companies {
  justify-content: space-around;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 20px;
}

.companies img {
  opacity: 0.45;
  filter: grayscale(1);
  transition: all 0.35s ease;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.companies img:hover { opacity: 1; filter: grayscale(0); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-us { background: var(--bg-2); }

.contact-us .d-flex.mt-5 {
  align-items: stretch;
  column-gap: 30px;
}

.contact-form-wrap {
  flex-direction: column;
  gap: 2.5rem;
}

.contact-form.card {
  padding: 3rem;
  border-radius: 20px;
  flex: 1 1 0;
  width: auto;
  background: var(--white);
  border: 1px solid rgba(196, 150, 42, 0.15);
  box-shadow: var(--shadow-md);
}

.contact-form .btn {
  padding: 14px 0;
  width: 100%;
  justify-content: center;
  font-size: 15px;
}

.contact-us .img-holder {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(196, 150, 42, 0.12);
  min-height: 400px;
}

.contact-us .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 60px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.footer-wrap { padding-bottom: 20px; }

.link-wrap h4,
.link-wrap h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-family: "Playfair Display", serif;
}

.link-wrap h2 { color: var(--gold-light); font-size: 22px; }

.link-wrap .social { margin-top: 28px; }

.social { column-gap: 12px; font-size: 18px; }

.link-wrap .social i {
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.link-wrap .social i:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(196, 150, 42, 0.3);
}

.link-wrap ul { flex-flow: column; row-gap: 18px; }

.link-wrap a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.link-wrap a:hover { color: var(--gold-light); }

.link-wrap li i {
  font-size: 18px;
  margin-right: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer hr {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.footer .copyright {
  padding: 18px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes border-transform {
  0%,  100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  14%        { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
  28%        { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
  42%        { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
  56%        { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
  70%        { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
  84%        { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* ── Mobile  (< 768px) ── */
@media only screen and (max-width: 767px) {

  /* Section titles */
  .sec-title { font-size: 26px; line-height: 1.3; }
  .section   { padding: 48px 0; }

  /* ── Banner ── */
  .banner {
    padding-top: 80px;
    padding-bottom: 48px;
    min-height: auto;
    align-items: flex-start;
  }
  .banner-wrap {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }
  .banner h1    { font-size: 36px; line-height: 1.1; }
  .banner span  { font-size: 11px; letter-spacing: 3px; }
  .banner p     { font-size: 14px; max-width: 100%; margin-top: 12px; }
  .banner-img   { width: 220px; height: 220px; }
  .banner .content { order: 2; }
  .banner .pos-r   { order: 1; }

  /* ── About Us ── */
  .about-us-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .about-img {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .about-img img   { width: 100%; }
  .about-img::before { display: none; }

  /* ── Services (offered) ── */
  #offered ul   { flex-direction: column; gap: 16px; }
  #offered li   { flex: 1 1 100%; padding: 28px 22px; }

  /* ── Events ── */
  #events ul {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  #events li { max-width: 100%; width: 100%; }

  /* ── Testimonials ── */
  .testimonials-wrap { margin-top: 36px; row-gap: 18px; }

  /* ── Clients ── */
  #clients { padding: 40px 0; }
  .companies {
    justify-content: center;
    gap: 20px 28px;
    margin-top: 28px;
  }
  .companies img { height: 34px; }

  /* ── Contact ── */
  .contact-us .d-flex.mt-5 { flex-direction: column; }
  .contact-us .img-holder  { display: none; }
  .contact-form.card {
    width: 100%;
    flex: none;
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  /* ── Footer ── */
  .footer-wrap {
    display: flex;
    flex-direction: column;
  }
  .footer-wrap .link-wrap {
    width: 100% !important;
    margin-bottom: 32px;
    display: block;
  }
  .footer-wrap .link-wrap:last-child { margin-bottom: 0; }
}

/* ── Very small phones (< 400px) ── */
@media only screen and (max-width: 399px) {
  .banner h1  { font-size: 28px; }
  .banner-img { width: 180px; height: 180px; }
  .sec-title  { font-size: 22px; }
  .contact-form.card { padding: 1.25rem 1rem; }
}

@media only screen and (min-width: 576px) {
  .container { max-width: 540px; }
}

@media only screen and (min-width: 768px) {
  .container { max-width: 720px; }
}

@media only screen and (min-width: 992px) {
  :root { font-size: 16px; }

  p { font-size: 16px; line-height: 1.8; }

  .container { max-width: 960px; }

  .section { padding: 90px 0; }

  .sec-title {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .btn { padding: 14px 32px; }

  .banner { padding-top: 0; }
  .banner h1 { font-size: 92px; }

  .header-fixed { position: fixed; }
  .header-wrap { height: 60px; }

  .banner-wrap { column-gap: 80px; }

  #testimonials .card { max-width: 33%; }
  .testimonials-wrap {
    flex-direction: row;
    column-gap: 28px;
  }

  .footer { padding-top: 80px; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 60px;
    column-gap: 40px;
  }
  .footer .link-wrap { width: 25%; }
  .link-wrap p { max-width: 90%; font-size: 15px; }
  .footer .link-wrap:nth-child(2) { width: 18%; }
  .footer .link-wrap:nth-child(3) { width: 18%; }
  .footer .copyright { padding: 22px 0; font-size: 14px; }

  .is-web { display: block; }
}

@media only screen and (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media only screen and (min-width: 1600px) {
  .container { max-width: 1400px; }
}
