body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #f8f8f8;
}

.top-nav {
    background: #111;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.top-nav a {
    color: #d4af37;
    font-size: 16px;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.top-nav a:hover {
    color: #fff;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 45px;
    margin-right: 12px;
}

.hero {
    padding: 120px 20px;
    text-align: center;
    background: url('/assets/images/hero.jpg') center/cover no-repeat;
}

.hero h2 {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 10px;
}

.btn {
    padding: 12px 25px;
    background: #d4af37;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.page-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.service-box {
    background: #111;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #d4af37;
}

.site-footer {
    background: #111;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #888;
    font-size: 14px;
}

/* ---------- HERO CAROUSEL ---------- */
.hero-carousel { position: relative; overflow: hidden; }
.hero-carousel .slides { position: relative; height: 70vh; min-height: 420px; max-height: 920px; }
.hero-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel .slide.active { opacity: 1; z-index: 2; }

.hero-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.56);
}

/* Overlay content */
.hero-carousel .slide-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 12px 22px;
  max-width: 1100px;
  z-index: 4;
}

.hero-carousel .main-tagline {
  font-size: 28px;
  letter-spacing: 0.6px;
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.6);
}

/* supporting single-line tagline */
.hero-carousel .slide-line {
  font-size: 18px;
  margin: 6px 0 16px 0;
  color: #f3e9d6;
}

