
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
:root{
  --primary: #177499;
  --secondary:#A8F3FF;
  --gold-border:rgba(184,134,11,0.35);
  --dark:#0a0c10;
  --navy:#082733;
  --navy2:#1c2535;
  --card-dark:#161d2b;
  --light:#ddf3fc;
  --light2:#f3f0ea;
  --white:#ffffff;
  --text:#1a1a2e;
  --muted:#6b7280;
  --border:#e5e7eb;
  --radius:8px;
  --transition:.35s cubic-bezier(.4,0,.2,1);
}



/* :root {
  --primary: #177499;
  --secondary: #A8F3FF;
  --dark-blue: #082733;
  --gold-border: rgba(184, 134, 11, 0.35);
  --gradient:linear-gradient(90deg, #177499 0%, #082733 100%);
  --dark: #0a0c10;
  --navy2: #1c2535;
  --card-dark: #161d2b;
  --light: #f9f7f3;
  --light2: #f3f0ea;
  --white: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 8px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
} */


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6
.serif {
   font-family: "Playfair", serif;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.left {
  transform: translateX(-50px);
}

.reveal.right {
  transform: translateX(50px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: .1s !important;
}

.delay-2 {
  transition-delay: .2s !important;
}

.delay-3 {
  transition-delay: .3s !important;
}

.delay-4 {
  transition-delay: .4s !important;
}

.delay-5 {
  transition-delay: .5s !important;
}

.delay-6 {
  transition-delay: .6s !important;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 0;
  transition: all .3s;
}

#navbar.scrolled {
  background: rgba(10, 12, 16, .99);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color var(--transition);
}

.nav-brand:hover {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all .25s;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-phone {
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-phone:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-nav-quote {
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: 5px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .3px;
}

.btn-nav-quote:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(23, 116, 153, .4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

@media(max-width:991px) {
  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .nav-links.open,
  .nav-actions.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .nav-actions.open {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .navbar-inner {
    flex-wrap: wrap;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: #0a0c10;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/banner.jpg') center/cover no-repeat;
  opacity: 1;
  animation: heroPan 20s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from {
    transform: scale(1.05) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(-20px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 7, 12, .92) 0%, rgba(5, 7, 12, .6) 60%, rgba(5, 7, 12, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 39, 51, .15);
  border: 1px solid var(--primary);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeSlideDown .8s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.8);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeSlideUp .9s .2s ease both;
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle {
  color: rgba(255, 255, 255, .72);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 530px;
  margin-bottom: 36px;
  animation: fadeSlideUp .9s .35s ease both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeSlideUp .9s .5s ease both;
}

.btn-gold {
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .28s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .3px;
}

.btn-gold:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(23, 116, 153, .45);
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .88rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .35);
  transition: all .28s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-outline-gold:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .7);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp .9s .65s ease both;
}

.stat-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  min-width: 110px;
  transition: all .3s;
}

.stat-box:hover {
  border-color: var(--secondary);
  background: #ddf3fc31;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--secondary);
  font-size: .75rem;
  margin-top: 4px;
  letter-spacing: .5px;
}

.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 1s .4s ease both;
}

.hero-form-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 32px 28px;
}

.hero-form-card h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hero-form-card p {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 11px 15px;
  color: #fff;
  font-size: .87rem;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .25s;
  font-family: 'Inter', sans-serif;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

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

.form-input option {
  background: #111827;
  color: #fff;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy2);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 14px 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.trust-track:hover {
  animation-play-state: paused;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-item i {
  color: var(--white);
  font-size: .85rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTION COMMONS ===== */
.section-pad {
  padding: 50px 0;
}

.section-label {
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
     background: linear-gradient(
        90deg,
        #DCA023 0%,
        #DCA023 40%,
        #E5B547 75%,
        #DCA023 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}


.section-title.white {
  color: #fff;
}

.section-sub {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 560px;
}

.section-sub.center {
  margin: 0 auto;
  text-align: center;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 16px 0 28px;
}

.gold-line.center {
  margin: 16px auto 28px;
}

/* ===== ABOUT ===== */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.about-badge .num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .txt {
  font-size: 16px;
  letter-spacing: .5px;
  opacity: .85;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #374151;
  font-size: .9rem;
}

.check-item i {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .65rem;
  flex-shrink: 0;
}

.vision-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  border-color: var(--primary);
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #08273330;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.vision-icon i{
  font-size: 25px;
}

.vision-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.vision-card p {
  color: var(--text);
  font-size: .87rem;
  line-height: 1.65;
}



/* ===== WHY / DARK SECTIONS ===== */
.dark-section {
  background: var(--navy);
}

.dark-section2 {
  background: var(--card-dark);
}

.why-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 24px 20px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 134, 11, .04), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  border-color: rgba(184, 134, 11, .4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.why-icon i{
  color: var(--secondary)!important;
}

.why-card h6 {
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-card p {
  color: rgba(255, 255, 255);
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== PILLARS ===== */
#pillars {
  background: var(--light);
}

.pillar-card {
  text-align: center;
  padding: 36px 20px;
  transition: all var(--transition);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08) rotate(-5deg);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(23, 116, 153, .3);
  transition: transform .4s;
}

.pillar-card h6 {
  font-weight: 600;
  color: var(--text);
  font-size: .92rem;
}

/* ===== PRODUCTS ===== */
#products {
  background: var(--white);
}

.prod-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: #fff;
  height: 100%;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  border-color: var(--gold-border);
}

.prod-img-wrap {
  overflow: hidden;
  position: relative;
}

.prod-img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

.prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s;
}

.prod-card:hover .prod-overlay {
  opacity: 1;
}

.btn-over {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-over:hover {
  background: var(--secondary);
}

.btn-over2 {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  padding: 7px 14px;
  border-radius: 5px;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s;
}

.btn-over2:hover {
  border-color: #fff;
}

.prod-body {
  padding: 18px 16px;
}

.prod-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.prod-body p {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 12px;
}

.prod-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-prod {
  font-size: .75rem;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn-prod-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 16px;
}

.btn-prod-primary:hover {
  background: var(--navy);
  color: #fff;
  
}

.btn-prod-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-prod-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--navy);
}

.testi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 30px 26px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}

