/*
Theme Name: Swift Starter
Version: 1.0.4
Text Domain: swift-starter
*/

/* ===================== Base / Reset ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}
.container { width: min(1100px, 92%); margin-inline: auto; }
.grid { display: grid; gap: 1rem; }
.hidden { display: none !important; }

/* ===================== Theme Variables ===================== */
:root{
  /* Utility bar */
  --blue-1:#1f3aa6;
  --blue-2:#2f6be5;
  --topbar-font: 12px;
  --icon: 14px;
  --icon-box: 22px;

  /* Header / brand */
  --header-h: 64px;
  --header-h-scrolled: 54px;
  --logo-inset: 8px;
  --brand-gap: .30rem;

  /* Luxury menu accents */
  --lux-accent:#6d8cff;
  --lux-ink:#22304a;
  --lux-radius:12px;
  --lux-shadow:0 14px 28px rgba(17,23,54,.12);

  /* Footer tokens */
  --footer-ink:#e7ecff;
  --footer-ink-soft:#cdd6ff;
  --footer-ink-muted:#9fb0ff;
  --footer-bg-1:#0b1739;
  --footer-bg-2:#132a7a;
  --footer-accent:#6d8cff;
  --footer-accent-2:#9aaeff;
  --footer-card-bg:rgba(255,255,255,.06);
  --footer-border:rgba(255,255,255,.12);
  --footer-shadow:0 18px 40px rgba(0,0,0,.18);
  --footer-radius:16px;
  --footer-gap:1.25rem;
  --footer-title:0.95rem;
  --footer-text:0.92rem;
  --footer-small:0.85rem;
}

