/* ================================================================
   FINPRO ADVISORS — PREMIUM DESIGN SYSTEM
   ================================================================ */

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

/* ======================== VARIABLES ======================== */
:root {
  --navy: #0b2d45;
  --navy-deep: #071e30;
  --teal: #2a8fa3;
  --teal-light: #4db8d0;
  --teal-pale: #e3f4f8;
  --teal-mid: #c0e8f0;
  --white: #ffffff;
  --offwhite: #f6f9fb;
  --gray: #6b7c8d;
  --gray-light: #e8eef3;
  --dark: #071e30;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif;

  --shadow-sm: 0 2px 12px rgba(11, 45, 69, .07);
  --shadow-md: 0 8px 28px rgba(11, 45, 69, .11);
  --shadow-lg: 0 20px 48px rgba(11, 45, 69, .14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ======================== RESET ======================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ======================== NAVBAR ======================== */
#navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(11, 45, 69, .08), var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: var(--navy);
  display: block;
}

.nav-links>li>a:hover {
  color: var(--teal);
  background: var(--teal-pale);
}

/* CTA NAV BUTTON */
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(42, 143, 163, .3);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--navy) !important;
  box-shadow: 0 6px 20px rgba(11, 45, 69, .25) !important;
  transform: translateY(-1px);
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 248px;
  background: white;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
  animation: dropIn .18s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--navy);
  border-radius: 8px;
  transition: all .2s;
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--teal-pale);
  color: var(--teal);
  padding-left: 20px;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}

.mobile-menu a {
  padding: 13px 24px;
  font-size: 15px;
  border-bottom: 1px solid #f0f4f7;
  font-weight: 500;
  color: var(--navy);
  transition: all .2s;
}

.mobile-menu a:hover {
  background: var(--offwhite);
  color: var(--teal);
  padding-left: 30px;
}

.mobile-menu.open {
  display: flex;
}


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  padding: 110px 24px 90px;
  background: linear-gradient(145deg, #f0f7fb 0%, #e8f4f9 40%, #f6f9fb 100%);
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 143, 163, .12) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 45, 69, .06) 0%, transparent 70%);
  bottom: -60px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
  color: var(--gray);
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #1e7a8f);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(42, 143, 163, .35);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 143, 163, .45);
  background: linear-gradient(135deg, #2d9db5, var(--navy));
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 143, 163, .3);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  min-width: 110px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
  display: block;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* HERO RIGHT IMAGE */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 530px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(60px);
  animation:
    heroSlideFade 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
    heroFloating 6s ease-in-out infinite 1.5s;
}

@keyframes heroSlideFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFloating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}


/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--teal-pale);
  border-radius: 50px;
  border: 1px solid var(--teal-mid);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}

.section-sub {
  font-size: 16.5px;
  color: var(--gray);
  line-height: 1.75;
}


/* ================================================================
   ABOUT SECTION (HOME PAGE)
   ================================================================ */
.about {
  padding: 100px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: min(1100px, 90%);
}

.about-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 44px;
}

.about-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.about-card-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.about-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.about-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray);
}

.about-btn-wrapper {
  text-align: center;
  margin-top: 16px;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.section {
  padding: 100px 0;
}

.services-bg {
  background: var(--offwhite);
}

.section-inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}