.testi-card:hover {
  border-color: rgba(184, 134, 11, .35);
  transform: translateY(-4px);
}

.quote-icon {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
  opacity: .6;
}

.testi-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  line-height: 1.75;
  font-style: italic;
}

.testi-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.testi-name {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
}

.testi-role {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
}

.partner-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all var(--transition);
}

.partner-card:hover {
  border-color: var(--gold-border);
}

.partner-tag {
  font-size: .68rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.partner-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .87rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ===== CTA ===== */
#cta {
    background-image: linear-gradient(rgba(23, 116, 153, 0.8), rgba(168, 243, 255, 0.9)), url('../img/cont-bg.jpg');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

#cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
#cta h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
  font-weight: 800;
} 

#cta p {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: #fff;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  color: var(--primary);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .88rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-cta-outline:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

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

.faq-section{
  background-image: url('../img/banner-1.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
    background: #fff;
    padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  color: var(--dark);
  font-size: .88rem;
  line-height: 1.75;
  padding: 0 20px 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.footer-desc {
    color: rgb(255 255 255);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  text-decoration: none;
  transition: all .25s;
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0px;
}


.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgb(255 255 255);
    font-size: 14px;
    line-height: 1.55;
}
.footer-contact-item a{
  color: rgb(255 255 255);
  text-decoration: none;
}

.footer-contact-item i {
  color: var(--white);
  width: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .06);
  margin: 48px 0 24px;
}

.footer-bottom {
  padding-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-copy {
    color: rgb(255 255 255);
    font-size: 14px;
}
.footer-copy a{
  color: rgb(255 255 255);
    font-size: 14px;
    text-decoration: none;
}

.footer-tag {
  color: rgba(255, 255, 255, .2);
  font-size: .72rem;
}

/* ===== FLOATING ===== */
.float-wrap {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  transition: all .25s;
}

.float-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.float-btn.wa {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.float-btn.call {
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(184, 134, 11, .4);
}

.float-btn.wa:hover {
  background: #1db954;
}

.float-btn.call:hover {
  background: var(--navy);
}
.thankyou{
  padding: 200px 0px 90px;
}

/* ===== BACK TO TOP ===== */
#backTop {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1999;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
  text-decoration: none;
}

#backTop.show {
  opacity: 1;
  transform: translateY(0);
}

#backTop:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== NUMBER COUNTER ===== */
.counting {
  transition: all .5s;
}

/* ===== RESPONSIVE UTILS ===== */
@media(max-width:768px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-badge {
    display: none;
  }
}