/* ===================== Top / Utility Bar ===================== */
.top-bar{
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color:#fff;
  font-size: var(--topbar-font);
  line-height:1.2;
  padding:.30rem 0;
}
.top-bar-inner{ display:flex; align-items:center; justify-content:space-between; gap:.75rem; }
.top-bar-left, .top-bar-right{ display:flex; align-items:center; gap:1.1rem; flex-wrap:wrap; }
.top-item{ display:inline-flex; align-items:center; gap:.4rem; color:#fff; text-decoration:none; opacity:.95; }
.top-item:hover{ opacity:1; }
.ti{ font-size: calc(var(--icon) - 2px); line-height:1; }
.top-bar-right .social{
  display:inline-flex; align-items:center; justify-content:center;
  width: var(--icon-box); height: var(--icon-box);
  color:#fff; opacity:.9; border-radius:999px;
  transition:opacity .15s, transform .15s, color .15s, background .15s;
  text-decoration:none;
}
.top-bar-right .social svg{ width: var(--icon); height: var(--icon); display:block; }
.top-bar-right .social:hover{ opacity:1; transform: translateY(-1px); }
.top-bar-right .social[aria-label="Facebook"]:hover { color:#1877f2; }
.top-bar-right .social[aria-label="Twitter"]:hover  { color:#0f1419; }
.top-bar-right .social[aria-label="Instagram"]:hover{ color:#e1306c; }
.top-bar-right .social[aria-label="LinkedIn"]:hover{ color:#0a66c2; }

/* ===================== Header ===================== */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e9eef5;
  transition: box-shadow .2s ease, background .2s ease, padding .25s ease;
  padding: .55rem 0;
}
.site-header.is-scrolled{
  padding: .40rem 0;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.header-inner{
  min-height: var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
}
.site-header.is-scrolled .header-inner{ min-height: var(--header-h-scrolled); }
.site-header:hover{ box-shadow: 0 12px 25px rgba(0,0,0,.08); }

/* Brand (logo + text) */
.brand{ display:flex; align-items:center; gap: var(--brand-gap); text-decoration:none; color:inherit; }
.brand-logo, .custom-logo-link{ display:inline-flex; align-items:center; margin:0; padding:0; line-height:0; }
.custom-logo{
  height: calc(var(--header-h) - var(--logo-inset));
  width:auto; object-fit:contain; transition: height .25s ease;
}
.site-header.is-scrolled .custom-logo{ height: calc(var(--header-h-scrolled) - var(--logo-inset)); }
.brand-text{ display:flex; flex-direction:column; justify-content:center; line-height:1.15; margin:0; min-width:0; }
.site-title{
  font-size:1.0rem; font-weight:700; color:#23418f; letter-spacing:-0.2px; margin:0;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.site-tagline{
  font-size:.68rem; font-weight:500; color:#31466d; margin-top:.12rem; letter-spacing:.5px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
/* To hide title/tagline (logo-only), uncomment: */
/* .site-title, .site-tagline{ display:none; } */

/* ===================== Navigation ===================== */
.navbar{ display:flex; align-items:center; gap:1rem; }
.primary-menu{ display:flex; align-items:center; gap:.6rem; margin:0; padding:0; list-style:none; }
.primary-menu li{ list-style:none; }
.primary-menu a{
  display:inline-block; padding:.45rem .7rem; text-decoration:none;
  color:#111; border-radius:.65rem; font-weight:500; position:relative;
  border:1px solid transparent; overflow:hidden;
  transition: color .25s, background .25s, border-color .25s, box-shadow .25s;
}

/* Luxury hover (underline + sheen + soft pill) */
.primary-menu a::after{
  content:""; position:absolute; left:14%; right:14%; bottom:6px; height:2px;
  background: currentColor; opacity:.55; transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .35s ease;
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after{ transform: scaleX(1); }
.primary-menu a::before{
  content:""; position:absolute; inset:0 auto 0 -150%; width:120%; height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 22%, rgba(255,255,255,0) 44%);
  transform: skewX(-14deg); transition: transform .6s ease; pointer-events:none;
}
.primary-menu a:hover::before{ transform: translateX(180%) skewX(-14deg); }
.primary-menu a:hover,
.primary-menu .current-menu-item > a{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,248,255,.95));
  border-color: rgba(109,140,255,.25);
  box-shadow: var(--lux-shadow);
  color: var(--lux-ink);
}

/* Active marker (gradient pill) */
.primary-menu .current-menu-item > a{
  background: linear-gradient(135deg, #6d8cff, #23418f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(109,140,255,.35);
}
.primary-menu .current-menu-item > a::after{ background: rgba(255,255,255,.9); opacity:.7; }

/* Desktop dropdowns */
@media (min-width:901px){
  .primary-menu li{ position:relative; }

  /* level-1: drop down */
  .primary-menu > li > .sub-menu{
    position:absolute; top:100%; left:0; display:none; min-width:220px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    border:1px solid rgba(109,140,255,.22); border-radius: var(--lux-radius);
    padding:.6rem; box-shadow: 0 20px 40px rgba(17,23,54,.12); z-index:1001;
    opacity:0; transform: translateY(8px); pointer-events:none; transition: opacity .25s, transform .25s;
  }
  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu{
    display:block; opacity:1; transform: translateY(0); pointer-events:auto;
  }

  /* level-2: fly right; level-3: fly left */
  .primary-menu .sub-menu li > .sub-menu{ top:0; left:100%; transform: translateX(8px); opacity:0; }
  .primary-menu .sub-menu .sub-menu li > .sub-menu{ left:auto; right:100%; }
  .primary-menu .sub-menu li:hover > .sub-menu,
  .primary-menu .sub-menu li:focus-within > .sub-menu{ transform: translateX(0); opacity:1; }

  .primary-menu .sub-menu li a{
    position:relative; padding:.5rem .7rem; border-radius:10px; color:#3c4f6d;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .primary-menu .sub-menu li a::before{
    content:""; position:absolute; left:.55rem; top:50%;
    width:0; height:2px; background: var(--lux-accent); opacity:.8; transform: translateY(-50%);
    transition: width .2s;
  }
  .primary-menu .sub-menu li a:hover{
    background: rgba(109,140,255,.08); color: var(--lux-ink); padding-left:.95rem;
  }
  .primary-menu .sub-menu li a:hover::before{ width:10px; }
}

/* Mobile nav */
.menu-toggle{
  display:none; align-items:center; justify-content:center;
  width:40px; height:40px; border:1px solid #e5e7eb; border-radius:.75rem; background:#fff;
}
.menu-toggle:focus{ outline:2px solid #2563eb; outline-offset:2px; }
@media (max-width:900px){
  .top-bar{ font-size: 11px; }
  .menu-toggle{ display:inline-flex; }
  .primary-menu{
    display:none; position:absolute; top:64px; left:0; right:0;
    background:#fff; border-bottom:1px solid #eee; padding:.5rem .5rem 1rem;
    flex-direction:column;
  }
  .primary-menu.open{ display:flex; }
  .primary-menu .sub-menu{
    position:static; display:none; padding-left:.5rem; border:0; box-shadow:none; background:transparent;
  }
  .primary-menu .sub-menu.open{ display:block; }
  .menu-item-has-children > a::after{ content:'▸'; margin-left:.4rem; font-size:.8rem; }
  .menu-item-has-children[aria-expanded="true"] > a::after{ content:'▾'; }

  :root{ --header-h: 56px; --header-h-scrolled: 48px; --logo-inset: 6px; }
  .site-title{ font-size:1rem; }
  .site-tagline{ font-size:.8rem; }
}

/* Flip a submenu to the LEFT when JS adds .flip-left */
@media (min-width:901px){
  .primary-menu .sub-menu.flip-left{
    left: auto !important;
    right: 100% !important;
  }
  /* if a flipped submenu has its own children, keep flying LEFT */
  .primary-menu .sub-menu.flip-left li > .sub-menu{
    left: auto !important;
    right: 100% !important;
  }
}

/* ====================Free Consultation <START>========= */
.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.btn-consultation {
  background: linear-gradient(90deg, #1d3ede, #3e7bff);
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(30, 80, 250, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-consultation:hover {
  background: linear-gradient(90deg, #3e7bff, #1d3ede);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 80, 250, 0.4);
}
/* ====================Free Consultation <END>========= */

/* ===================== Main / Content ===================== */
main{ padding:1.5rem 0; }
.hero{ padding:clamp(3rem, 8vw, 6rem) 0; text-align:center; }
.hero h1{ font-size:clamp(1.8rem, 5vw, 3rem); margin:0 0 .5rem; }
.hero p{ color:#4b5563; margin:.25rem 0 0; }
.entry-title{ margin:0 0 .5rem; font-size:clamp(1.5rem, 4vw, 2rem); }
.entry-content img, .page-content img{ max-width:100%; height:auto; }

/* Sidebar (optional) */
.widget-area{ padding:1rem; border:1px solid #eee; border-radius:.75rem; background:#fafafa; }

/* Buttons */
.btn{ display:inline-block; padding:.6rem .9rem; border-radius:.7rem; border:1px solid #e5e7eb; text-decoration:none; }
.btn:hover{ background:#f8fafc; }

/* ===================== Luxury Footer (full-bleed bg) ===================== */
/* Break out of parent wrappers so gradient spans full width */
.luxe-footer{
  position: relative; box-sizing: border-box;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, var(--footer-bg-2), var(--footer-bg-1));
  color: var(--footer-ink);
  padding: 2.2rem 0 0;
  overflow: hidden;
}
.luxe-footer .container{ max-width: 1200px; width: 92%; margin-inline: auto; }

/* Decorative glow */
.luxe-footer::before{
  content:""; position:absolute; inset:auto -20% 30% -20%; height:280px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(109,140,255,.25), rgba(109,140,255,0));
  filter: blur(40px); opacity:.45; pointer-events:none;
}

/* Grid */
.footer-grid{
  display:grid; gap: var(--footer-gap);
  grid-template-columns: 1.1fr .9fr 1.2fr;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr; } }

/* Cards */
.footer-card{
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-border);
  border-radius: var(--footer-radius);
  padding: 1.1rem;
  backdrop-filter: blur(6px);
  box-shadow: var(--footer-shadow);
}

/* Brand + mini text */
.footer-brand{ display:flex; align-items:flex-start; gap:.85rem; }
.footer-logo img{ height:42px; width:auto; display:block; }
.footer-brand-text{ display:flex; flex-direction:column; }
.footer-site-title{
  color:#fff; font-weight:700; margin:0; line-height:1.2; letter-spacing:-.2px; font-size:1.05rem;
}
.footer-site-tag{ color:var(--footer-ink-soft); margin:.2rem 0 0; font-size:.88rem; }

/* Footer menu + services list */
.footer-title{
  color:#dbe3ff; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; font-size: var(--footer-title); margin:0 0 .6rem;
}
.footer-nav{
  list-style:none; margin:0 0 .6rem; padding:0; display:flex; gap:.8rem; flex-wrap:wrap;
}
.footer-nav a{
  color:var(--footer-ink); text-decoration:none; opacity:.9;
  padding:.25rem .45rem; border-radius:8px;
  transition: opacity .2s, background .2s, transform .2s;
}
.footer-nav a:hover{ opacity:1; background: rgba(255,255,255,.06); transform: translateY(-1px); }

.footer-list{
  list-style:none; margin:0; padding:0; display:grid; gap:.4rem; font-size: var(--footer-text);
}
.footer-list a{
  color:var(--footer-ink); text-decoration:none; opacity:.9;
  border:1px solid transparent; border-radius:10px; padding:.35rem .5rem;
  display:inline-flex; align-items:center; gap:.4rem;
  transition: opacity .2s, transform .2s, border-color .2s, background .2s;
}
.footer-list a::before{
  content:""; width:8px; height:2px; border-radius:2px; background: var(--footer-accent); opacity:.85; transform: translateY(1px);
}
.footer-list a:hover{
  opacity:1; transform: translateX(2px);
  border-color: rgba(157,173,255,.25);
  background: rgba(255,255,255,.05);
}

/* Map */
.footer-map{
  overflow:hidden; border-radius: calc(var(--footer-radius) - 2px);
  aspect-ratio: 16/10; background:#0d1c4f;
  border: 1px solid var(--footer-border);
}
.footer-map iframe{ width:100%; height:100%; border:0; display:block; filter: saturate(110%) contrast(105%); }

/* Address */
.address{ display:grid; gap:.35rem; margin-top:.75rem; font-size: var(--footer-text); }
.address .row{ display:flex; gap:.5rem; align-items:flex-start; }
.address .label{ color:var(--footer-ink-muted); min-width:78px; }
.address .value{ color:var(--footer-ink); }
.address a{ color:inherit; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.25); }
.address a:hover{ border-bottom-color: rgba(255,255,255,.6); }

/* Divider + bottom bar */
.footer-sep{ margin-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  padding:.9rem 0; color:var(--footer-ink-soft); font-size: var(--footer-small);
}
.footer-bottom a{ color:var(--footer-ink-soft); text-decoration:none; opacity:.9; }
.footer-bottom a:hover{ opacity:1; text-decoration:underline; }
@media (max-width:900px){ .footer-bottom{ flex-direction:column; align-items:flex-start; gap:.5rem; } }

/* Footer right cluster (menu + CTA) */
.footer-right{ display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; }

/* “Consult now” CTA */
.footer-cta{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.5rem .95rem; border-radius:999px; font-weight:700; font-size:.95rem; letter-spacing:.01em;
  text-decoration:none; color:#0b1739;
  background: linear-gradient(135deg, var(--footer-accent), var(--footer-accent-2));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 24px rgba(109,140,255,.35);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.footer-cta:hover{ transform: translateY(-1px); box-shadow: 0 14px 32px rgba(109,140,255,.45); filter: saturate(110%); }
.footer-cta:focus-visible{ outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width:900px){ .footer-right{ gap:.6rem; } .footer-cta{ font-size:.9rem; padding:.5rem .9rem; } }

/* ===================== Accessibility & Lists ===================== */
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem; width:auto; height:auto; background:#111; color:#fff;
  padding:.5rem .75rem; border-radius:.5rem; z-index:1001;
}

/* Remove bullets for theme menus/lists we style */
.primary-menu, .footer-nav, .footer-list { list-style:none; margin:0; padding:0; }
.primary-menu li, .footer-nav li, .footer-list li { list-style:none; }

/* ===================== Overflow safety for full-bleed ===================== */
html, body { overflow-x: clip; }


/* Desktop dropdown menus */
@media (min-width:901px){
  .primary-menu .sub-menu {
    display: none;             /* hidden by default */
    position: absolute;
    top: 100%;                 /* just below parent */
    left: 0;
    min-width: 220px;
    background: rgba(255,255,255,.95);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: .6rem;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    z-index: 1000;
  }

  /* show only when parent hovered */
  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu {
    display: block;
  }
}

/* keep menu in one row */
.navbar{
    flex: 1 1 auto; 
    justify-content: center; /* center its items */
    min-width: 0;
  }
.primary-menu{
  flex-wrap: nowrap;         /* single line */
  gap: .5rem;
}
.primary-menu a{
  padding: .4rem .6rem;      /* slightly tighter */
  font-size: clamp(.92rem, 1vw, 1rem);
  white-space: nowrap;       /* no wrap inside items */
}
/*Hero section*/
/* Basic Reset */
/* General Layout */
/* Premium Hero Section Styles */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* CSS Custom Properties */
:root {
    --phnx-primary-color: #1a2332;
    --phnx-accent-color: #d4af37;
    --phnx-secondary-color: #2c3e50;
    --phnx-light-bg: #f8fafc;
    --phnx-dark-text: #1a202c;
    --phnx-light-text: #ffffff;
    --phnx-muted-text: #64748b;
    --phnx-success-color: #059669;
    --phnx-warning-color: #d97706;
    --phnx-error-color: #dc2626;
    
    /* Spacing */
    --phnx-container-max: 1200px;
    --phnx-spacing-xs: 0.5rem;
    --phnx-spacing-sm: 1rem;
    --phnx-spacing-md: 1.5rem;
    --phnx-spacing-lg: 2rem;
    --phnx-spacing-xl: 3rem;
    --phnx-spacing-2xl: 4rem;
    
    /* Typography */
    --phnx-font-display: 'Playfair Display', Georgia, serif;
    --phnx-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --phnx-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --phnx-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --phnx-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --phnx-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --phnx-transition-fast: 0.15s ease-out;
    --phnx-transition-base: 0.3s ease-out;
    --phnx-transition-slow: 0.6s ease-out;
}

/* Hero Section */
.phnx-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--phnx-primary-color) 0%, var(--phnx-secondary-color) 100%);
    color: var(--phnx-light-text);
    font-family: var(--phnx-font-body);
    line-height: 1.6;
}

/* Background Elements */
.phnx-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.phnx-hero__video,
.phnx-hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.phnx-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.85) 0%,
        rgba(44, 62, 80, 0.75) 100%
    );
    z-index: 2;
}

.phnx-hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Container */
.phnx-hero__container {
    position: relative;
    z-index: 10;
    max-width: var(--phnx-container-max);
    margin: 0 auto;
    padding: var(--phnx-spacing-lg);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--phnx-spacing-2xl);
    align-items: center;
}

/* Content Area */
.phnx-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: phnx-slideInLeft 0.8s ease-out;
}

.phnx-hero__content-inner {
    max-width: 580px;
}

.phnx-hero__kicker {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--phnx-accent-color);
    margin-bottom: var(--phnx-spacing-sm);
    padding: var(--phnx-spacing-xs) var(--phnx-spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.phnx-hero__heading {
    font-family: var(--phnx-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--phnx-spacing-md);
    background: linear-gradient(135deg, var(--phnx-light-text) 0%, var(--phnx-accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phnx-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--phnx-spacing-lg);
    max-width: 500px;
}

/* USP List */
.phnx-hero__usp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--phnx-spacing-xl) 0;
}

.phnx-hero__usp-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--phnx-spacing-sm);
    padding: var(--phnx-spacing-xs) 0;
    transition: transform var(--phnx-transition-fast);
}