.service-img {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1;
  width: 58px;
  height: 58px;
  background: var(--teal-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-body h3 {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.service-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}


/* ================================================================
   GALLERY SECTION
   ================================================================ */
.gallery-section {
  background: var(--white);
  padding: 90px 0;
  overflow: hidden;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: min(1100px, 90%);
}

.gallery-section .section-inner {
  text-align: center;
  margin-bottom: 44px;
  width: 100%;
}

.gallery-scroll {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

/* Fade edges */
.gallery-scroll::before,
.gallery-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.gallery-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.gallery-scroll::after {
  right: 0;
  background: linear-gradient(-90deg, var(--white), transparent);
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: galleryScroll 20s linear infinite;
  will-change: transform;
  align-items: center;
}

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

@keyframes galleryScroll {
  0% {
    transform: translateX(0);
  }

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

.gallery-item {
  width: 230px;
  height: 160px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.gallery-item:hover img {
  transform: scale(1.08);
}


/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials {
  background: linear-gradient(160deg, var(--offwhite), #e8f3f8);
  padding: 100px 0;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: #f5a623;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--gray);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--teal-mid);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}

.author-info span {
  font-size: 12px;
  color: var(--gray);
}


/* ================================================================
   CONTACT SECTION — PREMIUM REDESIGN
   ================================================================ */
.contact-section {
  padding: 110px 8%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 143, 163, .07) 0%, transparent 70%);
  top: -80px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.contact-container {
  max-width: 1150px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 16px;
}

.contact-header p {
  color: var(--gray);
  max-width: 560px;
  margin: auto;
  font-size: 16px;
  line-height: 1.75;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* CONTACT INFO SIDE */
.contact-info {
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42, 143, 163, .18) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.contact-info-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.icon {
  background: rgba(42, 143, 163, .25);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(42, 143, 163, .3);
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
}

.contact-item p {
  margin: 2px 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14.5px;
  font-weight: 500;
  word-break: break-word;
}

.contact-item a {
  color: rgba(255, 255, 255, .88);
}

.contact-item a:hover {
  color: var(--teal-light);
}

/* SOCIAL SECTION */
.social-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  z-index: 1;
}

.social-section h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all 0.3s ease;
  display: inline-block;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  transition: all 0.25s ease;
}

.social-btn.facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.social-btn.instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.social-btn.tiktok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25V349.38A162.55 162.55 0 1 1 185 188.31V278.2a74.62 74.62 0 1 0 52.23 71.18V0l88 0a121.18 121.18 0 0 0 1.86 22.17h0A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
}

.social-btn.tiktok:hover {
  background: #010101;
  border-color: #010101;
}

/* CONTACT FORM SIDE */
.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: var(--offwhite);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 143, 163, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.contact-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  background: linear-gradient(135deg, var(--teal), #1e7a8f);
  color: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(42, 143, 163, .3);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #2d9db5, var(--navy));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 143, 163, .4);
}

.contact-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  color: #8ab8cc;
  padding: 70px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .logo-name {
  color: white;
}

.footer-brand .logo-tagline {
  color: var(--teal-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #6a8fa0;
  margin-bottom: 24px;
}

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

.footer-col h4 {
  color: white;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  color: #6a8fa0;
  font-size: 13.5px;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-contact ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #6a8fa0;
  margin-bottom: 12px;
}

.contact-icon {
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 52px;
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  font-size: 12.5px;
  color: #4a6a7a;
}


/* ================================================================
   SCROLL REVEAL / ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1),
    transform .65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1),
    transform .65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1),
    transform .65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-1 {
  transition-delay: .05s;
}

.stagger-2 {
  transition-delay: .15s;
}

.stagger-3 {
  transition-delay: .25s;
}

.stagger-4 {
  transition-delay: .35s;
}


/* ================================================================
   ABOUT PAGE — SPECIFIC STYLES
   ================================================================ */
.about-hero {
  background: linear-gradient(145deg, var(--offwhite), #e8f4f9);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-light);
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 46px);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(32px);
  animation: heroSlideUp .8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.about-hero p {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: heroSlideUp .75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

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

.about-section {
  padding: 90px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.mission-vision {
  background: var(--offwhite);
  padding: 90px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-box {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mission-box h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 14px;
}

.mission-box p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.why-us {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--offwhite);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--teal);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.about-cta {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 16px;
  color: #8ab8cc;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(42, 143, 163, .35);
}

.cta-button:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 143, 163, .45);
}


/* ================================================================
   SERVICE PAGE STYLES
   ================================================================ */
.service-page {
  background: var(--offwhite);
  padding: 60px 0;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h1 {
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-header p {
  max-width: 850px;
  margin: auto;
  color: var(--gray);
  line-height: 1.7;
}

.service-block {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.service-block h2 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 20px;
  border-left: 4px solid var(--teal);
  padding-left: 14px;
}

.service-block h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--navy);
  font-weight: 600;
}

.service-block p {
  color: var(--gray);
  line-height: 1.7;
}

.service-block ul {
  margin-top: 14px;
  padding-left: 22px;
}

.service-block li {
  margin-bottom: 10px;
  color: var(--gray);
  line-height: 1.6;
}

.process-step {
  background: var(--offwhite);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border-left: 3px solid var(--teal);
}

.service-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.type-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: .3s;
  box-shadow: var(--shadow-sm);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.type-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.fee-table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th {
  background: var(--teal);
  color: #fff;
  padding: 14px;
  text-align: left;
}

.fee-table td {
  padding: 14px;
  border-bottom: 1px solid var(--gray-light);
}

.fee-table tr:hover {
  background: var(--offwhite);
}


/* ================================================================
   INDUSTRIES PAGE
   ================================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.industry-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.industry-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.industry-card ul {
  padding-left: 18px;
}

.industry-card li {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}

.industry-card li::marker {
  color: var(--teal);
}


/* ================================================================
   SUCCESS/MILESTONES (About page)
   ================================================================ */
.success-section {
  background: linear-gradient(135deg, var(--navy) 0%, #164060 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(42, 143, 163, .12) 0%, transparent 60%);
  pointer-events: none;
}

.success-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.success-inner .section-label {
  background: rgba(42, 143, 163, .15);
  color: var(--teal-light);
  border: 1px solid rgba(42, 143, 163, .3);
}

.success-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 12px;
}

.success-sub {
  color: #8ab8cc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 60px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 20px;
}

.milestone {
  text-align: center;
  padding: 0 16px 24px;
}

.milestone-dot {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid #164060;
  box-shadow: 0 0 0 4px rgba(42, 143, 163, .3);
  position: relative;
  z-index: 2;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.milestone:nth-child(2) .milestone-dot {
  animation-delay: .3s;
}

.milestone:nth-child(3) .milestone-dot {
  animation-delay: .6s;
}

.milestone:nth-child(4) .milestone-dot {
  animation-delay: .9s;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(42, 143, 163, .3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(42, 143, 163, .1);
  }
}

.milestone h4 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 10px;
}

.milestone p {
  color: #8ab8cc;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .contact-info {
    padding: 32px 26px;
  }

  .gallery-item {
    width: 180px;
    height: 130px;
  }

  .gallery-scroll::before,
  .gallery-scroll::after {
    width: 40px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 150px;
    height: 110px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-card {
    padding: 12px 16px;
  }

  .about-card {
    padding: 24px 20px;
  }

  .contact-section {
    padding: 70px 5%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 64px;
    padding: 0 18px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-name {
    font-size: 18px;
  }

  .services-grid {
    gap: 16px;
  }

  .section {
    padding: 70px 0;
  }

  .about {
    padding: 70px 20px;
  }
}

/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-5px);
}