/* -----------------------------
   1) Tokens / Root Variables
------------------------------ */
:root{
  --primary:#273153;        /* Navy */
  --accent:#d9c179;         /* Gold */
  --bg:#0b1020;             /* Deep background for gradients */
  --surface:#ffffff;
  --muted-surface:#f6f8fc;
  --line:#e6eaf2;
  --text:#0f172a;
  --muted:#475569;
  --cardbg:#eef3f9;

  --radius:14px;
  --radius-lg:20px;
  --shadow-sm:0 6px 18px rgba(2,6,23,.08);
  --shadow-md:0 16px 48px rgba(2,6,23,.14);

  --container:1180px;
  --transition:200ms ease;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Inter", system-ui, -apple-system, sans-serif;
}

/* -----------------------------
   2) Base / Reset
------------------------------ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--surface);
  line-height:1.3;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }
:focus-visible{ outline:3px solid rgba(217,193,121,.65); outline-offset:3px; }

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:var(--surface);
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

/* -----------------------------
   3) Layout Helpers
------------------------------ */
.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}
.section{
  padding:72px 0;
}
.section-alt{
  background:var(--muted-surface);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.center{ text-align:center; }
.muted{ color:var(--muted); font-size:.95rem; }
.muted-sub{ color:var(--muted); font-size:.87rem; }
.small{ font-size:.92rem; }

/* -----------------------------
   4) Header / Navigation
------------------------------ */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(230,234,242,.75);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand-logo{ height:64px; width:auto; }

.site-nav{ display:flex; }
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
  padding:0;
  margin:0;
}
.nav-links a{
  color:var(--primary);
  font-weight:600;
  letter-spacing:.1px;
  padding:10px 10px;
  border-radius:10px;
  font-size:0.95rem;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover{
  background:rgba(39,49,83,.06);
}
.header-cta{ display:flex; align-items:center; font-size:.9rem; }

/* Dropdown */
.dropdown{ position:relative; }
.dropdown-toggle{ display:inline-flex; align-items:center; gap:8px; }
.dropdown-toggle::after{
  content:"▾";
  font-size:.9rem;
  opacity:.7;
}
.dropdown-menu{
  position:absolute;
  top:calc(100%);
  left:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow-sm);
  min-width:240px;
  padding:10px;
  display:none;
  list-style: none;
}
.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  font-weight:600;
}
.dropdown-menu a:hover{ background:rgba(217, 193, 121, 0.1); }
.dropdown.open .dropdown-menu{ display:block; }

@media (min-width: 900px){
  .dropdown:hover .dropdown-menu{ display:block; }
}

/* Mobile toggle */
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--primary);
  margin:5px 0;
  border-radius:2px;
}

@media (max-width: 899px){
  .nav-toggle{
    display:inline-block;
    order:1;
    justify-self:start;
    align-self:center;
  }
  .site-nav{
    position:relative;
    width:auto;
	justify-self:start;
  }
  .nav-links{
    position:fixed;
    left:auto;
    right:16px;
    top:82px;
    width:min(92vw, 265px);
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow-md);
    padding:18px;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    display:none;
    z-index:1000;
  }
  .nav-links a{ display: block; line-height: 1.3; padding: 7px 12px;}
  .nav-links li{ margin:0; padding:0;}

  .nav-links.is-open{
    display:flex;
  }

  .header-cta{
    display:none;
  }
  .header-inner { 
	display:grid; 
	grid-template-columns:auto 1fr auto; 
	align-items:center; 
	gap:12px;
	}
  .brand{
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
  }
  .brand-logo{
    height:50px;
    width:auto;
    max-width:none;
    object-fit:contain;
  }
  .dropdown-menu{
    position:static;
    display:none;
    border:none;
    box-shadow:none;
    padding:0;
    margin-top:6px;
	list-style: none;
  }
  .dropdown-menu a{
	display: block;
	font-size: 0.83rem;
	padding: 6px 0 6px 18px;
  }
  .dropdown.open .dropdown-menu{
    display:block;
  }

  .split{
    grid-template-columns:1fr;
    gap:20px;
  }

  .split .grid-2{
    grid-template-columns:1fr;
    gap:14px;
    height:auto;
    width:100%;
  }

  .split .tile{
    width:100%;
    min-height:220px;
    height:auto;
    aspect-ratio:auto;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:flex-start;
  }
  
  .split-mobile-text-first > :first-child{ order: 2;}
  .split-mobile-text-first > :last-child { order: 1;}
	
  .tile-link {
	  text-decoration: none;
	  color: inherit;
	  cursor: pointer;
	  position: relative;
  }

  .tile-link:hover {
	  transform: translateY(-8px) scale(1.02);
	  box-shadow: 0 18px 40px rgba(2,6,23,.22);
  }
	
  .tile-tops{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    text-align:left;
    font-size:1.05rem;
    line-height:1.3;
  }

  .tile-cta,
  .tile-bottom {
	  transition: all 0.25s ease;
  }
	
  .tile-bottoms{
    display:block;
    margin-top:0;
    font-size:.85rem;
    line-height:1.5;
    word-break:normal;
    overflow-wrap:break-word;
  }