.phnx-hero__usp-item:hover {
    transform: translateX(4px);
}

.phnx-hero__usp-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: var(--phnx-spacing-sm);
    color: var(--phnx-accent-color);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px;
    border-radius: 50%;
}

/* CTA Buttons */
.phnx-hero__cta-group {
    display: flex;
    gap: var(--phnx-spacing-md);
    flex-wrap: wrap;
}

.phnx-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--phnx-spacing-xs);
    padding: var(--phnx-spacing-md) var(--phnx-spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--phnx-transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-height: 56px;
    justify-content: center;
}

.phnx-hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--phnx-transition-slow);
}

.phnx-hero__cta:hover::before {
    left: 100%;
}

.phnx-hero__cta--primary {
    background: linear-gradient(135deg, var(--phnx-accent-color) 0%, #e6c547 100%);
    color: var(--phnx-dark-text);
    box-shadow: var(--phnx-shadow-lg);
}

.phnx-hero__cta--primary:hover {
    background: linear-gradient(135deg, #e6c547 0%, var(--phnx-accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--phnx-shadow-xl);
}

.phnx-hero__cta--primary:focus {
    outline: none;
    box-shadow: var(--phnx-shadow-xl), 0 0 0 3px rgba(212, 175, 55, 0.4);
}

.phnx-hero__cta--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--phnx-light-text);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--phnx-shadow-md);
}

