/* ============================================================
   Advocate Nikita Sharma - Premium Law Firm Website
   Color Palette: Dark Navy #0a1628, Gold #c9a84c, White #ffffff
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #0a1628;
  --navy-light: #0f2040;
  --navy-mid:   #132952;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark:  #a08030;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray-light: #f0ede4;
  --gray:       #8a9ab5;
  --text-dark:  #1a2b4a;
  --text-body:  #3d4f6e;
  --shadow-lg:  0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-sm:  0 4px 20px rgba(10, 22, 40, 0.10);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
section { overflow: hidden; }

/* ---- Utility Classes ---- */
.section-pad      { padding: 90px 0; }
.section-pad-sm   { padding: 60px 0; }
.text-gold        { color: var(--gold); }
.text-navy        { color: var(--navy); }
.bg-navy          { background: var(--navy); }
.bg-gold          { background: var(--gold); }
.bg-offwhite      { background: var(--off-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}
.section-title.light { color: var(--white); }

.section-title span { color: var(--gold); font-style: italic; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  margin-top: 12px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px 0 28px;
  border-radius: 2px;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}
.btn-primary-gold:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold); }
.top-bar .top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 24px;
}
.top-bar .top-contact-item i { color: var(--gold); font-size: 13px; }

.top-bar .top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  margin-left: 5px;
  transition: var(--transition);
}
.top-bar .top-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-call-top {
  background: var(--gold);
  color: var(--navy);
  margin-right: 8px;
}
.btn-call-top:hover { background: var(--gold-light); color: var(--navy); }

.btn-wa-top {
  background: #25d366;
  color: var(--white);
}
.btn-wa-top:hover { background: #1ebe5b; color: var(--white); }

/* ============================================================
   SITE HEADER (sticky wrapper)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  transform: translateZ(0);
}

/* Disable sticky header on mobile devices */
@media (max-width: 991.98px) {
  .site-header {
    position: relative;
    top: auto;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: 
  linear-gradient(
  90deg,
  #000 0%,
  #060e1c 100%
);
  padding: 12px 0;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
  z-index: 1;
}
#mainNav .container {
  align-items: center;
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  overflow: visible;
  flex-shrink: 0;
  line-height: 1;
}
.navbar-brand .brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  line-height: 0;
  height: 52px;
}
#mainNav .brand-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
.brand-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.brand-text .tagline {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.navbar-nav .nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85) !important;
  padding: 18px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  left: 16px; right: 16px;
}

.navbar-toggler {
  border: 1px solid rgba(201,168,76,0.5) !important;
  padding: 8px 12px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #060e1c 0%, #0a1628 40%, #0f2040 70%, #132952 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23c9a84c" stop-opacity="0.06"/><stop offset="100%" stop-color="%230a1628" stop-opacity="0"/></radialGradient></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  background-size: cover;
}

/* Decorative scales/justice pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0px, var(--gold) 1px,
    transparent 1px, transparent 40px
  );
}

.hero-gold-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-light), transparent);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-badge i { font-size: 10px; }

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-name span { color: var(--gold); display: block; }

.hero-designation {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-designation strong { color: var(--gold); font-weight: 600; }

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.trust-text .t-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.trust-text .t-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-img-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.hero-img-frame {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 85%; height: 85%;
  border: 2px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  z-index: 0;
}
.hero-img-frame2 {
  position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 2px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  z-index: 0;
}
.hero-img-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  width: 100%;
  object-fit: cover;
  max-height: 600px;
  object-position: top;
}
.hero-exp-badge {
  position: absolute;
  bottom: 30px; left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.hero-exp-badge .exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.hero-exp-badge .exp-txt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.about-image-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 520px;
  object-position: top;
}
.about-img-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-img-badge .badge-txt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

.qual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.qual-item i { color: var(--gold); font-size: 14px; width: 18px; }

.highlight-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-top: 8px;
  transition: var(--transition);
}
.highlight-card:hover {
  background: var(--navy);
  color: var(--white);
}
.highlight-card:hover h5 { color: var(--gold); }
.highlight-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.highlight-card p { font-size: 14px; color: var(--gray); margin: 0; }
.highlight-card:hover p { color: rgba(255,255,255,0.6); }

/* ============================================================
   QUALITIES CARDS
   ============================================================ */
