*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:  #172b4e;
  --ice:   #f2f9fb;
  --black: #080c12;
}

html[data-theme="dark"] {
  --bg-page:        var(--black);
  --text-primary:   var(--ice);
  --text-secondary: rgba(242, 249, 251, 0.7);
  --nav-bg-top:      rgba(8, 12, 18, 0);
  --nav-bg-scrolled: var(--navy);
  --section-bg-alt: #0f1826;
  --border-soft:    rgba(242, 249, 251, 0.18);
}


html[data-theme="light"] {
  --bg-page:        var(--ice);
  --text-primary:   var(--navy);
  --text-secondary: rgba(23, 43, 78, 0.7);
  --nav-bg-top:      rgba(242, 249, 251, 0);
  --nav-bg-scrolled: var(--ice);
  --section-bg-alt: #e4eef1;
  --border-soft:    rgba(23, 43, 78, 0.18);
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
   font-family: 'Segoe UI', sans-serif;
   overflow-x: hidden;
}


  /* PRELOADER*/
  
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.pre-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}


.pre-logo {
  display: flex;
  gap: 6px;
}

.pre-logo span {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ice);
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  animation: letterIn 0.5s ease forwards;
  font-family: 'Georgia', serif;
}


.pre-logo span:nth-child(1) { animation-delay: 0.1s; }
.pre-logo span:nth-child(2) { animation-delay: 0.2s; }
.pre-logo span:nth-child(3) { animation-delay: 0.3s; }
.pre-logo span:nth-child(4) { animation-delay: 0.4s; }
.pre-logo span:nth-child(5) { animation-delay: 0.5s; }
.pre-logo span:nth-child(6) { animation-delay: 0.6s; }
.pre-logo span:nth-child(7) { animation-delay: 0.7s; }


.pre-logo span:nth-child(4) {
  color: var(--ice);
  text-shadow: 0 0 30px rgba(12, 176, 222, 0.7);
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.pre-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}

.pre-service {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--ice);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.pre-dot {
  color: #555;
  font-size: 1.2rem;
}


.pre-bar-wrap {
  width: min(320px, 70vw);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
}

.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ice), #f2f9fb, var(--ice));
  background-size: 200% 100%;
  animation: shimmerBar 1.5s linear infinite;
  transition: width 0.05s linear;
}

@keyframes shimmerBar {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.pre-counter {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  font-family: monospace;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; }
}

/* NAVBAR*/
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg-top);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 18px 0;
}

#navbar.scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  background: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 0.75;
}


.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.96);
  background: var(--nav-bg-scrolled);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  min-width: 240px;
  list-style: none;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--nav-bg-scrolled);
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 11px 14px;
  border-radius: 6px;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.dropdown-menu li a:hover {
  background: var(--border-soft);
  padding-left: 20px;
}


.nav-logo {
  text-decoration: none;
}

.logo-frame {
  width: 130px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  overflow: hidden;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-placeholder {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}


.theme-toggle {
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.08);
  background: var(--border-soft);
}

.theme-icon {
  width: 19px;
  height: 19px;
  color: var(--text-primary);
}

#iconMoon { display: none; }

html[data-theme="light"] #iconSun  { display: none; }
html[data-theme="light"] #iconMoon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 320px;
    background: var(--nav-bg-scrolled);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--border-soft);
    margin-top: 10px;
    display: none;
    border: none;
  }

  .nav-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-container {
    padding: 0 20px;
  }
}
/* HERO SECTION  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-page);
  overflow: hidden;
  padding-top: 80px;
  transition:background-color 0.3s ease ;
   max-width: 100vw;
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  transition: color 0.3s ease;
}

.hero-subheading {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.75;
  max-width: 460px;
  margin-bottom: 34px;
  transition: color 0.3s ease;
}

.hero-cta {
  display: inline-block;
  background-color: var(--text-primary);
  color: var(--bg-page);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(23, 43, 78, 0.25);
}

.hero-cta:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.35);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  max-width: 100%;
  min-width: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }

  .hero-content {
    align-items: center;
    order: 1;
    min-width: 0;
  }

  .hero-visual {
    height: 360px;
    order: 0;
  }

  .hero-subheading {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-visual {
    height: 280px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after {
    animation: none;
  }
}
/*  END HERO SECTION  */
/*  ABOUT US SECTION START  */
.about-section {
  padding: 40px 40px 100px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-tag {
  display: inline-block;
  font-size: 20ite for px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.about-heading {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.about-heading .highlight {
  color: #c9a96e;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  transition: color 0.4s ease;
}

.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.4s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.about-image-wrap {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(23, 43, 78, 0.15);
  display: block;
}

.about-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.about-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: 24px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .about-section {
    padding: 50px 24px 80px;
  }
}
/*  ABOUT US SECTION END  */
/*  SERVICES SECTION START  */
.services-section {
  padding: 60px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 90px;
  text-align: center;
}

.services-tag {
  display: inline-block;
  font-size: 20ite for px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.services-heading {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.services-heading .highlight {
  color: #c9a96e;
}

.services-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-soft);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
  perspective: 1000px;
}

.service-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 25px 60px rgba(23, 43, 78, 0.18);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover .service-image {
  box-shadow: 0 35px 80px rgba(201, 169, 110, 0.25);
}

.service-content {
  flex: 1;
  min-width: 280px;
}

.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.service-heading {
  font-size: clamp(24px, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.service-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 30px;
  transition: color 0.4s ease;
}


.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 28px;
  border: 1.5px solid var(--text-primary);
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-readmore .arrow {
  transition: transform 0.3s ease;
}

.service-readmore:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-2px);
}

.service-readmore:hover .arrow {
  transform: translateX(4px);
}


.services-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-section [data-aos="fade-up"] {
  transform: translateY(30px);
}

.services-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.services-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.services-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}


@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 50px 0;
  }

  .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 24px 80px;
  }

  .services-intro {
    margin-bottom: 60px;
  }
}
/*  SERVICES SECTION END  */
/*  GET IN TOUCH SECTION START  */
.contact-section {
  padding: 100px 40px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
}


.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.contact-heading {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.contact-heading .highlight {
  color: #c9a96e;
}

.contact-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 36px;
  transition: color 0.4s ease;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.contact-detail-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: #c9a96e;
}


.contact-form-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.contact-form {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(23, 43, 78, 0.12);
  transition: background-color 0.4s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.4s ease, color 0.4s ease;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #c9a96e;
}

.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--text-primary);
  color: var(--bg-page);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 15px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.form-submit .arrow {
  transition: transform 0.3s ease;
}

.form-submit:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-2px);
}

.form-submit:hover .arrow {
  transform: translateX(4px);
}


.form-success-msg {
  display: none;
  margin-top: 16px;
  font-size: 0.88rem;
  color: #4caf76;
  text-align: center;
  font-weight: 500;
}

.form-success-msg.show {
  display: block;
}


.contact-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.contact-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.contact-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-subtext {
    max-width: 100%;
  }

  .contact-detail {
    align-items: center;
  }

  .contact-form-wrap {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 70px 24px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}
/*  GET IN TOUCH SECTION END  */
/*  FOOTER SECTION START  */
.site-footer {
  background-color: var(--bg-page);
  padding: 80px 40px 0;
  transition: background-color 0.4s ease;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
  transition: color 0.4s ease;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a,
.footer-links span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #c9a96e;
  padding-left: 4px;
}

.footer-contact a,
.footer-contact span {
  word-break: break-word;
}


.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #c9a96e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  z-index: 900;
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--navy);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--black);
}

.back-to-top:hover svg {
  color: var(--ice);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 60px 24px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
/*  FOOTER SECTION END  */