.phnx-hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--phnx-accent-color);
    transform: translateY(-2px);
    box-shadow: var(--phnx-shadow-lg);
}

.phnx-hero__cta--secondary:focus {
    outline: none;
    box-shadow: var(--phnx-shadow-lg), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.phnx-hero__cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--phnx-transition-fast);
}

.phnx-hero__cta:hover .phnx-hero__cta-arrow {
    transform: translate(2px, -2px);
}

/* Visual Area */
.phnx-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: phnx-slideInRight 0.8s ease-out;
}

.phnx-hero__globe {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 100%;
    max-height: 100%;
}

.phnx-hero__globe-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phnx-hero__globe-ring {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: phnx-rotate 20s linear infinite;
}

.phnx-hero__globe-ring--1 {
    width: 300px;
    height: 300px;
    border-style: dashed;
    animation-duration: 25s;
}

.phnx-hero__globe-ring--2 {
    width: 200px;
    height: 200px;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.phnx-hero__globe-ring--3 {
    width: 100px;
    height: 100px;
    border-color: var(--phnx-accent-color);
    border-width: 3px;
    animation-duration: 10s;
}

.phnx-hero__globe-core {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--phnx-accent-color) 0%, rgba(212, 175, 55, 0.6) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: phnx-pulse 3s ease-in-out infinite;
}

/* Map Dots */
.phnx-hero__map-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.phnx-hero__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--phnx-accent-color);
    border-radius: 50%;
    animation: phnx-twinkle 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.phnx-hero__dot--1 { top: 20%; left: 15%; animation-delay: 0s; }
.phnx-hero__dot--2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.phnx-hero__dot--3 { bottom: 25%; left: 25%; animation-delay: 1s; }
.phnx-hero__dot--4 { bottom: 35%; right: 15%; animation-delay: 1.5s; }
.phnx-hero__dot--5 { top: 50%; left: 10%; animation-delay: 2s; }

/* Connections SVG */
.phnx-hero__connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: var(--phnx-accent-color);
}

.phnx-hero__connection-line {
    stroke-dasharray: 5, 5;
    animation: phnx-dash 3s linear infinite;
}

/* Animations */
@keyframes phnx-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes phnx-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes phnx-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes phnx-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

@keyframes phnx-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