.quality-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.quality-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.quality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quality-card:hover::before { transform: scaleX(1); }

.quality-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--gold);
  transition: var(--transition);
}
.quality-card:hover .quality-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.quality-card h5 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.quality-card p { font-size: 15px; color: var(--gray); margin: 0; }

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
#practice-areas { background: var(--navy); }

.practice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.practice-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  transition: var(--transition);
}
.practice-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.practice-card:hover::after { width: 100%; }

.practice-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.practice-card:hover .practice-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.practice-card h5 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.practice-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  position: relative; z-index: 1;
  line-height: 1.65;
}

/* ============================================================
   CYBER LAW SECTION
   ============================================================ */
#cyber-law { background: var(--off-white); }

.cyber-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.cyber-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.cyber-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cyber-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.cyber-item h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.cyber-item p  { font-size: 15px; color: var(--gray); margin: 0; line-height: 1.6; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
#process { background: var(--navy); }

.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 38px; left: calc(50% + 48px); right: calc(-50% + 48px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.process-step:last-child::after { display: none; }

.step-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  transition: var(--transition);
}
.step-num::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
}
.step-num span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  position: relative; z-index: 1;
}
.process-step:hover .step-num {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
}

.step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--navy);
  margin: 0 auto 14px;
}

.process-step h5 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23c9a84c" stroke-opacity="0.05" stroke-width="40"/></svg>') no-repeat center;
  background-size: 600px;
}

.stat-item { text-align: center; padding: 40px 20px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-plus { color: var(--gold-light); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(201,168,76,0.2);
  margin: 20px auto;
}

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

.testi-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-light);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: 10px; left: 24px;
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }

.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.testi-name { font-weight: 700; font-size: 15px; color: var(--navy); display: block; }
.testi-role { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--off-white); }

.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: block;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid #e0ddd4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 120px; }

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  margin-top: 24px;
  border: 1px solid var(--gray-light);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060e1c;
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .sub {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '';
  width: 14px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9999;
  cursor: pointer;
  border: none;
}
#scrollTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTop:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 88px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.wa-float:hover { background: #1ebe5b; transform: scale(1.1); color: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   DOCUMENTATION SECTION
   ============================================================ */
#documentation { background: var(--white); }

.doc-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  margin-bottom: 12px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
}
.doc-service-item i { color: var(--gold); font-size: 16px; width: 20px; }
.doc-service-item:hover { background: var(--navy); color: var(--white); border-left-color: var(--gold); }
.doc-service-item:hover i { color: var(--gold); }

.doc-feature-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  height: 100%;
  border: 1px solid rgba(201,168,76,0.15);
}
.doc-feature-card h5 { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; }
.doc-feature-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-image-col { margin-top: 40px; }
  .hero-exp-badge { left: 10px; bottom: 20px; }
  .about-img-badge { right: 0; }
  .process-step::after { display: none; }
  .navbar-collapse { background: rgba(10, 22, 40, 0.98); border-top: 1px solid rgba(201,168,76,0.12); }
  .navbar-nav .nav-link { padding: 14px 20px !important; }
  .navbar-nav .nav-link::after { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-name { font-size: 2.5rem; }
  .hero-trust { gap: 16px; }
  .trust-item { flex: 1 1 calc(50% - 8px); }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .hero-buttons { flex-direction: column; }
  .cyber-icon-grid { grid-template-columns: 1fr; }
  .top-bar .d-none-mobile { display: none !important; }
}

@media (max-width: 575px) {
  .trust-item { flex: 1 1 100%; }
  .hero-exp-badge { display: none; }
  .stat-item { padding: 24px 10px; }
}

/* ============================================================
   SECTION SEPARATORS
   ============================================================ */
.gold-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ============================================================
   MOBILE MENU OVERRIDE
   ============================================================ */
@media (max-width: 991px) {
  .top-bar .top-contact-item:not(:first-child) { display: none; }
}
