/* =========================
   GLOBAL
========================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  overflow-x: hidden;

  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.05), transparent 35%),
    radial-gradient(circle at top right, rgba(0,0,0,0.035), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0,0,0,0.03), transparent 30%),
    linear-gradient(to bottom, #f2f2f2, #f8f8f8, #fcfcfc);
}

a {
  text-decoration: none;
}

section {
  position: relative;
}

.section-space {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;

  background: rgba(255,255,255,0.82);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.55);

  border-radius: 999px;

  padding: 13px 22px;

  box-shadow:
    0 12px 34px rgba(0,0,0,0.08);

  max-width: 1180px;
}

.navbar-brand {
  color: #111 !important;
  font-size: 1.2rem;
  letter-spacing: -0.3px;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-link {
  color: #444 !important;
  font-weight: 500;
  position: relative;
  transition: .3s ease;
}

.nav-link:hover {
  color: #000 !important;
}

.nav-link::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 2px;

  width: 0;
  height: 1.5px;

  background: #111;

  transition: .3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {

  border: 1px solid #111 !important;

  border-radius: 999px !important;

  padding: 10px 18px !important;

  background: #fff !important;

  color: #111 !important;

  font-weight: 600 !important;

  transition: .3s ease;
}

.contact-btn:hover {

  background: #111 !important;

  color: #fff !important;

  transform: translateY(-1px);
}

/* =========================
   HERO
========================= */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

#heroCarousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transform: scale(1.02);
}

.hero-overlay {

  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.50)
    );

  pointer-events: none;
}

.hero-center-shadow {

  position: absolute;
  inset: 0;

  z-index: 3;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.02) 42%,
      transparent 65%
    );

  pointer-events: none;
}

.hero-content {

  position: absolute;

  top: 54%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  width: 90%;
  max-width: 900px;

  text-align: center;

  color: #fff;
}

.hero-tag {

  display: inline-block;

  margin-bottom: 18px;

  padding: 9px 16px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.28);

  background: rgba(255,255,255,0.12);

  backdrop-filter: blur(10px);

  color: rgba(255,255,255,0.96);

  font-size: .88rem;

  font-weight: 500;
}

.hero-content h1 {

  font-size: clamp(2.8rem, 6vw, 5.3rem);

  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -1.5px;

  margin-bottom: 18px;

  text-shadow:
    0 8px 24px rgba(0,0,0,0.18);
}

.hero-content p {

  font-size: 1.08rem;

  max-width: 700px;

  margin: 0 auto 32px;

  color: rgba(255,255,255,0.95);
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {

  display: flex;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;
}

.hero-btn,
.hero-btn-outline {

  padding: 14px 28px !important;

  border-radius: 999px !important;

  font-weight: 600 !important;

  transition: .3s ease;
}

.hero-btn {

  background: #fff !important;

  color: #111 !important;

  border: 1px solid rgba(255,255,255,0.95) !important;

  box-shadow:
    0 14px 34px rgba(0,0,0,0.22);
}

.hero-btn:hover {

  background: #111 !important;

  color: #fff !important;

  border-color: #111 !important;

  transform: translateY(-2px);
}

.hero-btn-outline {

  background: rgba(255,255,255,0.18) !important;

  color: #fff !important;

  border: 1px solid rgba(255,255,255,0.70) !important;

  backdrop-filter: blur(12px);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.14);
}

.hero-btn-outline:hover {

  background: rgba(255,255,255,0.30) !important;

  color: #fff !important;

  transform: translateY(-2px);
}

/* =========================
   HERO INDICATORS
========================= */

.hero-indicators {

  position: absolute;

  bottom: 34px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 6;

  display: flex;

  gap: 10px;
}

.hero-indicators button {

  width: 12px !important;
  height: 12px !important;

  border: none !important;

  border-radius: 999px !important;

  background: rgba(255,255,255,.45) !important;

  opacity: 1 !important;

  transition: .35s ease !important;
}