@keyframes phnx-dash {
    to { stroke-dashoffset: -20; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .phnx-hero__globe-ring,
    .phnx-hero__globe-core,
    .phnx-hero__dot,
    .phnx-hero__connection-line {
        animation: none;
    }
    
    .phnx-hero__content,
    .phnx-hero__visual {
        animation: none;
    }
    
    .phnx-hero__cta,
    .phnx-hero__usp-item {
        transition: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .phnx-hero__container {
        gap: var(--phnx-spacing-xl);
    }
    
    .phnx-hero__globe {
        width: 350px;
        height: 350px;
    }
    
    .phnx-hero__globe-ring--1 { width: 250px; height: 250px; }
    .phnx-hero__globe-ring--2 { width: 180px; height: 180px; }
    .phnx-hero__globe-ring--3 { width: 90px; height: 90px; }
}

@media (max-width: 768px) {
    .phnx-hero__container {
        grid-template-columns: 1fr;
        gap: var(--phnx-spacing-lg);
        padding: var(--phnx-spacing-md);
        min-height: auto;
        padding-top: var(--phnx-spacing-2xl);
        padding-bottom: var(--phnx-spacing-2xl);
    }
    
    .phnx-hero__content {
        order: 1;
        text-align: center;
    }
    
    .phnx-hero__visual {
        order: 2;
        margin-top: var(--phnx-spacing-lg);
    }
    
    .phnx-hero__globe {
        width: 280px;
        height: 280px;
    }
    
    .phnx-hero__globe-ring--1 { width: 200px; height: 200px; }
    .phnx-hero__globe-ring--2 { width: 140px; height: 140px; }
    .phnx-hero__globe-ring--3 { width: 80px; height: 80px; }
    
    .phnx-hero__heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .phnx-hero__subtitle {
        font-size: 1rem;
    }
    
    .phnx-hero__cta-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--phnx-spacing-sm);
    }
    
    .phnx-hero__cta {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    :root {
        --phnx-spacing-lg: 1.5rem;
        --phnx-spacing-xl: 2rem;
        --phnx-spacing-2xl: 2.5rem;
    }
    
    .phnx-hero__container {
        padding: var(--phnx-spacing-sm);
    }
    
    .phnx-hero__globe {
        width: 220px;
        height: 220px;
    }
    
    .phnx-hero__globe-ring--1 { width: 160px; height: 160px; }
    .phnx-hero__globe-ring--2 { width: 120px; height: 120px; }
    .phnx-hero__globe-ring--3 { width: 70px; height: 70px; }
    .phnx-hero__globe-core { width: 40px; height: 40px; }
    
    .phnx-hero__cta {
        padding: var(--phnx-spacing-sm) var(--phnx-spacing-lg);
        font-size: 0.9rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .phnx-hero {
        background: #000000;
        color: #ffffff;
    }
    
    .phnx-hero__kicker,
    .phnx-hero__globe-ring,
    .phnx-hero__dot,
    .phnx-hero__connections {
        color: #ffff00;
    }
    
    .phnx-hero__cta--primary {
        background: #ffff00;
        color: #000000;
        border: 2px solid #ffffff;
    }
    
    .phnx-hero__cta--secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }
}

/* Print Styles */
@media print {
    .phnx-hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        page-break-inside: avoid;
    }
    
    .phnx-hero__background,
    .phnx-hero__visual {
        display: none !important;
    }
    
    .phnx-hero__container {
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
    }
    
    .phnx-hero__cta {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
}
/* Services */
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.service-item {
  background: #f8f9ff;
  border: 1px solid #dfe3f5;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(109, 140, 255, 0.08);
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial {
  background: #f4f7ff;
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(17, 23, 54, 0.08);
}
.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #23418f;
}

/* Contact */
/* Contact Section - Two Column Layout */
/* === Contact Section === */
.contact-section {
  background: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Form styling */
.contact-form-box {
  flex: 1;
  min-width: 320px;
}

.contact-form-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.contact-form-box p {
  margin-bottom: 25px;
  font-size: 15px;
  color: #666;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #3c6df0;
  outline: none;
}

.contact-form-box button {
  background: #3c6df0;
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-box button:hover {
  background: #2a4ee5;
}

/* Decorative Art */
.contact-art-box {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s ease-in;
}

.contact-illustration {
  width: 100%;
  max-width: 400px;
  animation: floatImage 6s ease-in-out infinite;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(60, 109, 240, 0.1);
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .floating-art {
    width: 220px;
    height: 220px;
  }
}

/* Animation */
@keyframes floatShape {
  0%, 100% {
    transform: translateY(px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px 5%;
  }

  .contact-art {
    height: 200px;
  }
}


/* Responsive */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text, .hero-image {
    flex: 1 1 100%;
  }
}
/*testimonial styling */
.testimonials-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  scrollbar-width: none; /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-height: 160px;
  text-align: left;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial strong {
  display: block;
  font-weight: bold;
  color: #333;
}
/*visa services STAR*//* Our Services Carousel *//* Container and Carousel Basics */
.services-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #777;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  padding: 30px;
  box-sizing: border-box;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.carousel-dots {
  margin-top: 20px;
  text-align: center;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #333;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    grid-template-columns: 1fr;
  }
}

/*Visa services END*/
/*About us <START>*/

/* === About Us Page === */
/* === About Us Section === */
/*
Theme Name: Swift Starter
Version: 1.0.4
Text Domain: swift-starter
*/

/* ===================== Base / Reset ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}
.container { width: min(1100px, 92%); margin-inline: auto; }
.grid { display: grid; gap: 1rem; }
.hidden { display: none !important; }

/* ===================== Theme Variables ===================== */
:root{
  /* Utility bar */
  --blue-1:#1f3aa6;
  --blue-2:#2f6be5;
  --topbar-font: 12px;
  --icon: 14px;
  --icon-box: 22px;

  /* Header / brand */
  --header-h: 64px;
  --header-h-scrolled: 54px;
  --logo-inset: 8px;
  --brand-gap: .30rem;

  /* Luxury menu accents */
  --lux-accent:#6d8cff;
  --lux-ink:#22304a;
  --lux-radius:12px;
  --lux-shadow:0 14px 28px rgba(17,23,54,.12);

  /* Footer tokens */
  --footer-ink:#e7ecff;
  --footer-ink-soft:#cdd6ff;
  --footer-ink-muted:#9fb0ff;
  --footer-bg-1:#0b1739;
  --footer-bg-2:#132a7a;
  --footer-accent:#6d8cff;
  --footer-accent-2:#9aaeff;
  --footer-card-bg:rgba(255,255,255,.06);
  --footer-border:rgba(255,255,255,.12);
  --footer-shadow:0 18px 40px rgba(0,0,0,.18);
  --footer-radius:16px;
  --footer-gap:1.25rem;
  --footer-title:0.95rem;
  --footer-text:0.92rem;
  --footer-small:0.85rem;

  /* About Page Variables */
  --gradient-primary: linear-gradient(135deg, #6d8cff 0%, #23418f 100%);
  --gradient-secondary: linear-gradient(135deg, #9aaeff 0%, #6d8cff 100%);
  --section-padding: clamp(4rem, 8vw, 8rem);
  --card-shadow: 0 20px 40px rgba(109, 140, 255, 0.1);
  --hover-shadow: 0 30px 60px rgba(109, 140, 255, 0.15);
  --text-gradient: linear-gradient(135deg, #6d8cff, #23418f);
}

/* ===================== Top / Utility Bar ===================== */
.top-bar{
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color:#fff;
  font-size: var(--topbar-font);
  line-height:1.2;
  padding:.30rem 0;
}
.top-bar-inner{ display:flex; align-items:center; justify-content:space-between; gap:.75rem; }
.top-bar-left, .top-bar-right{ display:flex; align-items:center; gap:1.1rem; flex-wrap:wrap; }
.top-item{ display:inline-flex; align-items:center; gap:.4rem; color:#fff; text-decoration:none; opacity:.95; }
.top-item:hover{ opacity:1; }
.ti{ font-size: calc(var(--icon) - 2px); line-height:1; }
.top-bar-right .social{
  display:inline-flex; align-items:center; justify-content:center;
  width: var(--icon-box); height: var(--icon-box);
  color:#fff; opacity:.9; border-radius:999px;
  transition:opacity .15s, transform .15s, color .15s, background .15s;
  text-decoration:none;
}
.top-bar-right .social svg{ width: var(--icon); height: var(--icon); display:block; }
.top-bar-right .social:hover{ opacity:1; transform: translateY(-1px); }
.top-bar-right .social[aria-label="Facebook"]:hover { color:#1877f2; }
.top-bar-right .social[aria-label="Twitter"]:hover  { color:#0f1419; }
.top-bar-right .social[aria-label="Instagram"]:hover{ color:#e1306c; }
.top-bar-right .social[aria-label="LinkedIn"]:hover{ color:#0a66c2; }

/* ===================== Header ===================== */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e9eef5;
  transition: box-shadow .2s ease, background .2s ease, padding .25s ease;
  padding: .55rem 0;
}
.site-header.is-scrolled{
  padding: .40rem 0;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.header-inner{
  min-height: var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
}
.site-header.is-scrolled .header-inner{ min-height: var(--header-h-scrolled); }
.site-header:hover{ box-shadow: 0 12px 25px rgba(0,0,0,.08); }

/* Brand (logo + text) */
.brand{ display:flex; align-items:center; gap: var(--brand-gap); text-decoration:none; color:inherit; }
.brand-logo, .custom-logo-link{ display:inline-flex; align-items:center; margin:0; padding:0; line-height:0; }
.custom-logo{
  height: calc(var(--header-h) - var(--logo-inset));
  width:auto; object-fit:contain; transition: height .25s ease;
}
.site-header.is-scrolled .custom-logo{ height: calc(var(--header-h-scrolled) - var(--logo-inset)); }
.brand-text{ display:flex; flex-direction:column; justify-content:center; line-height:1.15; margin:0; min-width:0; }
.site-title{
  font-size:1.2rem; font-weight:700; color:#23418f; letter-spacing:-0.2px; margin:0;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.site-tagline{
  font-size:.68rem; font-weight:500; color:#31466d; margin-top:.12rem; letter-spacing:.5px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
/* To hide title/tagline (logo-only), uncomment: */
/* .site-title, .site-tagline{ display:none; } */

/* ===================== Navigation ===================== */
.navbar{ display:flex; align-items:center; gap:1rem; }
.primary-menu{ display:flex; align-items:center; gap:.6rem; margin:0; padding:0; list-style:none; }
.primary-menu li{ list-style:none; }
.primary-menu a{
  display:inline-block; padding:.45rem .7rem; text-decoration:none;
  color:#111; border-radius:.65rem; font-weight:500; position:relative;
  border:1px solid transparent; overflow:hidden;
  transition: color .25s, background .25s, border-color .25s, box-shadow .25s;
}

/* Luxury hover (underline + sheen + soft pill) */
.primary-menu a::after{
  content:""; position:absolute; left:14%; right:14%; bottom:6px; height:2px;
  background: currentColor; opacity:.55; transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .35s ease;
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after{ transform: scaleX(1); }
.primary-menu a::before{
  content:""; position:absolute; inset:0 auto 0 -150%; width:120%; height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 22%, rgba(255,255,255,0) 44%);
  transform: skewX(-14deg); transition: transform .6s ease; pointer-events:none;
}
.primary-menu a:hover::before{ transform: translateX(180%) skewX(-14deg); }
.primary-menu a:hover,
.primary-menu .current-menu-item > a{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,248,255,.95));
  border-color: rgba(109,140,255,.25);
  box-shadow: var(--lux-shadow);
  color: var(--lux-ink);
}

/* Active marker (gradient pill) */
.primary-menu .current-menu-item > a{
  background: linear-gradient(135deg, #6d8cff, #23418f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(109,140,255,.35);
}
.primary-menu .current-menu-item > a::after{ background: rgba(255,255,255,.9); opacity:.7; }

/* Desktop dropdowns */
@media (min-width:901px){
  .primary-menu li{ position:relative; }

  /* level-1: drop down */
  .primary-menu > li > .sub-menu{
    position:absolute; top:100%; left:0; display:none; min-width:220px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    border:1px solid rgba(109,140,255,.22); border-radius: var(--lux-radius);
    padding:.6rem; box-shadow: 0 20px 40px rgba(17,23,54,.12); z-index:1001;
    opacity:0; transform: translateY(8px); pointer-events:none; transition: opacity .25s, transform .25s;
  }
  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu{
    display:block; opacity:1; transform: translateY(0); pointer-events:auto;
  }

  /* level-2: fly right; level-3: fly left */
  .primary-menu .sub-menu li > .sub-menu{ top:0; left:100%; transform: translateX(8px); opacity:0; }
  .primary-menu .sub-menu .sub-menu li > .sub-menu{ left:auto; right:100%; }
  .primary-menu .sub-menu li:hover > .sub-menu,
  .primary-menu .sub-menu li:focus-within > .sub-menu{ transform: translateX(0); opacity:1; }

  .primary-menu .sub-menu li a{
    position:relative; padding:.5rem .7rem; border-radius:10px; color:#3c4f6d;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .primary-menu .sub-menu li a::before{
    content:""; position:absolute; left:.55rem; top:50%;
    width:0; height:2px; background: var(--lux-accent); opacity:.8; transform: translateY(-50%);
    transition: width .2s;
  }
  .primary-menu .sub-menu li a:hover{
    background: rgba(109,140,255,.08); color: var(--lux-ink); padding-left:.95rem;
  }
  .primary-menu .sub-menu li a:hover::before{ width:10px; }
}

/* Mobile nav */
.menu-toggle{
  display:none; align-items:center; justify-content:center;
  width:40px; height:40px; border:1px solid #e5e7eb; border-radius:.75rem; background:#fff;
}
.menu-toggle:focus{ outline:2px solid #2563eb; outline-offset:2px; }
@media (max-width:900px){
  .top-bar{ font-size: 11px; }
  .menu-toggle{ display:inline-flex; }
  .primary-menu{
    display:none; position:absolute; top:64px; left:0; right:0;
    background:#fff; border-bottom:1px solid #eee; padding:.5rem .5rem 1rem;
    flex-direction:column;
  }
  .primary-menu.open{ display:flex; }
  .primary-menu .sub-menu{
    position:static; display:none; padding-left:.5rem; border:0; box-shadow:none; background:transparent;
  }
  .primary-menu .sub-menu.open{ display:block; }
  .menu-item-has-children > a::after{ content:'▸'; margin-left:.4rem; font-size:.8rem; }
  .menu-item-has-children[aria-expanded="true"] > a::after{ content:'▾'; }

  :root{ --header-h: 56px; --header-h-scrolled: 48px; --logo-inset: 6px; }
  .site-title{ font-size:1rem; }
  .site-tagline{ font-size:.8rem; }
}

/* ===================== Main / Content ===================== */
main{ padding:1.5rem 0; }
.hero{ padding:clamp(3rem, 8vw, 6rem) 0; text-align:center; }
.hero h1{ font-size:clamp(1.8rem, 5vw, 3rem); margin:0 0 .5rem; }
.hero p{ color:#4b5563; margin:.25rem 0 0; }
.entry-title{ margin:0 0 .5rem; font-size:clamp(1.5rem, 4vw, 2rem); }
.entry-content img, .page-content img{ max-width:100%; height:auto; }

/* Sidebar (optional) */
.widget-area{ padding:1rem; border:1px solid #eee; border-radius:.75rem; background:#fafafa; }

/* Buttons */
.btn{ display:inline-block; padding:.6rem .9rem; border-radius:.7rem; border:1px solid #e5e7eb; text-decoration:none; }
.btn:hover{ background:#f8fafc; }

/* ===================== ABOUT PAGE STYLES ===================== */

/* Hero Section */
.about-hero {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e7ff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--lux-ink);
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(109, 140, 255, 0.1);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-decoration {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(109, 140, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

/* Story Section */
.section-label {
  text-align: center;
  margin: 32px 0;
}

.section-label h1 {
  font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 36px); /* smaller range */
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 0.5rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 4px 12px rgba(0,0,0,0.06);
}

.section-label h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, #c9a45c, #d7b770, transparent);
  border-radius: 2px;
}

.section-label h1.gold-text {
  background: linear-gradient(180deg, #f8e7b0, #d4af37 60%, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 0 rgba(0,0,0,0.01), 0 2px 6px rgba(0,0,0,0.06);
}

/* Main grid */
.story-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Left text column */
.story-content {
  flex: 1 1 55%;
}

/* Right quote block */
.story-visual {
  flex: 1 1 40%;
}

/* Visual card */
.visual-card {
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(109, 140, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}

/* Top gradient line */
.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6d83f2, #80d0c7);
}

/* Quote style */
.luxury-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.luxury-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -1.2rem;
  left: -0.5rem;
  color: #6d83f2;
  opacity: 0.2;
  font-family: serif;
}

/* Author section */
.quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quote-author strong {
  color: #1e293b;
  font-weight: 700;
}

.quote-author span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Features (⚖️ 🌍 🤝) */
.story-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fc;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .story-grid {
    flex-direction: column;
  }

  .story-content, .story-visual {
    flex: 1 1 100%;
  }
}

/* Services Overview */
.services-overview {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
   --section-padding: 40px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(109, 140, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}
/*Scroll effect */
/* Horizontal track: no wrap + smooth marquee canvas */
.services-overview .services-grid {
  display: flex;
  flex-wrap: nowrap;      /* never go to next line */
  gap: 16px;
  overflow-x: hidden;     /* hide scrollbar for marquee */
  overflow-y: hidden;
  position: relative;
  padding: 8px 2px;
}

/* Card sizing so they look consistent in a row */
.services-overview .service-card {
  flex: 0 0 clamp(240px, 40vw, 320px); /* fixed-ish width, responsive */
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 20px;
  min-height: 200px;
}

/* Optional: hint that more content exists (edge fade) */
.services-overview {
  position: relative;
}
.services-overview::before,
.services-overview::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  pointer-events: none;
}
.services-overview::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.services-overview::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

/* Values Section */
.values-section {
  padding: var(--section-padding) 0;
}

.values-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.values-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
}

.value-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lux-accent);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 0.75rem;
}

.value-item p {
  color: #6b7280;
  line-height: 1.6;
}
/*Auto scrolling effect */

/* Section spacing stays the same */
.values-section {
  padding: var(--section-padding) 0;
}

.values-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.values-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 3rem;
}

/* TURN GRID INTO A HORIZONTAL TRACK (no wrap) */
.values-grid {
  display: flex;            /* switch from grid to flex */
  flex-wrap: nowrap;        /* never go to next line */
  gap: 24px;                /* card spacing */
  overflow-x: hidden;       /* hide scrollbar for marquee */
  overflow-y: hidden;
  position: relative;
  padding: 8px 2px;
}

/* Cards sized for a consistent row; adjust min/max if you like */
.value-item {
  flex: 0 0 clamp(220px, 38vw, 280px); /* responsive fixed-ish width */
  padding: 1.8rem 1.4rem;
  text-align: left;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Keep your inner typography */
.value-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lux-accent);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.value-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lux-ink);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Optional: edge fade to hint there's more content */
.values-grid::before,
.values-grid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 1;
}
.values-grid::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.values-grid::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}



/* Leadership Section */
/* Section shell */
.phnx-team {
  background: #eef5f8;
  padding: 60px 20px;
  text-align: center;
}

.phnx-team-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 2px;
  color: #16324f; /* deep navy */
  margin: 0 0 30px;
}

/* Grid */
.phnx-team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 40px;
}
@media (max-width: 800px) {
  .phnx-team-grid { grid-template-columns: 1fr; }
}

/* Card */
.phnx-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Photo */
.phnx-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe7ee;
  position: relative;
  box-shadow: 0 10px 28px rgba(22,50,79,.15);
}
.phnx-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

/* Overlay + social icons */
.phnx-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* only icons clickable */
}

.phnx-soc {
  --size: 44px;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: #1f3d5c;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(22,50,79,.25);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease, background .25s ease;
  position: absolute;
  top: 50%;
  margin-top: calc(-1 * var(--size) / 2);
  opacity: 0;
  pointer-events: auto; /* clickable */
}
.phnx-soc:hover { background: #16324f; }

/* Start positions: outside left/right, move to center on hover */
.phnx-li   { left: -70px; transform: translateX(-30px); }
.phnx-mail { right: -70px; transform: translateX(30px); }

.phnx-photo::after {
  /* soft overlay on hover for focus */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 40%, rgba(22,50,79,0.15));
  opacity: 0; transition: opacity .35s ease;
}

/* Hover effects */
.phnx-member:hover .phnx-photo img { transform: scale(1.06); }
.phnx-member:hover .phnx-photo::after { opacity: 1; }

.phnx-member:hover .phnx-li {
  left: 50%;
  transform: translate(-56px, 0); /* 56px ≈ half of 44px + spacing */
  opacity: 1;
}
.phnx-member:hover .phnx-mail {
  right: 50%;
  transform: translate(56px, 0);
  opacity: 1;
}

/* Name, role, contact */
.phnx-name {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #16324f;
  margin: 6px 0 0;
}
.phnx-role {
  font-size: 12px;
  letter-spacing: 2px;
  color: #4f6b86;
  margin: 4px 0 10px;
  text-transform: uppercase;
}
.phnx-line {
  width: 60%;
  border: 0; height: 1px;
  background: #c8d6e3;
  margin: 6px auto 8px;
}
.phnx-contact {
  font-size: 13px;
  color: #4f6b86;
  line-height: 1.6;
}


/* CTA Section */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: var(--lux-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cta-decoration {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-hero {
    padding: 4rem 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .values-content h2 {
    font-size: 1.5rem;
  }
}

/* ===================== Luxury Footer (full-bleed bg) ===================== */
/* Break out of parent wrappers so gradient spans full width */
.luxe-footer{
  position: relative; box-sizing: border-box;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, var(--footer-bg-2), var(--footer-bg-1));
  color: var(--footer-ink);
  padding: 2.2rem 0 0;
  overflow: hidden;
}
.luxe-footer .container{ max-width: 1200px; width: 92%; margin-inline: auto; }

/* Decorative glow */
.luxe-footer::before{
  content:""; position:absolute; inset:auto -20% 30% -20%; height:280px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(109,140,255,.25), rgba(109,140,255,0));
  filter: blur(40px); opacity:.45; pointer-events:none;
}

/* Grid */
.footer-grid{
  display:grid; gap: var(--footer-gap);
  grid-template-columns: 1.1fr .9fr 1.2fr;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr; } }

/* Cards */
.footer-card{
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-border);
  border-radius: var(--footer-radius);
  padding: 1.1rem;
  backdrop-filter: blur(6px);
  box-shadow: var(--footer-shadow);
}

/* Brand + mini text */
.footer-brand{ display:flex; align-items:flex-start; gap:.85rem; }
.footer-logo img{ height:42px; width:auto; display:block; }
.footer-brand-text{ display:flex; flex-direction:column; }
.footer-site-title{
  color:#fff; font-weight:700; margin:0; line-height:1.2; letter-spacing:-.2px; font-size:1.05rem;
}
.footer-site-tag{ color:var(--footer-ink-soft); margin:.2rem 0 0; font-size:.88rem; }

/* Footer menu + services list */
.footer-title{
  color:#dbe3ff; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; font-size: var(--footer-title); margin:0 0 .6rem;
}
.footer-nav{
  list-style:none; margin:0 0 .6rem; padding:0; display:flex; gap:.8rem; flex-wrap:wrap;
}
.footer-nav a{
  color:var(--footer-ink); text-decoration:none; opacity:.9;
  padding:.25rem .45rem; border-radius:8px;
  transition: opacity .2s, background .2s, transform .2s;
}
.footer-nav a:hover{ opacity:1; background: rgba(255,255,255,.06); transform: translateY(-1px); }

.footer-list{
  list-style:none; margin:0; padding:0; display:grid; gap:.4rem; font-size: var(--footer-text);
}
.footer-list a{
  color:var(--footer-ink); text-decoration:none; opacity:.9;
  border:1px solid transparent; border-radius:10px; padding:.35rem .5rem;
  display:inline-flex; align-items:center; gap:.4rem;
  transition: opacity .2s, transform .2s, border-color .2s, background .2s;
}
.footer-list a::before{
  content:""; width:8px; height:2px; border-radius:2px; background: var(--footer-accent); opacity:.85; transform: translateY(1px);
}
.footer-list a:hover{
  opacity:1; transform: translateX(2px);
  border-color: rgba(157,173,255,.25);
  background: rgba(255,255,255,.05);
}

/* Map */
.footer-map{
  overflow:hidden; border-radius: calc(var(--footer-radius) - 2px);
  aspect-ratio: 16/10; background:#0d1c4f;
  border: 1px solid var(--footer-border);
}
.footer-map iframe{ width:100%; height:100%; border:0; display:block; filter: saturate(110%) contrast(105%); }

/* Address */
.address{ display:grid; gap:.35rem; margin-top:.75rem; font-size: var(--footer-text); }
.address .row{ display:flex; gap:.5rem; align-items:flex-start; }
.address .label{ color:var(--footer-ink-muted); min-width:78px; }
.address .value{ color:var(--footer-ink); }
.address a{ color:inherit; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.25); }
.address a:hover{ border-bottom-color: rgba(255,255,255,.6); }