/* Animate CTA */
.tile-link:hover .tile-bottom {
  color: var(--accent);
  transform: translateX(4px);
}

/* Add subtle glow = premium feel */
.tile-link:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 2px rgba(217,193,121,0.35);
}

/* Mobile feedback */
.tile-link:active {
  transform: scale(0.97);
}

  .bullet-2{
    display:flex;
    padding:0;
    gap:8px;
    align-items:center;
  }
}

/* Container for the typing text */
.typing-container {
  font-family: var(--font-sans); /* Inter Font */
  color: var(--muted);           /* Professional Grey */
  text-align: center;
  margin: 0 auto;
  max-width: 90%;
  
  /* Desktop height */
  min-height: 4em; 
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .typing-container {
    /* Reserve more space for text wrapping on small screens */
    min-height: 8em; 
    font-size: 1rem;
  }
}

.cursor {
  color: var(--accent); /* Gold Cursor */
  font-weight: bold;
  animation: blink 0.8s steps(1) infinite;
  display: inline-block;
  margin-left:2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* -----------------------------
   5) Buttons
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(
    to right, 
    color-mix(in srgb, var(--primary), white 37%), 
    var(--primary)
  );
  color:white;
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{
  transform: translateY(-1px);
  background: linear-gradient(to right, var(--accent), #73612e);
  box-shadow:var(--shadow-md);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(39,49,83,.25);
  color:var(--primary);
}
.btn-ghost:hover{
  background: linear-gradient(to right, var(--accent), #faf3de);
}

/* -----------------------------
   6) Hero
------------------------------ */
.hero{
  padding:84px 0 64px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(1100px 600px at 20% 0%, rgba(217,193,121,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(39,49,83,.25), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:34px;
  align-items:center;
}
.hero h1{
  font-family:var(--font-serif);
  color:var(--text);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height:1.08;
  margin:10px 0 14px;
  letter-spacing:-.6px;
}
.hero .lead{
  font-size:0.95rem;
  color:var(--muted);
  margin:0 0 18px;
}
.lead-sub{
  font-size:0.89rem;
  color:var(--muted);
  margin:0 0 18px; 
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:rgba(39,49,83,.85);
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size:.8rem;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(217,193,121,.25);
}
.accent{ color:var(--primary); font-size:1.6rem; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; font-size:0.85rem; }

.hero-panel .panel-card{
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-sm);
}

.checklist li { font-size: 0.9rem; }
.checklist-sub li { font-size: 0.86rem; margin-bottom: 10px }

.panel-card h3{ margin:0 0 10px; color:var(--primary); font-size:1.1rem; }
.pill-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.pill{
  font-size:.85rem;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(39,49,83,.06);
  border:1px solid rgba(39,49,83,.12);
  color:var(--primary);
  font-weight:700;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.trust-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  background:linear-gradient(to right, #fff, #faf7f0);
  border-radius:999px;
  font-weight:600;
  font-size:0.9rem;
  color:rgba(39,49,83,.9);
}

.panel-metrics{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.metric{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background: linear-gradient(to right, #fff, #faf7f0);
}
.metric-value{
  font-size:1.45rem;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}
.metric-label{
  font-size:.82rem;
  color:var(--muted);
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-weight:700;
}

@media (max-width: 899px){
  .hero-inner{ grid-template-columns:1fr; }
  .panel-metrics{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px){
  .panel-metrics{ grid-template-columns:1fr; }
}

/* Hero background variants */
.hero-home{}
.hero-about{}
.hero-hr h1{
      font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.15;
}
.hero-it{}
.hero-accounting{}
.hero-contact{}

/* -----------------------------
   7) Cards / Grids
------------------------------ */
.section-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:24px;
}
.section-head h2{
  font-family:var(--font-serif);
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  margin:0;
  color:var(--text);
  letter-spacing:-.4px;
}
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:20px;
  box-shadow:var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover{
  transform: translateY(-2px);
  box-shadow:var(--shadow-md);
}
.card h3{ margin:10px 0 8px; color:var(--primary); font-weight:700;font-size:1.02rem;}
.card p{ margin:0 0 10px; color:var(--muted); font-size:.9rem;}
.card-icon{
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius:14px;
}
.card-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700; font-size:0.8rem;
  color:var(--primary);
  transition: all 0.3s ease;
}

.card-link:hover {
	color: var(--accent) !important;
}

.card-link:hover i {
	transform: translateX(5px);
	transition: transform 0.3s ease;
}

.reveal h2{font-size: clamp(1.6rem, 2.3vw, 2.1rem);}

@media (max-width: 980px){
  .cards-3{ grid-template-columns:1fr; }
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:start;
}

/* Ensure the grid of tiles in the right split row matches the full column height */
.split .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    height: 100%;
	align-content: start;
}

/* Use aspect-ratio to make the tiles taller and fill the space */
.split .tile {
    min-height:220px;
	width: 100%; /* Tiles take full column width within the grid */
    height: auto; /* Tiles take full grid row height */
    aspect-ratio: auto; /* Increase from the default (like 4/3) to make them significantly taller */
    object-fit: cover; /* Important: Ensures the background images are not distorted */
}


@media (max-width: 980px){
  .split{ grid-template-columns:1fr; }
}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.feature{
  display: flex;
  flex-direction: column;
  align-items: center;
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.feature-top{ margin-bottom:10px; display: flex; }
.badge{
  align-items: center;
  display:inline-flex;
  font-weight:800;
  font-size:.9rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--primary);
  background:linear-gradient(to right, #fff, #f7f9fa);
  border:1px solid rgba(39,49,83,.12);
  padding:6px 10px;
  border-radius:999px;
}
.feature h3{ margin:0 0 8px; color:var(--primary); }
.feature p{ margin:0; font-size:0.85rem; }
.feature-sub p{ margin:0; font-size:0.87rem; }
.bullets{ display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.bullet{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}

.bullet-2{
  display:inline-flex;
  gap:14px;
  align-items:flex-start;
  border-radius:16px;
  padding:14px;
}

.bullet i{
  width:30px; height:30px;
  display:grid; place-items:center;
  border-radius:14px;
  background:background:linear-gradient(to right, #fff, #faf9f5);

  color:var(--primary);
}

.bullet h4{ margin:0; color:var(--primary); font-size:0.9rem; }
.bullet p{ margin:4px 0 0; font-size:0.85rem;}

.bullets-list {
    list-style: none;
    padding-left: 0;
}
.bullets-list-sub {
    list-style: none;
    padding-left: 0;
}
.bullets-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size:0.87rem;
}

.bullets-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.step-num{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  color:var(--primary);
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid rgba(217,193,121,.35);
  margin-bottom:10px;
}
.step h3{ margin:0 0 8px; color:var(--primary); }

@media (max-width: 980px){
  .steps{ grid-template-columns:1fr; }
}

/* Quotes */
.quote{
  margin:0;
  background:linear-gradient(to right, #fff, #faf9f5);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:20px;
  box-shadow:var(--shadow-sm);
}
.quote blockquote{ margin:0 0 12px; color:var(--text); font-size:.85rem; }
.quote figcaption{ color:var(--muted); font-weight:650; font-size:.8rem;}

/* Divider */
.divider{
  border:0;
  border-top:1px solid var(--line);
  margin:36px 0;
}

/* -----------------------------
   8) Tiles (Service grids)
------------------------------ */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;

}
@media (max-width: 620px){
  .grid-2{ grid-template-columns:1fr; }
}

.tile{
  text-align:left;
  border:1px solid var(--line);
  background:var(--cardbg);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  justify-content: space-between;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow:var(--shadow-md);
}
.tile-top{
  display:block;
  font-weight:700;
  color:var(--accent);
  font-size:.9rem;
}

.tile-bottom{
  display:block;
  color:var(--muted);
  margin-top:4px;
  font-size: 0.75rem;
  font-weight:400;
}

.tile-bottoms{
  display:block;
  color:var(--muted);
  margin-top:4px;
  font-weight:380;
  font-size:1rem;
}

.tile-tops{
  display:block;
  text-align:center;
  font-weight:700;
  font-size:1.1rem;
  color:var(--accent);
}

.tile-image{
  position:relative;
  overflow:hidden;
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}
.tile-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,.18) 0%, rgba(15,23,42,.72) 90%);
  z-index:1;
}
.tile-image .tile-top {
    position: relative;
    z-index: 2;
    color: var(--accent) !important; 
    opacity: 1 !important; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.tile-image .tile-bottom{ position:relative; z-index:2; color:#fff; }
.tile-image .tile-bottom{ opacity:.9; }



/* Background images */
.hr-recruitment{ background:url('images/recruitment.webp') center/cover no-repeat; }
.hr-onboarding{ background:url('images/onboarding.webp') center/cover no-repeat; }
.hr-payroll{ background:url('images/payroll.webp') center/cover no-repeat; }
.hr-records{ background:url('images/records.webp') center/cover no-repeat; }
.hr-performance{ background:url('images/performance.webp') center/cover no-repeat; }
.hr-training{ background:url('images/training.webp') center/cover no-repeat; }
.hr-relations{ background:url('images/relations.webp') center/cover no-repeat; }
.hr-audit{ background:url('images/hr-compliance.webp') center/cover no-repeat; }

.it-repairs{ background:url('images/repair_maintenance.webp') center/cover no-repeat; }
.it-management{ background:url('images/asset_management.webp') center/cover no-repeat; }
.it-support{ background:url('images/it_support.webp') center/cover no-repeat; }
.it-consultancy{ background:url('images/it_consultancy.webp') center/cover no-repeat; }
.it-network{ background:url('images/networking.webp') center/cover no-repeat; }
.it-lanwan{ background:url('images/lan_wan.webp') center/cover no-repeat; }
.it-wireless{ background:url('images/wireless.webp') center/cover no-repeat; }
.it-security{ background:url('images/network_security.webp') center/cover no-repeat; }

.acc-bookkeeping{ background:url('images/bookkeeping.webp') center/cover no-repeat; }
.acc-reconciliation{ background:url('images/reconciliation.webp') center/cover no-repeat; }
.acc-reporting{ background:url('images/financial_reporting.webp') center/cover no-repeat; }
.acc-consultancy{ background:url('images/accounting_consultancy.webp') center/cover no-repeat; }
.acc-tax-services{ background:url('images/tax_compliance.webp') center/cover no-repeat; }
.acc-internal-audit{ background:url('images/audit.webp') center/cover no-repeat; }
.acc-registration{ background:url('images/registration.webp') center/cover no-repeat; }
.acc-consultation{ background:url('images/compliance.webp') center/cover no-repeat; }

/* -----------------------------
   9) FAQ (Accordion)
------------------------------ */
.faq{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  background:transparent;
  border:none;
  padding:16px 18px;
  font-weight:800;
  color:var(--primary);
  cursor:pointer;
  border-bottom:1px solid var(--line);
}
.faq-q::after{
  content:"+";
  float:right;
  font-weight:900;
  opacity:.65;
}
.faq-q[aria-expanded="true"]::after{ content:"–"; }
.faq-a{
  padding:0 18px 16px;
  color:var(--muted); font-size:0.8rem;
}

/* -----------------------------
   10) Contact
------------------------------ */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
}
@media (max-width: 980px){
  .contact-grid{ grid-template-columns:1fr; }
}

.contact-cards{ display:flex; flex-direction:column; gap:12px; margin-top:14px; }
.contact-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:14px;
  box-shadow:var(--shadow-sm);
}
.contact-card i{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(217,193,121,.18);
  border:1px solid rgba(217,193,121,.35);
  color:var(--primary);
}
.form-card{
  background:var(--cardbg);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.contact-form{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
.form-row{ display:flex; flex-direction:column; gap:6px; }
label{ font-weight:800; color:var(--primary); }
input, textarea{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-size:1rem;
}
textarea{ resize:vertical; min-height:150px; }
.field-error{ color:#b42318; min-height:1.1em; }
.form-message{ margin:10px 0 0; font-weight:700; }

/* -----------------------------
   11) Modals
------------------------------ */
.modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:24px;
  background:rgba(2,6,23,.75);
  backdrop-filter: blur(8px);
  z-index:9999;
}
.modal[hidden]{ display:none; }
.modal-content{
  width:min(560px, 100%);
  max-height:75vh;     
  overflow-y:auto;      
  background:var(--surface);
  border:1px solid rgba(230,234,242,.65);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-md);
  position:relative;
}
.modal-content h2{
  font-family:var(--font-serif);
  margin:0 0 8px;
  color:var(--primary);
}
.modal-content p{ margin:0; color:var(--muted); margin-bottom: 0.8rem}
.close{
  position:absolute;
  top:10px;
  right:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  width:40px;
  height:40px;
  border-radius:12px;
  cursor:pointer;
  font-size:22px;
  font-weight:900;
  color:var(--primary);
}

/* -----------------------------
   12) CTA Band
------------------------------ */
.cta-band{
  padding:44px 0;
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(217,193,121,.45), transparent 60%),
    radial-gradient(800px 400px at 85% 0%, rgba(39,49,83,.35), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  color:var(--primary);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta-band h2{
  font-family:var(--font-serif);
  margin:0 0 6px;
  letter-spacing:-.4px;
}
.cta-band .muted{ color:rgba(39,49,83,.78); }
@media (max-width: 820px){
  .cta-inner{ flex-direction:column; align-items:flex-start; }
}

/* -----------------------------
   13) Footer
------------------------------ */
.site-footer{
  background:#0b1020;
  color:#dbe2ff;
  padding:52px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:22px;
}
.site-footer h3, .site-footer h4{
  margin:0 0 10px;
  color:var(--accent);
}
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-links a{ color:#dbe2ff; opacity:.9; font-size:.79rem;}
.footer-links a:hover {
    opacity: 1;
    text-decoration: none; 
    background-color: var(--cardbg);
    color: #0b1020 !important; 
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: -8px; 
    transition: all var(--transition);
}
.site-footer .muted{ color:rgba(219,226,255,.78); font-size:0.85rem; }
.social-links{ display:flex; gap:12px; margin-top:12px; }
.social-links a{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(219,226,255,.08);
  border:1px solid rgba(219,226,255,.12);
}
.footer-bottom{ margin-top:28px; padding-top:18px; border-top:1px solid rgba(219,226,255,.12); text-align:center;}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* -----------------------------
   14) Motion (Reveal)
------------------------------ */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn{ transition:none; }
}

/* -----------------------------
   15) Whatsapp
------------------------------ */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    color: white;
}

.whatsapp-sticky img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.whatsapp-sticky span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* --- Mobile Responsive Section --- */
@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        padding: 10px; /* Smaller padding on mobile */
        border-radius: 50%; /* Makes it a perfect circle */
    }

    .whatsapp-sticky span {
        display: none; /* Hides the "Chat with us" text on small screens to save space */
    }

    .whatsapp-sticky img {
        margin-right: 0; /* Centers the icon in the circle */
        width: 30px;
        height: 30px;
    }
}
