@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    background: #1ebe5d;
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-sticky svg {
        width: 28px;
        height: 28px;
    }
}

:root {
  --navy: #1c2541;
  --navy-deep: #141b2d;
  --gold: #c9a227;
  --gold-soft: #e3c86b;
  --background: #fbfaf8;
  --foreground: #1f2937;
  --card: #ffffff;
  --muted: #f5f4f1;
  --muted-foreground: #6b7280;
  --border: #e7e5e0;
  --radius: 0.75rem;
  --shadow: 0 20px 60px -20px rgba(20, 27, 45, 0.45);
  --shadow-gold: 0 10px 30px -10px rgba(201, 162, 39, 0.5);
  --font-family: "Roboto", sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s;
  background: #fff;
}

.site-header.scrolled {
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.brand-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.desktop-nav {
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 14px;
  color: rgba(31, 41, 55, 0.8);
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.open .menu-icon {
  display: none;
}

.menu-toggle.open .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 14px;
  color: rgba(31, 41, 55, 0.8);
}

@media (min-width: 768px) {
  .brand {
    width: 70%;
}

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .brand {
    width: 70%;
}
}

@media (max-width: 500px) {
    .brand {
        width: 61%;
    }

    .brand-name {
    font-size: 17px;
    }
}


@media (max-width: 400px) {
.header-inner {
    display: block;
}

    .brand {
        width: 100%;
    }

    .desktop-nav {
    margin-top: 4%;
}

.brand-tag {
    font-size: 11px;
}


}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--navy-deep);
}

:root {
    --gold-1: #f7e7a5;
    --gold-2: #d4af37;
    --gold-3: #b8860b;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;

    color: #0d1b3d;
    font-weight: 600;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        var(--gold-1) 0%,
        var(--gold-2) 45%,
        var(--gold-3) 100%
    );

    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);

    transition: all .35s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);

    background: linear-gradient(
        135deg,
        #fff0b3 0%,
        #e6c14d 50%,
        #c49516 100%
    );

    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a3a63 100%);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, white 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
grid-template-columns: 885px 1fr;
    gap: 60px;
    padding-top: 40px;
  }
}






.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    border-radius: 50px;

    border: 1px solid rgba(212, 175, 55, 0.35);

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transition: all .35s ease;
}

.badge:hover {
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: #d4af37;
    flex-shrink: 0;
}

.hero h1 {
font-size: 26px;
    margin-top: 24px;
    font-weight: 300;
}

.hero h1 em {
	font-style: normal;
	font-weight: normal;
	background: linear-gradient(
    180deg,
    #fff8e6 0%,
    #f9e6a8 15%,
    #eacb68 35%,
    #d4af37 50%,
    #c79b2a 70%,
    #b8860b 85%,
    #d8b75b 100%
);
font-size: 35px;

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero>.container>.hero-grid>.hero-content>p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 24px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 400px;
  margin-top: 48px;
}

.hero-stats strong {
font-size: 30px;
    font-weight: 600;
    background: linear-gradient(180deg, #f8e7a1 0%, #d4af37 35%, #b8860b 60%, #f5d76e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  display: block;
}

.hero-stats span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
  filter: blur(40px);
}

.hero-logo-wrap{
width: 600px;
    height: 600px;
    border-radius:50%;
    border:1px solid rgba(201,162,39,.4);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(8px);
    padding:18px;              /* Space between border and image */
    display:flex;
    justify-content:center;
    align-items:center;
    box-sizing:border-box;
}

.hero-logo-inner{
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
    position:relative;
}

.hero-logo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transform:scale(.95);
    transition:opacity .8s ease, transform .8s ease;
}

.hero-logo.active{
    opacity:1;
    transform:scale(1);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--muted);
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.section-header {
  max-width: 100%;
}

.section-header.center {
  text-align: center;
  margin: 0 auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-top: 16px;
}

.section-header p {
  margin-top: 16px;
  color: var(--muted-foreground);
}

/* About */

#about{
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #fff;
}

#about::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
        width: 65%;
    height: 100%;

    background:
        linear-gradient(to left,
            rgba(255,255,255,0) 10%,
            rgba(255,255,255,.4) 35%,
            rgba(255,255,255,.8) 65%,
            #fff 100%),
        url("images/home-banner-justice.jpeg") no-repeat right center;

    background-size: cover;
    z-index: 0;
}
#about .container{
    position: relative;
    z-index: 2;
}
.about-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 4fr 8fr;
    gap: 60px;
  }
}

.about-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-top: 16px;
}

.divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin-top: 32px;
}

.about-body p {
  color: rgba(31, 41, 55, 0.75);
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--navy);
}

/* Services */
.services-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, border 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.service-card li{
      margin-left: 5%;
}

.service-img img{
      border-radius: 10px;
}
.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 12px;
}

/* Why */
.why-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a3a63 100%);
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (max-width : 1500px){
  .hero-logo-wrap {
    width: 500px;
    height: 500px;
  }
}

@media (max-width : 1100px){
  .hero-logo-wrap {
    width: 450px;
    height: 450px;
  }
}


@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.why-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 16px;
}

.why-intro>p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

.notary-card {
  margin-top: 40px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.notary-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.notary-title svg {
  width: 20px;
  height: 20px;
}

.notary-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

.why-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.why-list li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: border 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  transition: all 0.2s;
}

.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--navy);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-top: 20px;
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy);
    margin-top: 8px;
    font-family: 'Inter';
}

.contact-sub {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-tag {
  color: rgba(255, 255, 255, 0.5);
}

.copyright {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Utilities */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

@media (max-width: 400px) {
    .hero-logo-wrap {
        width: 350px;
        height: 350px;
    }
}


@media (max-width: 350px) {
    .hero-logo-wrap {
        width: 250px;
        height: 250px;
    }
}


#bci-overlay{
    position:fixed;
    inset:0;
    background:#f7f5f2;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.bci-box{
    max-width:750px;
    width:100%;
    background:#fff;
    padding:45px;
    border-radius:16px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    text-align:center;
}

.bci-icon{
    display: flex;
    justify-content: center;
}

.bci-icon img{
  width: 72px;
   margin-bottom:15px;
}

.bci-box h2{
    margin-bottom:15px;
}

.bci-box p{
    line-height: 1.8;
    color: var(--foreground);
    text-align: left;
}

.bci-box ul{
    text-align:left;
    margin:25px 0;
    padding-left:20px;
}

.bci-box li{
    margin-bottom:12px;
}

.agree{
    display:flex;
    gap:10px;
    justify-content:center;
    align-items:center;
    margin:30px 0;
    text-align: left;
}

#enterWebsite{
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    opacity: .5;
    margin-top: 2%;
}

#enterWebsite:enabled{
    opacity:1;
}


#bci-overlay{
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow-y: auto;                 /* Enable vertical scroll */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iPhone */
}

.bci-box{
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

@media only screen and (max-width:1500px){
  .bci-box ul {
    font-size: 13px;
}

.bci-box p {
    font-size: 13px;
}


#enterWebsite {
    padding: 15px 14px;
    font-size: 13px;
}

.bci-box {
    max-width: 900px;
    border-radius: 12px;
    padding: 39px;
}


}

@media (max-width: 768px){

    #bci-overlay{
        padding: 20px 15px;
    }

    .bci-box{
        margin: 20px auto;
        max-height: calc(100vh - 40px);
        overflow-y: auto;                 /* Scroll only inside the disclaimer */
        -webkit-overflow-scrolling: touch;
    }

}