/* Divider + bottom bar */
.footer-sep{ margin-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  padding:.9rem 0; color:var(--footer-ink-soft); font-size: var(--footer-small);
}
.footer-bottom a{ color:var(--footer-ink-soft); text-decoration:none; opacity:.9; }
.footer-bottom a:hover{ opacity:1; text-decoration:underline; }
@media (max-width:900px){ .footer-bottom{ flex-direction:column; align-items:flex-start; gap:.5rem; } }

/* Footer right cluster (menu + CTA) */
.footer-right{ display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; }

/* "Consult now" CTA */
.footer-cta{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.5rem .95rem; border-radius:999px; font-weight:700; font-size:.95rem; letter-spacing:.01em;
  text-decoration:none; color:#0b1739;
  background: linear-gradient(135deg, var(--footer-accent), var(--footer-accent-2));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 24px rgba(109,140,255,.35);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.footer-cta:hover{ transform: translateY(-1px); box-shadow: 0 14px 32px rgba(109,140,255,.45); filter: saturate(110%); }
.footer-cta:focus-visible{ outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width:900px){ .footer-right{ gap:.6rem; } .footer-cta{ font-size:.9rem; padding:.5rem .9rem; } }

/* ===================== Accessibility & Lists ===================== */
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem; width:auto; height:auto; background:#111; color:#fff;
  padding:.5rem .75rem; border-radius:.5rem; z-index:1001;
}