.hero-indicators button.active {

  width: 30px !important;

  background: #fff !important;
}
/* =========================
   SECTION HEADINGS
========================= */

.section-tag {

  display: inline-block;

  padding: 8px 15px;

  border-radius: 999px;

  background: rgba(255,255,255,0.75);

  border: 1px solid rgba(0,0,0,0.05);

  color: #333;

  font-size: .85rem;

  font-weight: 600;

  backdrop-filter: blur(10px);
}

.section-title {

  font-size: clamp(2.2rem, 5vw, 3.8rem);

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: -1.5px;

  max-width: 700px;

  color: #111;
}

.section-text {

  font-size: 1.06rem;

  line-height: 1.95;

  color: #555;

  max-width: 700px;
}

/* =========================
   SERVICES
========================= */

.services-section {

  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.035), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.03), transparent 30%),
    linear-gradient(to bottom, #f4f4f4, #fbfbfb);
}

.services-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

.service-card {

  position: relative;

  height: 430px;

  overflow: hidden;

  border-radius: 34px;

  display: block;

  text-decoration: none;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.10);

  transition: all .4s ease;
}

.service-card img {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .8s ease;
}

.service-card::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.82),
      rgba(0,0,0,.35),
      rgba(0,0,0,.08)
    );
}

.service-overlay {

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  padding: 35px;

  color: #fff;
}

.service-small {

  display: inline-block;

  margin-bottom: 10px;

  font-size: .78rem;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  opacity: .8;
}

.service-overlay h3 {

  font-size: 2rem;

  font-weight: 800;

  margin-bottom: 10px;
}

.service-overlay p {

  margin: 0;

  color: rgba(255,255,255,.92);

  max-width: 400px;
}

.service-card::after {

  content: "→";

  position: absolute;

  right: 30px;
  bottom: 30px;

  width: 54px;
  height: 54px;

  z-index: 3;

  border-radius: 50%;

  background: rgba(255,255,255,.15);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 1.4rem;

  transition: .35s ease;
}

.service-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 35px 80px rgba(0,0,0,0.18);
}

.service-card:hover img {

  transform: scale(1.08);
}

.service-card:hover::after {

  transform: translateX(6px);

  background: rgba(255,255,255,.25);
}

/* =========================
   STORY SECTION
========================= */

.story-section {

  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.04), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.03), transparent 30%),
    linear-gradient(to bottom, #f5f5f5, #fcfcfc);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {

  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.03), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.04), transparent 30%),
    linear-gradient(to bottom, #f4f4f4, #fafafa);
}

/* =========================
   IMAGE CARDS
========================= */

.image-card {

  overflow: hidden;

  border-radius: 34px;

  background: #fff;

  border: 1px solid rgba(0,0,0,0.04);

  box-shadow:
    0 24px 70px rgba(0,0,0,0.08);
}

.image-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .6s ease;
}

.image-card:hover img {

  transform: scale(1.05);
}

.image-card img {

    width: 100%;

    height: auto;

    display: block;

    object-fit: unset;
}

/* =========================
   BUTTONS
========================= */

.dark-btn,
.light-btn {

  padding: 14px 28px !important;

  border-radius: 999px !important;

  font-weight: 600 !important;

  transition: .3s ease;
}

.dark-btn {

  background: #111 !important;

  color: #fff !important;

  border: 1px solid #111 !important;
}

.dark-btn:hover {

  background: #000 !important;

  color: #fff !important;

  transform: translateY(-2px);
}

.light-btn {

  background: rgba(255,255,255,.75) !important;

  color: #111 !important;

  border: 1px solid rgba(0,0,0,.08) !important;

  backdrop-filter: blur(10px);
}

.light-btn:hover {

  background: #111 !important;

  color: #fff !important;

  border-color: #111 !important;

  transform: translateY(-2px);
}

/* =========================
   CONTACT
========================= */