/* CTA */
.hero-carousel .hero-cta {
  display: inline-block;
  background: #d4af37;              /* gold */
  color: #0b0b0b;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

/* dots */
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.carousel-dots .dot.active { background: #d4af37; }

/* responsive adjustments */
@media (max-width: 900px) {
  .hero-carousel .main-tagline { font-size: 20px; }
  .hero-carousel .slide-line { font-size: 14px; }
  .hero-carousel .slides { height: 54vh; min-height: 360px; }
}

@media (max-width: 480px) {
  .hero-carousel .main-tagline { font-size: 18px; }
  .hero-carousel .slide-overlay { padding: 8px; }
  .carousel-dots .dot { width: 10px; height: 10px; }
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
}

/* WhatsApp floating button (gold circle with SVG) */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}
.whatsapp-float svg { display:block; }

/* --- Expertise: refined layout (no grey dividers, white bullets) --- */
.expertise-section { padding: 60px 18px; background: #050505; color: #f7f5f2; }
.section-title.flamboyant {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title.flamboyant::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 160px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg,#d4af37,#e8d2a1);
  box-shadow: 0 6px 18px rgba(212,175,55,0.12);
}

/* layout */
.expertise-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

/* each block */
.expert-block {
  background: transparent;
  padding: 20px 18px;
  border-radius: 10px;
}

/* header row: icon + titles */
.expert-head {
  display:flex;
  gap: 14px;
  align-items:center;
  margin-bottom: 14px;
}
.expert-svg { width:64px; height:64px; flex: 0 0 64px; display:block; }
.expert-head h3 { margin:0; font-size:20px; color:#fff; letter-spacing:0.2px; }
.expert-head .muted { margin:4px 0 0 0; color:#e9dbcc; font-size:13px; }

/* list styling — simple white bullets */
.exp-list-simple { margin: 10px 0 0 18px; padding: 0; list-style-type: disc; color:#e6e9e8; }
.exp-list-simple li { margin: 10px 0; font-size:15px; line-height:1.5; color:#e6e7e5; }

/* strong label style inside li */
.exp-list-simple li strong { color:#fff; font-weight:700; }

/* hover subtle lift */
.expert-block:hover { transform: translateY(-6px); transition: transform .28s ease; }

/* responsive */
@media (max-width: 980px){
  .expert-wrap { grid-template-columns: repeat(2,1fr); }
  .expertise-wrap { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .expertise-wrap { grid-template-columns: 1fr; gap:16px; padding: 22px; }
  .section-title.flamboyant { font-size: 28px; }
}

.reach-link{
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(212,175,55,0.4);
  padding-bottom: 2px;
  transition: 0.25s ease;
}
.reach-link:hover{
  color: #f2d68c;
  border-color: #f2d68c;
}
.reach-line{
  text-align: center;
  margin: 40px auto 10px;
  font-size: 18px;
  color: #f7f5f2;
  max-width: 900px;
  line-height: 1.5;
}

.reach-box{
  max-width: 1000px;
  margin: 50px auto 20px;
  padding: 24px 26px;
  border-left: 6px solid #d4af37;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.reach-box p{
  font-size: 20px;
  line-height: 1.55;
  color: #f2f2f2;
  margin: 0;
  font-weight: 500;
}

.reach-link{
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(212,175,55,0.4);
  transition: 0.25s ease;
}

.reach-link:hover{
  color: #f8e5b6;
  border-color: #f8e5b6;
}

.glow-style{
  background: linear-gradient(90deg, rgba(212,175,55,0.06), rgba(212,175,55,0.12));
  border: none;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 0 30px rgba(212,175,55,0.18);
}

.glow-style p{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.reach-banner{
  background: #0a0a0a;
  padding: 30px 20px;
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
  text-align: center;
  margin: 60px 0 30px;
}

.reach-banner p{
  font-size: 22px;
  line-height: 1.5;
  color: #f7f5f2;
  font-weight: 600;
}

/* ABOUT PAGE — layout & style */
.page-hero.about-hero{ background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65)); padding: 48px 12px 36px; text-align:center; }
.page-hero .page-hero-inner{ max-width:1100px; margin:0 auto; color:#fff; }
.page-hero h1{ font-size:36px; margin:8px 0 6px; color:#fff; letter-spacing:0.3px; }
.page-hero .hero-sub{ color:#e8dcca; font-size:16px; margin:0; }

/* main containers */
.about-main{ background: #050505; color:#e9e8e6; }
.container-narrow{ max-width:1000px; margin:0 auto; padding:28px 18px; }

/* section heads */
.section-head{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.section-head h2{ font-size:28px; margin:0; color:#fff; font-weight:700; }
.head-icon{ width:34px; height:34px; display:block; }

/* alternating sections */
.about-section{ background:transparent; border-top: 1px solid rgba(255,255,255,0.02); }
.about-section.alt{ background: rgba(255,255,255,0.01); }

/* lead paragraph */
.lead{ font-size:16px; line-height:1.7; color:#e8e7e5; margin:8px 0 0; }

/* CTA strip & final CTA */
.cta-strip{ background: rgba(212,175,55,0.03); padding:18px 0; margin:18px 0; border-left:6px solid rgba(212,175,55,0.06); }
.cta-strip p{ text-align:center; margin:0; color:#efe8d8; font-weight:600; }
.cta-link{ color:#d4af37; font-weight:700; text-decoration:none; border-bottom:2px solid rgba(212,175,55,0.12); padding-bottom:2px; }

.final-cta{ padding:28px 0 48px; text-align:center; margin-top:24px; }
.final-cta-inner{ display:inline-block; background:rgba(255,255,255,0.02); padding:22px 28px; border-radius:8px; box-shadow:0 14px 40px rgba(0,0,0,0.5); border-top:3px solid rgba(212,175,55,0.08); }
.final-cta-inner h3{ margin:0 0 8px; color:#fff; font-size:22px; }
.cta-button{ background:#d4af37; color:#0b0b0b; padding:10px 18px; border-radius:6px; font-weight:700; text-decoration:none; }

/* three-grid cards */
.three-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:12px; }
.grid-card{ background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00)); padding:18px; border-radius:10px; min-height:120px; box-shadow: 0 10px 22px rgba(0,0,0,0.45); }
.grid-card h3{ margin:0 0 6px; color:#fff; }
.grid-card p{ margin:0; color:#e7e7e6; line-height:1.5; }

/* team grid */
.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin-top:16px; }
.team-item{ background: transparent; padding:10px; border-radius:8px; color:#efeef0; display:flex; flex-direction:column; gap:6px; }
.team-item strong{ color:#fff; }

/* list readability */
.exp-list-simple { margin-left:18px; }

/* reveal effect (initial hidden) */
[data-reveal]{ opacity:0; transform: translateY(14px); transition: opacity .58s ease, transform .6s cubic-bezier(.2,.9,.3,1); will-change: opacity, transform; }
[data-reveal].in-view{ opacity:1; transform: translateY(0); }

/* responsive */
@media (max-width: 980px){
  .three-grid{ grid-template-columns: repeat(2,1fr); }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .three-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .container-narrow{ padding:18px; }
  .page-hero h1{ font-size:28px; }
}

/* SERVICES PAGE — Tabs (Option A) */
.services-hero{ padding:36px 12px 18px; text-align:center; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.6)); color:#fff; }
.services-hero .page-hero-inner{ max-width:1100px; margin:0 auto; }
.services-hero h1{ font-size:34px; margin:6px 0 6px; }
.services-hero .hero-sub{ color:#e7dcc0; }

/* tabs */
.tabs-wrap{ display:flex; gap:8px; justify-content:center; margin:22px 0 20px; }
.tab{ background:transparent; border:0; color:#dcdcdc; padding:10px 18px; font-weight:700; cursor:pointer; border-bottom:3px solid transparent; transition: all .22s ease; }
.tab:hover{ color:#fff; }
.tab.active{ color:#fff; border-bottom-color:#d4af37; }

/* panels */
.tab-panels{ max-width:1200px; margin: 10px auto 60px; padding:0 14px; }
.panel{ display:none; opacity:0; transition: opacity .42s ease; }
.panel.active{ display:block; opacity:1; }

/* grid */
.panel-grid{ display:flex; gap:22px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.panel-col{ flex:1 1 48%; min-width:280px; }

/* allow full vertical images to display in flow (no cropping) */
.image-col img{
  width:100%;
  height:auto;        /* let height expand */
  max-height:none;    /* remove the 520px cap */
  object-fit:contain; /* avoid weird cropping */
  border-radius:10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  display:block;
}

/* text styling */
.panel-title{ font-size:26px; margin:0 0 8px; color:#fff; }
.panel-intro{ color:#e8e1d3; margin-bottom:16px; }
.service-block{ margin-bottom:20px; padding-bottom:14px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.service-title{ font-size:18px; margin:0 0 6px; color:#fff; }
.service-desc{ margin:0 0 12px; color:#e9e7e5; }

/* offerings — gold dividers */
.offerings{ margin-left:6px; }
.offering{ padding:10px 0; }
.offering h4{ margin:0 0 4px; color:#fff; font-size:15px; font-weight:700; }
.offering p{ margin:0 0 8px; color:#e7e7e6; font-size:14px; }
.gold-divider{
  height:4px;
  width:58px;
  background: linear-gradient(90deg,#d4af37,#f0dca8);
  border-radius:4px;
  margin:10px 0;
  box-shadow: 0 6px 18px rgba(212,175,55,0.08);
}

/* small responsive tweaks */
@media (max-width: 980px){
  .panel-grid{ flex-direction:column; }
  .panel-col{ flex: 1 1 100%; }
  .image-col img{ max-height:420px; }
}
@media (max-width: 640px){
  .tabs-wrap{ gap:6px; padding:0 6px; }
  .tab{ padding:8px 12px; font-size:15px; }
  .panel-title{ font-size:20px; }
  .offering p{ font-size:13px; }
}

/* Contact page */
.contact-main { padding: 36px 12px 80px; color:#eee; }
.contact-hero { text-align:center; margin-bottom:18px; }
.contact-grid { display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; }
.contact-col { flex:1 1 48%; min-width:280px; }
.info-col { max-width:420px; }

/* cards */
.card { background: rgba(255,255,255,0.02); padding:18px; border-radius:10px; box-shadow:0 12px 32px rgba(0,0,0,0.5); margin-bottom:18px; }
.card h2, .card h3, .card h4 { margin:0 0 8px; }
.lead { color:#e6dfd0; }

/* form */
.field{ display:block; margin:12px 0; }
.field .label-text{ display:block; font-size:13px; color:#dcd6c6; margin-bottom:6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field input[type="date"], .field textarea {
  width:100%; padding:10px 12px; background: #0b0b0b; border: 1px solid rgba(255,255,255,0.04); color:#fff; border-radius:6px; box-sizing:border-box;
}
.field textarea{ min-height:120px; }

.form-actions{ display:flex; gap:10px; align-items:center; margin-top:12px; }
.btn-primary{ background:#d4af37; color:#0b0b0b; padding:10px 16px; border-radius:8px; border:0; font-weight:700; cursor:pointer; }
.btn-ghost{ background:transparent; color:#dcd6c6; padding:10px 12px; border-radius:8px; border:1px solid rgba(255,255,255,0.04); }

/* message area */
.form-message{ margin-top:12px; color:#fff; font-weight:600; }
.form-message.success{ color:#c7e6c7; }
.form-message.error{ color:#ffc9c9; }

/* contact card & socials */
.contact-card p{ margin:6px 0; color:#e7dfd2; }
.socials{ display:flex; gap:10px; margin-top:10px; }
.social svg{ display:block; }

/* responsive */
@media (max-width:980px){
  .contact-grid{ flex-direction:column; }
  .contact-col{ flex:1 1 100%; }
}

/* Brochure card */
.brochure-card { display:flex; padding:16px; gap:14px; align-items:center; justify-content:space-between; background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01)); border-left:6px solid #d4af37; margin-bottom:18px; }
.brochure-inner{ display:flex; gap:18px; align-items:center; width:100%; }
.brochure-left{ flex:1 1 65%; }
.brochure-right{ flex:1 1 35%; text-align:right; color:#e9e6e0; }
.brochure-card h3{ margin:0 0 6px; color:#fff; font-size:18px; }
.brochure-card p.muted{ color:#e6dccd; margin:0 0 8px; }

/* brochure button */
.brochure-download{ display:inline-flex; gap:10px; align-items:center; background:#d4af37; color:#0b0b0b; padding:8px 12px; border-radius:8px; text-decoration:none; font-weight:700; }
.brochure-download svg{ transform:translateY(1px); }

/* Fancy file input styles */
.file-row{ display:flex; gap:10px; align-items:center; }
.file-btn{ display:inline-block; background:transparent; border:2px solid rgba(212,175,55,0.12); color:#d4af37; padding:8px 12px; border-radius:6px; cursor:pointer; font-weight:700; }
.real-file{ display:none; }
.file-name{ color:#e8e5dd; font-size:13px; }

/* small responsive */
@media (max-width:980px){
  .brochure-card{ flex-direction:column; align-items:flex-start; text-align:left; }
  .brochure-right{ text-align:left; }
}

/* ---------- Global link color: gold theme ---------- */ /* Base style for all links site-wide */ a { color: #d4af37; /* primary gold */ text-decoration: none; transition: color .18s ease, text-decoration .12s ease; }