/* Remove bullets for theme menus/lists we style */
.primary-menu, .footer-nav, .footer-list { list-style:none; margin:0; padding:0; }
.primary-menu li, .footer-nav li, .footer-list li { list-style:none; }

/* ===================== Overflow safety for full-bleed ===================== */
html, body { overflow-x: clip; }

/*About us <END>*/

/* Utility hours style *//* ===== Utility Bar — Rich / Fixed Icons ===== */

/* Palette */
/* Premium Utility Bar Styles */
:root{
  --tb-bg: linear-gradient(180deg, #0e1624 0%, #0b1220 100%);
  --tb-border: rgba(255,255,255,0.14);
  --tb-ink: #eef3ff;
  --tb-muted: #b6c4d6;
  --gold: #d4af37;
  --success:#11a36a;
  --danger:#d64545;

  /* Brand colors */
  --fb:#1877f2; --x:#000000; --ig:#e1306c; --li:#0a66c2; --yt:#ff0000; --pt:#e60023;
}

/* Bar container */
.top-bar{
  position: sticky; 
  top:0; 
  z-index:1000;
  color:var(--tb-ink);
  background:var(--tb-bg);
  border-bottom:1px solid var(--tb-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(0,0,0,.35);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.top-bar-inner{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:1rem; 
  padding:.6rem 1rem; 
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar-left, .top-bar-right{ 
  display:flex; 
  align-items:center; 
  gap:.85rem; 
  flex-wrap:wrap; 
}

/* Contact pills */
.top-item{
  display:inline-flex; 
  align-items:center; 
  gap:.5rem;
  padding:.42rem .75rem; 
  border-radius: 999px;
  font-size:14px; 
  color:var(--tb-ink); 
  text-decoration:none;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: all .25s ease;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.top-item:hover{
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(212,175,55,.45), inset 0 0 0 1px rgba(212,175,55,.35);
  transform: translateY(-1px);
}

/* UK time pill */
.utility-hours{
  display:inline-flex; 
  align-items:center; 
  gap:.45rem;
  padding:.38rem .7rem; 
  border-radius:999px;
  background: radial-gradient(120% 140% at 10% 10%, rgba(212,175,55,.20) 0%, rgba(212,175,55,.06) 60%, rgba(212,175,55,.12) 100%);
  border:1px solid rgba(212,175,55,.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.25);
  font-size:14px; 
  white-space:nowrap;
  font-weight: 500;
}

.utility-hours .uh-label{ 
  color:var(--tb-muted);
  font-weight: 400;
}

.utility-hours .uh-time{ 
  font-weight:700; 
  font-variant-numeric: tabular-nums;
  color: var(--tb-ink);
  letter-spacing: 0.025em;
}

.utility-hours .uh-status{ 
  font-weight:700;
  font-size: 13px;
}

.utility-hours[data-status="open"] .uh-status{ 
  color:var(--success); 
}

.utility-hours[data-status="closed"] .uh-status{ 
  color:var(--danger); 
}

/* Socials row */
.social-row{ 
  display:flex; 
  gap:.55rem; 
}

/* Base social button (glass ring + brand background) */
.social{
  --size: 36px;
  width:var(--size); 
  height:var(--size); 
  border-radius:999px;
  display:grid; 
  place-items:center;
  position:relative;
  background: var(--brand, rgba(255,255,255,.08)) !important;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 6px 18px rgba(0,0,0,.35);
  color:#fff !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
  overflow:hidden;
  text-decoration: none;
}

/* Ensure icons are visible whether SVG or icon font */
.social svg{ 
  width:18px; 
  height:18px; 
  display:block; 
}

.social svg *, 
.social svg path, 
.social svg circle, 
.social svg rect, 
.social svg polygon{
  fill: currentColor !important; 
  stroke: currentColor !important; 
  stroke-width: 0 !important;
}

.social i{ 
  font-size:16px; 
  line-height:1; 
  color: currentColor !important; 
}

/* Hover: gold glow + slight lift */
.social:hover{
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow:
    0 0 16px rgba(212,175,55,.45),
    0 10px 22px rgba(0,0,0,.35);
  filter: brightness(1.05);
}

/* Brand backgrounds */
.social[data-brand="fb"]{ --brand: var(--fb) !important; }
.social[data-brand="x"] { --brand: var(--x)  !important; }
.social[data-brand="ig"]{ --brand: var(--ig) !important; }
.social[data-brand="li"]{ --brand: var(--li) !important; }
.social[data-brand="yt"]{ --brand: var(--yt) !important; }
.social[data-brand="pt"]{ --brand: var(--pt) !important; }

/* Force color overrides */
.top-bar .social, 
.top-bar .social:link, 
.top-bar .social:visited{ 
  color:#fff !important; 
}

.top-bar .social svg{ 
  fill: currentColor !important; 
}

/* Optional: subtle inner highlight ring for richer look */
.social::after{
  content:""; 
  position:absolute; 
  inset:2px;
  border-radius:999px;
  box-shadow: inset 0 8px 18px rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.12);
  pointer-events:none;
}
.footer-logo {
    max-width: 180px;
    height: auto;
}



/* Responsive */
@media (max-width:700px){
  .top-bar-inner{ 
    flex-direction:column; 
    align-items:flex-start; 
    gap: 0.75rem;
  }
  
  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
  }
  
  .utility-hours {
    order: -1;
  }
  
}

/* ===== CLASSY LUXURY ADDRESS BLOCK ===== */

.address {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.address .row {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: flex-start;
  gap: 0.75rem;
}

.address-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--footer-accent);
  font-size: 14px;
}

.address .label {
  display: none; /* old label hidden */
}

.address .value {
  color: var(--footer-ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.address a {
  border-bottom: none !important;
  text-decoration: none;
}

.address a:hover {
  opacity: 0.8;
}