.contact-section {

  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.03), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 30%),
    linear-gradient(to bottom, #f1f1f1, #f8f8f8);
}

.contact-box {

  background: rgba(255,255,255,.72);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.45);

  border-radius: 38px;

  padding: 58px 42px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.06);
}

.contact-links {

  display: flex;

  flex-direction: column;

  gap: 16px;
}

.contact-item {

  display: flex;

  align-items: center;

  gap: 16px;

  background: rgba(255,255,255,.8);

  border: 1px solid rgba(0,0,0,.05);

  border-radius: 22px;

  padding: 18px 22px;

  color: #111;

  transition: .3s ease;

  box-shadow:
    0 10px 24px rgba(0,0,0,.03);
}

.contact-item:hover {

  transform: translateY(-4px);

  border-color: rgba(0,0,0,.12);

  color: #111;
}

.contact-item i {

  font-size: 1.2rem;

  width: 24px;
}

/* =========================
   FOOTER
========================= */

.footer-section {

  background: #fafafa;

  padding: 30px 0 45px;
}

.footer-inner {

  border-top: 1px solid rgba(0,0,0,.08);

  padding-top: 25px;

  text-align: center;
}

.footer-inner p {

  margin: 0;

  color: #777;

  font-size: .95rem;
}

/* =========================
   BLOBS
========================= */

.bg-blob {

  position: absolute;

  border-radius: 999px;

  filter: blur(95px);

  opacity: .35;

  pointer-events: none;
}

.bg-blob-1 {

  width: 260px;
  height: 260px;

  background: rgba(0,0,0,.05);

  top: 80px;
  left: -60px;
}

.bg-blob-2 {

  width: 320px;
  height: 320px;

  background: rgba(0,0,0,.04);

  bottom: 60px;
  right: -80px;
}

.bg-blob-5 {

  width: 280px;
  height: 280px;

  background: rgba(0,0,0,.04);

  top: 80px;
  right: -60px;
}

.bg-blob-6 {

  width: 240px;
  height: 240px;

  background: rgba(0,0,0,.035);

  bottom: 40px;
  left: -50px;
}

.bg-blob-7 {

  width: 260px;
  height: 260px;

  background: rgba(0,0,0,.04);

  top: 50px;
  left: -50px;
}

.bg-blob-8 {

  width: 260px;
  height: 260px;

  background: rgba(0,0,0,.04);

  bottom: 50px;
  right: -50px;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {

  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.active {

  opacity: 1;

  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .hero-section {
    min-height: 720px;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 8vw, 4rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 340px;
  }

  .large-image-card,
.about-main-image {
  height: auto;
}

  .contact-box {
    padding: 38px 24px;
  }

}

@media (max-width: 768px) {

  .hero-btn,
  .hero-btn-outline,
  .dark-btn,
  .light-btn {

    width: 100%;

    text-align: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .service-card {
    height: 300px;
  }

  .service-overlay {
    padding: 25px;
  }

  .service-overlay h3 {
    font-size: 1.6rem;
  }

 .large-image-card,
.about-main-image {
  height: auto;
}

}

@media (max-width: 576px) {

  .hero-section {
    min-height: 650px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: .95rem;
  }

  .service-card {
    height: 260px;
  }

}

.offer-strip{
    padding: 30px 0 80px;
}

.offer-box{

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    text-align:center;

    box-shadow:0 15px 50px rgba(0,0,0,.06);
}

.offer-box h2{

    font-weight:800;

    margin-bottom:40px;
}

.offer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.offer-item i{

    font-size:2.8rem;

    margin-bottom:15px;

    display:block;
}

.offer-item h4{

    font-size:1.2rem;

    font-weight:700;
}

.offer-item p{

    color:#666;

    margin:0;
}

@media(max-width:768px){

    .offer-grid{
        grid-template-columns:1fr;
    }

}

.signature-logo img {

    height: 45px;

    width: auto;

    display: block;
}
