/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: #fff; font-family: "Times New Roman", Times, serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }


.s1 {
      min-height: 100vh;
      width: 100%;
      background: #fff;
      font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
      color: #000;
      overflow: hidden;
      position: relative;
    }

    .s1 *::selection {
      background: #FF7A30;
      color: #fff;
    }

    /* BG Noise texture */
    .s1-bg-noise {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* Floating Orbs */
    .s1-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(60px);
      animation: orbFloat 8s ease-in-out infinite;
    }

    .s1-orb1 {
      width: 400px;
      height: 400px;
      background: rgba(255, 122, 48, 0.18);
      top: -100px;
      right: -100px;
      animation-duration: 10s;
    }

    .s1-orb2 {
      width: 300px;
      height: 300px;
      background: rgba(255, 122, 48, 0.08);
      bottom: 100px;
      left: -80px;
      animation-duration: 13s;
      animation-delay: -3s;
    }

    .s1-orb3 {
      width: 200px;
      height: 200px;
      background: rgba(255, 122, 48, 0.12);
      top: 40%;
      left: 40%;
      animation-duration: 7s;
      animation-delay: -5s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -30px) scale(1.05); }
      66% { transform: translate(-15px, 20px) scale(0.95); }
    }

    /* NAV */
    .s1-nav-wrap {
      width: 100%;
      padding: 20px 20px 0;
      position: relative;
      z-index: 50;
    }

    .s1-bar {
      background: #000;
      color: #fff;
      border-radius: 9999px;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      animation: navSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes navSlideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .s1-logo-circle {
      background: #FF7A30;
      color: #fff;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
      transition: transform 0.3s, box-shadow 0.3s;
      font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    }

    .s1-logo-circle:hover {
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 4px 12px rgba(255, 122, 48, 0.5);
    }

    .s1-logo-txt {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .05em;
      font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    }

    .s1-mob-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-left: 8px;
    }

    .s1-desk-left, .s1-desk-center, .s1-desk-right {
      display: none;
      align-items: center;
      gap: 8px;
    }

    .s1-desk-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .s1-desk-right {
      padding-right: 8px;
    }

    .s1-nav-active {
      background: #FF7A30;
      color: #fff;
      padding: 10px 24px;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 14px;
      font-family: "Times New Roman", Times, serif;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .s1-nav-active:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 16px rgba(255, 122, 48, 0.4);
    }

    .s1-nav-lnk {
      color: #fff;
      padding: 10px 16px;
      font-size: 14px;
      transition: color 0.2s;
      position: relative;
      font-family: "Times New Roman", Times, serif;
      text-decoration: none;
    }

    .s1-nav-lnk::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      right: 50%;
      height: 2px;
      background: #FF7A30;
      border-radius: 9999px;
      transition: left 0.3s, right 0.3s;
    }

    .s1-nav-lnk:hover {
      color: #FF7A30;
    }

    .s1-nav-lnk:hover::after {
      left: 16px;
      right: 16px;
    }

    /* Hamburger */
    .s1-menu-btn {
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 10px;
      margin-right: 4px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 10;
    }

    .burger-line {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 9999px;
      transform-origin: center;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s, width 0.3s;
    }

    .s1-menu-btn.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .s1-menu-btn.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .s1-menu-btn.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile dropdown */
    .s1-mob-dd {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #000;
      color: #fff;
      border-radius: 20px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 100;
      clip-path: inset(0 0 100% 0 round 20px);
      transition: clip-path 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .s1-mob-dd.open {
      clip-path: inset(0 0 0% 0 round 20px);
      pointer-events: all;
    }

    /* Mobile menu items default hidden state (except inside open they animate) */
    .s1-mob-dd a, .s1-mob-svc-link, .s1-mob-svc-toggle {
      transform: translateX(-8px);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s, background 0.2s, color 0.2s;
    }

    .s1-mob-dd.open a, 
    .s1-mob-dd.open .s1-mob-svc-link,
    .s1-mob-dd.open .s1-mob-svc-toggle {
      transform: translateX(0);
      opacity: 1;
    }

    .s1-mob-dd.open a:nth-child(1) { transition-delay: 0.05s; }
    .s1-mob-dd.open .s1-mob-svc-link { transition-delay: 0.15s; }
    .s1-mob-dd.open .s1-mob-svc-toggle { transition-delay: 0.15s; }
    .s1-mob-dd.open a:nth-child(4) { transition-delay: 0.25s; }
    .s1-mob-dd.open a:nth-child(5) { transition-delay: 0.3s; }

    .s1-mob-dd a {
      color: #fff;
      padding: 13px 16px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 500;
      text-align: center;
      font-family: "Times New Roman", Times, serif;
      text-decoration: none;
      display: block;
    }

    .s1-mob-dd a.active {
      background: #FF7A30;
    }

    .s1-mob-dd a:not(.active):hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    /* ------- MOBILE SERVICES FIX AREA ------- */
    .s1-mob-svc-wrap {
      display: flex;
      flex-direction: column;
    }

    .s1-mob-svc-row {
      position: relative;
      display: block; 
      width: 100%;
    }

    .s1-mob-svc-link {
      display: block;
      width: 100%;
      color: #fff;
      padding: 13px 16px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 500;
      text-align: center;
      font-family: "Times New Roman", Times, serif;
      text-decoration: none;
      background: transparent;
      box-sizing: border-box;
    }

    .s1-mob-svc-link:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #FF7A30;
      transform: translateX(4px); 
    }

    .s1-mob-svc-toggle {
      position: absolute;
      right: 0px; 
      top: 0;
      bottom: 0;
      margin: auto;
      background: none;
      border: none;
      color: #fff;
      padding: 0 16px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .s1-mob-svc-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .s1-mob-svc-toggle.open {
      color: #FF7A30;
    }

    .s1-mob-svc-arrow {
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .s1-mob-svc-toggle.open .s1-mob-svc-arrow {
      transform: rotate(180deg);
    }

    .s1-mob-svc-panel {
      display: flex;
      flex-direction: column;
      gap: 4px;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
      opacity: 0;
      padding: 0 8px;
    }

    .s1-mob-svc-panel.open {
      max-height: 400px;
      opacity: 1;
      padding: 8px 8px 0;
    }

    .s1-mob-svc-panel a {
      color: rgba(255, 255, 255, 0.8);
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      font-family: "Times New Roman", Times, serif;
      display: block;
      background: rgba(255, 255, 255, 0.04);
      text-decoration: none;
    }

    .s1-mob-svc-panel a:hover {
      background: rgba(255, 122, 48, 0.2);
      color: #FF7A30;
      transform: translateX(4px);
    }

    /* MAIN */
    .s1-main {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 48px 20px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 10;
    }

    /* Reveal animations */
    .reveal-up, .reveal-left, .reveal-right {
      opacity: 0;
      animation-fill-mode: forwards;
      animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
      animation-duration: 0.9s;
      animation-delay: var(--d, 0s);
    }

    .reveal-up { transform: translateY(40px); animation-name: revealUp; }
    .reveal-left { transform: translateX(-50px); animation-name: revealLeft; }
    .reveal-right { transform: translateX(50px); animation-name: revealRight; }

    @keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes revealLeft { to { opacity: 1; transform: translateX(0); } }
    @keyframes revealRight { to { opacity: 1; transform: translateX(0); } }

    .s1-tc {
      text-align: center;
      position: relative;
      z-index: 20;
      width: 100%;
    }

    .s1-badge-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 28px;
    }

    .s1-badge {
      border: 1px solid #000;
      border-radius: 9999px;
      padding: 6px 24px;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      background: #fff;
      color: #000;
      font-family: "Times New Roman", Times, serif;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .s1-deco-tr {
      position: absolute;
      top: -16px;
      right: -24px;
      color: #FF7A30;
      animation: decoSpin 4s linear infinite;
    }

    .s1-deco-bl {
      position: absolute;
      bottom: -20px;
      left: -32px;
      color: #FF7A30;
      animation: decoSpin 6s linear infinite reverse;
    }

    @keyframes decoSpin { to { transform: rotate(360deg); } }

    .s1-h1 {
      font-size: clamp(40px, 8vw, 96px);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -.03em;
      color: #000;
      margin-bottom: 4px;
      font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    }

    .s1-h2 {
      font-size: clamp(36px, 7.5vw, 88px);
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: -.03em;
      color: #000;
      font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    }

    .s1-orange {
      color: #FF7A30;
      display: inline-block;
    }

    /* CENTER AREA */
    .s1-center-area {
      position: relative;
      margin-top: -24px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .s1-img-box {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      height: 380px;
    }

    .s1-semi {
      position: absolute;
      bottom: 0;
      width: 400px;
      height: 150px;
      background: linear-gradient(135deg, #FF7A30, #FF9A5C);
      border-radius: 150px 150px 0 0;
      z-index: 0;
      animation: semiPulse 4s ease-in-out infinite;
    }

    @keyframes semiPulse {
      0%, 100% { transform: scaleX(1); }
      50% { transform: scaleX(1.04); }
    }

    .s1-person {
      position: relative;
      z-index: 10;
      object-fit: cover;
      object-position: top;
      height: 330px;
      border-radius: 130px 130px 0 0;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
      transition: transform 0.4s ease;
    }

    /* Desktop quote & stars */
    .s1-qd, .s1-sd {
      display: none;
      position: absolute;
      z-index: 20;
      top: 20%;
    }

    .s1-qd {
      left: 24px;
      max-width: 260px;
      text-align: left;
    }

    .s1-sd {
      right: 24px;
      text-align: right;
    }

    .s1-qmark {
      font-size: 64px;
      font-family: "Playfair Display", ui-serif, Georgia, serif;
      color: #000;
      line-height: 1;
      margin-bottom: 8px;
    }

    .s1-qtxt {
      color: #333;
      font-family: "Times New Roman", Times, serif;
      font-weight: 500;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .s1-qauth {
      color: #000;
      font-family: "Playfair Display", ui-serif, Georgia, serif;
      font-weight: 700;
      font-size: 14px;
    }

    .s1-stars-row {
      display: flex;
      gap: 4px;
      justify-content: flex-end;
      margin-bottom: 8px;
    }

    .s1-star-ic {
      color: #FF7A30;
      font-size: 20px;
      line-height: 1;
      animation: starWiggle 2s ease-in-out infinite;
    }

    .s1-star-ic:nth-child(1) { animation-delay: 0s; }
    .s1-star-ic:nth-child(2) { animation-delay: 0.15s; }
    .s1-star-ic:nth-child(3) { animation-delay: 0.3s; }
    .s1-star-ic:nth-child(4) { animation-delay: 0.45s; }
    .s1-star-ic:nth-child(5) { animation-delay: 0.6s; }

    @keyframes starWiggle {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.25) rotate(5deg); }
    }

    .s1-yr {
      font-size: 48px;
      font-weight: 800;
      color: #000;
      margin-bottom: 4px;
      line-height: 1;
      font-family: "Playfair Display", ui-serif, Georgia, serif;
    }

    .s1-exp {
      color: #333;
      font-family: "Times New Roman", Times, serif;
      font-weight: 500;
      font-size: 14px;
    }

    /* Mobile info */
    .s1-mob-info {
      display: flex;
      flex-direction: column;
      gap: 32px;
      width: 100%;
      margin-top: 40px;
      padding: 0 16px;
    }

    .s1-mob-q {
      flex: 1;
      text-align: center;
    }

    .s1-mob-st {
      flex: 1;
      text-align: center;
    }

    /* Desktop Services Dropdown (Hover) */
    .s1-dd-wrap {
      position: relative;
    }

    .s1-dd-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      text-decoration: none;
    }

    .s1-dd-arrow {
      transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      flex-shrink: 0;
    }

    .s1-dd-wrap:hover .s1-dd-arrow {
      transform: rotate(180deg);
    }

    .s1-dd-panel {
      position: absolute;
      top: calc(100%);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      width: 220px;
      background: #111;
      border-radius: 18px;
      padding: 8px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.08);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 200;
    }

    .s1-dd-panel::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      width: 14px;
      height: 14px;
      background: #111;
      border-left: 1px solid rgba(255, 255, 255, 0.08);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      transform: translateX(-50%) rotate(45deg);
      border-radius: 2px;
    }

    .s1-dd-wrap:hover .s1-dd-panel {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .s1-dd-item {
      display: block;
      padding: 12px 16px;
      border-radius: 10px;
      color: #fff;
      text-decoration: none;
      font-family: "Times New Roman", Times, serif;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      margin-bottom: 4px;
    }

    .s1-dd-item:last-child {
      margin-bottom: 0;
    }

    .s1-dd-item:hover {
      background: rgba(255, 122, 48, 0.2);
      color: #FF7A30;
      transform: translateX(4px);
    }

    /* Responsive */
    @media (min-width: 640px) {
      .s1-img-box { height: 500px; }
      .s1-semi { width: 450px; height: 225px; }
      .s1-person { height: 440px; width: 320px; }
      .s1-mob-info { flex-direction: row; }
      .s1-mob-q { text-align: left; }
      .s1-mob-st { text-align: right; }
      .s1-mob-st .s1-stars-row { justify-content: flex-end; }
    }

    @media (min-width: 768px) {
      .s1-desk-left, .s1-desk-center, .s1-desk-right { display: flex; }
      .s1-mob-brand, .s1-menu-btn { display: none; }
      .s1-mob-info { display: none; }
      .s1-qd, .s1-sd { display: block; }
      .s1-img-box { height: 580px; }
      .s1-semi { width: 550px; height: 275px; }
      .s1-person { height: 520px; width: 500px; }
      .s1-nav-wrap { padding: 24px 200px 0; }
    }

    @media (min-width: 1200px) {
      .s1-qd { left: 48px; max-width: 280px; }
      .s1-sd { right: 48px; }
      .s1-person { width: 580px; height: 560px; }
      .s1-semi { width: 700px; height: 325px; }
    }


/* ================================================
   BLOCK: ge-venue
   ================================================ */
.ge-venue {
  min-height: 100vh;
  background-color: #fff;
  padding-top: 64px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .ge-venue { padding-left: 48px; padding-right: 48px; }
}
@media (min-width: 1024px) {
  .ge-venue { padding-left: 96px; padding-right: 96px; }
}

.ge-venue__header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ge-venue__title {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  line-height: 40px;
  color: #000;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .ge-venue__title { font-size: 48px; line-height: 1; }
}

.ge-venue__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 24px;
}

.ge-venue__divider-dot {
  width: 8px;
  height: 8px;
  background-color: #FF7A30;
  border-radius: 50%;
}

.ge-venue__divider-line {
  height: 1.5px;
  background-color: #FF7A30;
  flex-grow: 1;
}

.ge-venue__subtitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  font-family: "Times New Roman", Times, serif;
}

@media (min-width: 768px) {
  .ge-venue__subtitle { font-size: 24px; line-height: 32px; }
}

.ge-venue__content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .ge-venue__content { grid-template-columns: 1fr 1fr 1fr; gap: 64px; }
}

.ge-venue__left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  order: 2;
}

@media (min-width: 1024px) {
  .ge-venue__left-column { align-items: flex-end; text-align: right; order: 1; }
}

.ge-venue__left-text {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 30px;
  line-height: 1.4;
  color: #000;
  font-style: italic;
  font-weight: 600;
}

@media (min-width: 768px) { .ge-venue__left-text { font-size: 36px; } }
@media (min-width: 1024px) { .ge-venue__left-text { font-size: 2.2rem; } }

.ge-venue__center-column {
  width: 100%;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  order: 1;
}

@media (min-width: 1024px) { .ge-venue__center-column { order: 2; } }

.ge-venue__image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 3px solid #FF7A30;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.ge-venue__image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.ge-venue__right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  order: 3;
}

@media (min-width: 1024px) {
  .ge-venue__right-column { align-items: flex-start; text-align: left; }
}

.ge-venue__right-text {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.625;
  color: #333;
  font-style: italic;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .ge-venue__right-text { font-size: 20px; line-height: 1.75; }
}

.ge-venue__cta-button {
  background-color: #FF7A30;
  color: #fff;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Times New Roman", Times, serif;
}

.ge-venue__cta-button:hover { background-color: #e06620; }


    /* Optional: Style for the active item inside the dropdown menu itself */
    .s1-dd-item.active,
    .s1-mob-svc-panel a.active {
       background-color: #FF7A30; /* Light grey background for active dropdown item */
       color: white;
       font-weight: bold;
    }

/* ================================================
   SECTION 2 — SERVICES
   ================================================ */
.s2 {
  position: relative; width: 100%;
  min-height: 100vh; background: #000;
  font-family: "Times New Roman", Times, serif; color: #fff;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: 80px 20px;
}
.s2-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; background: #000; }
.s2-bg-svg { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; opacity: .9; }
.s2-blob-left {
  position: absolute; top: 15%; left: -10%; width: 350px; height: 450px; z-index: 0;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(25deg);
  animation: blobMorph 10s ease-in-out infinite;
}
.s2-blob-left-inner { position: absolute; inset: 0; opacity: .6; border-radius: inherit; }
.s2-blob-top {
  position: absolute; top: 8%; left: 42%; width: 120px; height: 140px;
  z-index: 0; filter: blur(2px);
  border-radius: 40% 60% 50% 50% / 30% 30% 70% 70%; transform: rotate(-15deg);
  animation: blobMorph 7s ease-in-out infinite reverse;
}
.s2-blob-top-inner { position: absolute; inset: -15px; margin: auto; width: 140px; height: 100px; border-radius: 50% 50% 40% 60% / 70% 70% 30% 30%; transform: rotate(15deg); }
.s2-blob-right {
  position: absolute; bottom: -10%; right: -10%; width: 500px; height: 600px;
  z-index: 0; border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; transform: rotate(-15deg);
  animation: blobMorph 12s ease-in-out infinite;
}
.s2-blob-right-inner { position: absolute; inset: 0; opacity: .5; border-radius: inherit; }
@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  33% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
  66% { border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%; }
}
.s2-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,.2), rgba(0,0,0,.8)); pointer-events: none; }

.s2-wrap { max-width: 1440px; width: 100%; position: relative; z-index: 10; }

.s2-reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s),
              transform 0.8s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s);
}
.s2-reveal.visible { opacity: 1; transform: translateY(0); }

.s2-header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; gap: 24px; }
.s2-h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.s2-h1 span { color: #FF7A30; }
.s2-desc { color: rgba(255,255,255,0.6); max-width: 448px; font-size: 15px; line-height: 1.7; font-family: "Times New Roman", Times, serif; }

.s2-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.s2-card { position: relative; cursor: pointer; }
.s2-card-inner {
  background: rgba(255,255,255,.02); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1);
  border-top-color: rgba(255,255,255,.2); border-radius: 32px; height: 420px;
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), background 0.3s, box-shadow 0.4s;
  box-shadow: 0 25px 50px rgba(0,0,0,.4); overflow: hidden;
}
.s2-card-inner:hover {
  transform: translateY(-12px) scale(1.01);
  background: rgba(255,255,255,.05);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,122,48,0.3);
}
.s2-card-title { padding: 24px 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.s2-card-title h3 {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,.9);
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.s2-card-body { position: relative; flex: 1; width: 100%; padding: 24px 24px 0; }
.s2-layer-back {
  position: absolute; top: 24px; left: 40px; right: 40px; bottom: 0;
  background: rgba(255,255,255,.08); border-radius: 24px 24px 0 0;
  transform: translateY(-16px); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.s2-card:hover .s2-layer-back { transform: translateY(-28px); }
.s2-layer-mid {
  position: absolute; top: 24px; left: 32px; right: 32px; bottom: 0;
  background: rgba(255,255,255,.15); border-radius: 24px 24px 0 0;
  transform: translateY(-8px); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.s2-card:hover .s2-layer-mid { transform: translateY(-16px); }
.s2-layer-front-wrap { position: absolute; top: 24px; left: 24px; right: 24px; bottom: 0; }
.s2-layer-front {
  position: absolute; inset: 0; background: #f8f6f3;
  border-radius: 24px 24px 0 0; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  mask-image: radial-gradient(circle at calc(100% - 24px) calc(100% - 24px), transparent 44px, black 45px);
  -webkit-mask-image: radial-gradient(circle at calc(100% - 24px) calc(100% - 24px), transparent 44px, black 45px);
}
.s2-mock { padding: 16px; display: flex; gap: 12px; height: 100%; }
.s2-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s2-mock-left, .s2-mock-right {
  flex: 1; background: #fff; border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05); padding: 10px;
  display: flex; flex-direction: column; gap: 10px; border: 1px solid #f3f4f6;
}
.s2-mock-hdr { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.s2-mock-hdr2 { display: flex; align-items: center; gap: 8px; padding: 0 4px; }
.s2-dot-sm { width: 16px; height: 16px; border-radius: 50%; background: #e5e7eb; }
.s2-line-sm { width: 32px; height: 6px; background: #e5e7eb; border-radius: 9999px; }
.s2-line-sm2 { width: 48px; height: 6px; background: #e5e7eb; border-radius: 9999px; }
.s2-hero-img { width: 100%; height: 80px; border-radius: 12px; position: relative; overflow: hidden; }
.s2-hero-img-b { background: #d4c5b9; }
.s2-hero-img-o { background: rgba(255,122,48,0.1); }
.s2-hero-blob { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.s2-hero-blob-inner { width: 40px; height: 40px; background: #FF7A30; border-radius: 50%; opacity: .5; }
.s2-bar1 { width: 75%; height: 6px; background: #e5e7eb; border-radius: 9999px; margin-top: 4px; }
.s2-bar2 { width: 50%; height: 6px; background: #e5e7eb; border-radius: 9999px; }
.s2-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.s2-cell-b { height: 40px; border-radius: 8px; background: #f0ebe1; }
.s2-cell-o { height: 40px; border-radius: 8px; background: rgba(255,122,48,0.08); }
.s2-card-r1 { width: 100%; height: 56px; border-radius: 12px; border: 1px solid; background: rgba(255,122,48,0.1); border-color: rgba(255,122,48,0.2); }
.s2-card-r1o { background: rgba(255,122,48,0.12); border-color: rgba(255,122,48,0.25); }
.s2-card-r2 { width: 100%; height: 48px; background: #f9fafb; border-radius: 12px; border: 1px solid #f3f4f6; }
.s2-arrow-btn {
  position: absolute; bottom: -8px; right: -8px;
  width: 64px; height: 64px; background: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.4);
  z-index: 10; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.s2-card:hover .s2-arrow-btn {
  transform: scale(1.1) rotate(45deg);
  background: #FF7A30; box-shadow: 0 12px 32px rgba(255,122,48,0.5);
}

.s2-pag { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 56px; }
.s2-dot-act {
  width: 40px; height: 10px; background: #FF7A30; border-radius: 9999px; cursor: pointer;
  transition: width 0.3s;
}
.s2-dot-in {
  width: 10px; height: 10px; background: rgba(255,255,255,.3);
  border-radius: 50%; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.s2-dot-in:hover { background: rgba(255,255,255,.6); transform: scale(1.3); }

@media (min-width: 768px) {
  .s2-header { flex-direction: row; align-items: center; }
  .s2-desc { text-align: right; }
  .s2 { padding: 80px 40px; }
}
@media (min-width: 1024px) {
  .s2-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ================================================
   SECTION 3 — WORK EXPERIENCE TIMELINE
   ================================================ */
.s3 {
  min-height: 100vh; width: 100%; background: #fff;
  display: flex; justify-content: center; align-items: center;
  padding: 100px 20px; font-family: "Times New Roman", Times, serif;
  overflow: hidden;
}
.s3-wrap { width: 100%; max-width: 1100px; }
.s3-title {
  text-align: center; font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; margin-bottom: 100px; letter-spacing: -.02em;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.s3-title.visible { opacity: 1; transform: translateY(0); }
.s3-title span:first-child { color: #000; }
.s3-orange { color: #FF7A30; }

.s3-timeline { position: relative; }
.s3-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; border-left: 2px dashed #d1d5db; transform: translateX(-50%);
}
.s3-line::after {
  content: ''; position: absolute; top: 0; left: -1px;
  width: 2px; height: 0%; background: #FF7A30;
  transition: height 1.5s cubic-bezier(0.22,1,0.36,1);
}
.s3-line.animated::after { height: 100%; }

.s3-items { display: flex; flex-direction: column; gap: 80px; }
.s3-item { position: relative; display: flex; align-items: flex-start; justify-content: space-between; width: 100%; }

.s3-item-reveal .s3-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.s3-item-reveal .s3-right { opacity: 0; transform: translateX(60px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s; }
.s3-item-reveal.visible .s3-left { opacity: 1; transform: translateX(0); }
.s3-item-reveal.visible .s3-right { opacity: 1; transform: translateX(0); }

.s3-left { width: 45%; text-align: right; padding-right: 56px; padding-top: 4px; }
.s3-right { width: 45%; padding-left: 56px; padding-top: 4px; }
.s3-company {
  font-size: clamp(16px, 2.5vw, 22px); font-weight: 700; color: #000; letter-spacing: -.01em;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.s3-date { color: #666; font-size: 15px; margin-top: 6px; font-weight: 500; font-family: "Times New Roman", Times, serif; }
.s3-role {
  font-size: clamp(16px, 2.5vw, 22px); font-weight: 700; color: #000; letter-spacing: -.01em;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.s3-desc-txt { color: #666; font-size: 15px; line-height: 1.7; margin-top: 10px; font-weight: 500; font-family: "Times New Roman", Times, serif; }
.s3-dot-wrap {
  position: absolute; left: 50%; transform: translateX(-50%); top: 4px;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px dashed #d1d5db; background: #fff; z-index: 10;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.s3-item.visible .s3-dot-wrap {
  border-color: #FF7A30; transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 0 6px rgba(255,122,48,0.15);
}
.s3-dot-inner { width: 16px; height: 16px; border-radius: 50%; transition: transform 0.4s; }
.s3-item.visible .s3-dot-inner { transform: scale(1.1); }
.s3-dot-orange { background: #FF7A30; }
.s3-dot-dark { background: #000; }

@media (max-width: 640px) {
  .s3-line { left: 20px; }
  .s3-item { flex-direction: column; padding-left: 50px; }
  .s3-left { width: 100%; text-align: left; padding-right: 0; padding-bottom: 8px; }
  .s3-right { width: 100%; padding-left: 0; }
  .s3-dot-wrap { left: 20px; transform: translateX(-50%) !important; }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .s3-left { padding-right: 40px; }
  .s3-right { padding-left: 40px; }
}


/* ================================================
   SECTION 6 — CASE STUDIES
   ================================================ */
.s6 {
  min-height: 100vh; width: 100%;
  background: #000; color: #fff;
  padding: 80px 20px; font-family: "Times New Roman", Times, serif; overflow: hidden;
}
.s6-wrap { max-width: 1440px; margin: 0 auto; }

.s6-reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s),
              transform 0.9s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s);
}
.s6-reveal.visible { opacity: 1; transform: translateY(0); }

.s6-header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; gap: 24px; }
.s6-badge { display: flex; align-items: center; gap: 8px; color: #FF7A30; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.s6-badge span { font-size: 14px; font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; }
.s6-h2 {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 700; letter-spacing: .02em; line-height: 1;
}

.s6-view-btn {
  background: #FF7A30; color: #fff; padding: 16px 32px; border-radius: 9999px;
  font-weight: 700; display: flex; align-items: center; gap: 8px; border: none;
  cursor: pointer; font-size: 14px; font-family: "Times New Roman", Times, serif;
  transition: background 0.2s, transform 0.3s, box-shadow 0.3s; white-space: nowrap; align-self: flex-start;
}
.s6-view-btn:hover { background: #e06620; transform: scale(1.05); box-shadow: 0 8px 24px rgba(255,122,48,0.35); }

.s6-accordion { display: flex; flex-direction: column; gap: 20px; }
.s6-acc-item {
  position: relative; border-radius: 24px; overflow: hidden;
  cursor: pointer; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); height: 280px;
}
.s6-acc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.s6-acc-item:hover img { transform: scale(1.07); }
.s6-acc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.s6-acc-item.active .s6-acc-overlay { opacity: 1; }
.s6-acc-info {
  position: absolute; bottom: 24px; left: 16px; right: 16px;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  transform: translateY(40px); opacity: 0;
}
.s6-acc-item.active .s6-acc-info { transform: translateY(0); opacity: 1; transition-delay: 0.1s; }
.s6-acc-box {
  background: rgba(0,0,0,0.9); border: 1px solid #FF7A30;
  border-radius: 16px; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.s6-acc-cat { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-family: "Times New Roman", Times, serif; }
.s6-acc-title {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(20px, 3vw, 40px); font-weight: 700; color: #fff; letter-spacing: .02em; white-space: nowrap;
}
.s6-acc-btn {
  background: #FF7A30; color: #fff; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.s6-acc-btn:hover { background: #e06620; transform: rotate(45deg); }

@media (min-width: 768px) {
  .s6-header { flex-direction: row; align-items: flex-end; }
  .s6 { padding: 80px 40px; }
}
@media (min-width: 1024px) {
  .s6-accordion { flex-direction: row; height: 580px; }
  .s6-acc-item { height: 100%; flex: 1; min-width: 0; }
  .s6-acc-item.active { flex: 2.5; }
  .s6-acc-item:not(.active) { flex: 0.8; }
  .s6-acc-info { bottom: 28px; left: 28px; right: 28px; }
  .s6-acc-box { padding: 24px 28px; }
  .s6-acc-btn { width: 56px; height: 56px; }
}


/* ================================== */
/* LAYOUT: SEPARATE CONTAINERS        */
/* ================================== */
.modern-section {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* --- Left Container (Image Box) --- */
.image-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    min-width: 45%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Right Container (Form Box) --- */
.form-box {
    flex: 1;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* ================================== */
/* TYPOGRAPHY & FORM STYLES           */
/* ================================== */
.form-box h2 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 2.1rem;
    font-weight: 600;
    color: #1a2c4e;
}

.form-box p {
    margin-top: 0;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #dcdde1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: #2f3640;
    box-sizing: border-box;
    background-color: #fcfcfd;
    transition: all 0.3s ease;
}

/* Custom Dropdown Arrow */
.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    cursor: pointer;
}

/* Glowing Blue Box Effect */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    background-color: #ffffff;
}

/* --- Checkbox Styling --- */
.group-title { margin-bottom: 12px !important; }

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 0;
    accent-color: #0d6efd;
    cursor: pointer;
}

.checkbox-item label {
    margin-bottom: 0 !important;
    font-weight: 400;
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
}

/* --- Submit Button --- */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #FF7A30;
    color: #fff;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #e06620;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 122, 48, 0.3);
}

/* ================================== */
/* VALIDATION & ERRORS                */
/* ================================== */
.error-message {
    color: #dc3545;
    font-size: 0.82rem;
    display: none;
    margin-top: 5px;
    font-weight: 500;
}

.form-group.error input[type="text"],
.form-group.error input[type="email"],
.form-group.error input[type="tel"],
.form-group.error select {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group.error .error-message { display: block; }

.form-group.error .checkbox-options { padding-left: 10px; border-left: 2px solid #dc3545; }

.success-message {
    color: #198754;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    background-color: #d1e7dd;
    padding: 10px;
    border-radius: 8px;
    display: none;
}
.success-message:not(:empty) { display: block; }


/* ================================== */
/* RESPONSIVE DESIGN (ALL DEVICES)    */
/* ================================== */
@media (max-width: 992px) {
    .layout-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .image-box {
        min-height: 250px;
        border-radius: 15px;
    }

    .form-box {
        border-radius: 15px;
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .modern-section {
        padding: 30px 15px;
    }

    .form-box {
        padding: 30px 20px;
    }

    .form-box h2 {
        font-size: 1.8rem;
    }

    .image-box {
        min-height: 200px;
    }
}


/* ================================================
   SECTION 8 — FOOTER
   ================================================ */
.s8 { background: #000; color: #fff; font-family: "Times New Roman", Times, serif; width: 100%; }
.s8-inner { max-width: 1440px; margin: 0 auto; padding: 40px 20px 0; }

.s8-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s),
              transform 0.8s cubic-bezier(0.22,1,0.36,1) var(--sd, 0s);
}
.s8-reveal.visible { opacity: 1; transform: translateY(0); }

.s8-top { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding-bottom: 48px; border-bottom: 1px solid #222; gap: 24px; }
.s8-logo { display: flex; align-items: center; gap: 8px; }
.s8-logo-bars { display: flex; align-items: flex-end; height: 32px; }
.s8-bar-tall {
  width: 10px; height: 32px; background: #FF7A30; transform: skewX(-20deg);
  margin-right: 6px; border-radius: 1px;
  animation: barBounce 2s ease-in-out infinite;
}
.s8-bar-mid {
  width: 10px; height: 22px; background: #FF7A30; transform: skewX(-20deg);
  margin-right: 6px; border-radius: 1px;
  animation: barBounce 2s ease-in-out infinite 0.15s;
}
.s8-bar-dot { width: 10px; height: 10px; background: #FF7A30; border-radius: 50%; margin-bottom: 2px; animation: barBounce 2s ease-in-out infinite 0.3s; }
@keyframes barBounce {
  0%, 100% { transform: skewX(-20deg) scaleY(1); }
  50% { transform: skewX(-20deg) scaleY(1.15); }
}
.s8-logo-text {
  font-size: 36px; font-weight: 900; letter-spacing: -.02em; margin-left: 4px;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #FF7A30;
}
.s8-social { display: flex; align-items: center; gap: 16px; }
.s8-social-label {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px; font-weight: 700; letter-spacing: .02em;
}
.s8-social-icons { display: flex; gap: 20px; }
.s8-social-icons a { color: rgba(255,255,255,0.5); transition: color 0.2s, transform 0.3s; display: inline-flex; align-items: center; }
.s8-social-icons a:hover { color: #FF7A30; transform: translateY(-3px); }
.s8-mid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 64px 0; border-bottom: 1px solid #222; }
.s8-newsletter h3 {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 32px; font-weight: 700; letter-spacing: .01em; line-height: 1.3; margin-bottom: 20px;
}
.s8-newsletter p { color: #fff; margin-bottom: 32px; line-height: 1.7; font-size: 15px; font-family: "Times New Roman", Times, serif; }
.s8-links-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.s8-links-col h4 {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 32px;
  color: #FF7A30;
}
.s8-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.s8-links-col ul a { color: #fff; font-size: 15px; transition: color 0.2s, padding-left 0.2s; display: inline-block; font-family: "Times New Roman", Times, serif; }
.s8-links-col ul a:hover { color: #FF7A30; padding-left: 6px; }
.s8-contact-col { display: flex; flex-direction: column; gap: 32px; }
.s8-contact-item { display: flex; flex-direction: column; gap: 8px; }
.s8-contact-hdr { display: flex; align-items: center; gap: 12px; }
.s8-contact-hdr h4 {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #FF7A30;
}
.s8-contact-txt { color: #fff; font-size: 15px; padding-left: 32px; line-height: 1.6; font-family: "Times New Roman", Times, serif; }

.s8-contact-txt a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.s8-contact-txt a:hover { color: #FF7A30; }

.s8-bottom {
  padding: 32px 20px;
  text-align: center;
}
.ftex {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  font-family: "Times New Roman", Times, serif;
}
.ftex a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.ftex a:hover { color: #FF7A30; }

@media (min-width: 640px) {
  .s8-top { flex-direction: row; }
  .s8-inner { padding: 40px 40px 0; }
}
@media (min-width: 768px) { .s8-mid { grid-template-columns: 5fr 5fr 3fr; } }
@media (min-width: 1024px) {
  .s8-mid { grid-template-columns: 4fr 5fr 3fr; }
  .s8-newsletter { border-right: 1px solid #222; padding-right: 48px; }
  .s8-links-wrap { padding: 0 48px; border-right: 1px solid #222; }
  .s8-contact-col { padding-left: 48px; }
}


/* ================================================
   MAGNETIC BUTTON - desktop only
   ================================================ */
@media (hover: hover) and (pointer: fine) {
  .btn-magnetic { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
}



/* ================================================
   Sub Pages
   ================================================ */

.satya-shaw-florida {
    display: block;
    line-height: 1.5;
    color: black;
}

/* reset any unwanted margins inside the block (optional but safe) */
.satya-shaw-florida * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* main container - now all nested */
.satya-shaw-florida .main-card {
    max-width: 1320px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 3rem;
    margin-top: -70px !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 auto; /* center if needed */
}

/* heading + tagline */
.satya-shaw-florida .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.satya-shaw-florida .badge {
    background: #FF7A30;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.45rem 1.4rem;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(255, 122, 48, 0.25);
    text-transform: uppercase;
}

.satya-shaw-florida h1 {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: black;
    max-width: 900px;
    margin-bottom: 1.2rem;
}

.satya-shaw-florida .florida-tag {
    color: black;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    background: #FFF2EB; /* Light orange background */
    padding: 0.5rem 2rem;
    border-radius: 60px;
    box-shadow: inset 0 1px 4px #ffffff, 0 6px 12px rgba(200, 100, 50, 0.1);
}

.satya-shaw-florida .florida-tag i {
    color: #FF7A30;
    font-size: 1.4rem;
}

/* description grid */
.satya-shaw-florida .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 2.5rem;
}

.satya-shaw-florida .philosophy-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem 2rem 2rem 2.2rem;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
}

.satya-shaw-florida .philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -12px rgba(255, 122, 48, 0.2);
}

.satya-shaw-florida .listen-symbol {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.satya-shaw-florida .listen-symbol i {
    font-size: 2.2rem;
    color: #FF7A30;
    background: #FFF2EB;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.satya-shaw-florida .philosophy-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: black;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.satya-shaw-florida .philosophy-card p {
    color: black;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.satya-shaw-florida .reviews-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #FF7A30;
    font-size: 1.1rem;
    font-weight: 500;
    background: #FFF2EB;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    width: fit-content;
}

.satya-shaw-florida .reviews-stars span {
    color: black;
    margin-left: 0.4rem;
    font-weight: 600;
}

.satya-shaw-florida .founder-notes {
    background: #FF7A30;
    color: white;
    border-radius: 2rem;
    padding: 2rem 2.2rem;
    box-shadow: 0 18px 30px -10px rgba(255, 122, 48, 0.4);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.satya-shaw-florida .founder-notes-left {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.satya-shaw-florida .founder-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 2px solid white;
}

.satya-shaw-florida .founder-notes h4 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.satya-shaw-florida .founder-notes p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.satya-shaw-florida .contact-btn {
    background: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FF7A30;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.satya-shaw-florida .contact-btn i {
    font-size: 1.3rem;
}

.satya-shaw-florida .contact-btn:hover {
    background: #FFF2EB;
    transform: scale(1.02);
    box-shadow: 0 12px 22px rgba(255, 122, 48, 0.25);
}

/* service tiles */
.satya-shaw-florida .services-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 3.5rem 0 1.8rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.satya-shaw-florida .services-title i {
    font-size: 2.3rem;
    color: #FF7A30;
}

.satya-shaw-florida .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.satya-shaw-florida .service-tile {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 8px 18px -6px rgba(180, 80, 40, 0.2);
    transition: 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    cursor: default;
}

.satya-shaw-florida .service-tile i {
    font-size: 2.8rem;
    color: #FF7A30;
    margin-bottom: 1rem;
}

.satya-shaw-florida .service-tile .label {
    font-weight: 700;
    font-size: 1.25rem;
    color: black;
    margin: 0.6rem 0 0.3rem;
}

.satya-shaw-florida .service-tile .detail {
    color: black;
    opacity: 0.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.satya-shaw-florida .service-tile:hover {
    background: #FFF2EB;
    transform: scale(1.02);
    border-color: #FFE6D6;
}

/* call to action final */
.satya-shaw-florida .closing-remark {
    margin-top: 3.5rem;
    background: #FFF2EB;
    border-radius: 3rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid white;
}

.satya-shaw-florida .closing-remark p {
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
}

.satya-shaw-florida .closing-remark p i {
    color: #FF7A30;
    margin-right: 0.6rem;
}

.satya-shaw-florida .phone-badge {
    background: #FF7A30;
    color: white;
    border-radius: 60px;
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 14px #E66E2B;
}

/* small js interactive effect */
.satya-shaw-florida .greeting-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FF7A30;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 500;
    box-shadow: 0 15px 30px -8px rgba(255, 122, 48, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 9999;
}

.satya-shaw-florida .greeting-toast.show {
    opacity: 1;
}

.satya-shaw-florida hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFE6D6, transparent);
    margin: 1rem 0;
}

@media (max-width: 750px) {
    .satya-shaw-florida .main-card {
        padding: 2rem 1.5rem;
    }
    .satya-shaw-florida h1 {
        font-size: 2.2rem;
    }
    .satya-shaw-florida .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .satya-shaw-florida .founder-notes {
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
    }
}

/* extra transition */
.satya-shaw-florida .service-tile,
.satya-shaw-florida .contact-btn,
.satya-shaw-florida .philosophy-card,
.satya-shaw-florida .founder-notes {
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.satya-shaw-florida .greeting-toast {
    transition: opacity 0.3s ease;
}
.satya-shaw-florida .contact-btn:disabled {
    opacity: 0.8;
    cursor: default;
}


/* --- CARD SECTION (exactly what you need) --- */
.services-section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 4rem 4rem 3rem 3rem;
    padding: 3.5rem 2rem;
    box-shadow: 0 30px 50px -20px rgba(0, 20, 40, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* header (minimal, but part of the section) */
.services-header {
    text-align: center;
    margin-bottom: 3.8rem;
}

.services-header .tag {
    display: inline-block;
    background: rgba(255, 122, 48, 0.1);
    color: #E66E2B;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    padding: 0.5rem 1.4rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(140deg, #E66E2B 0%, #FF7A30 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.services-header .subhead {
    font-size: 1.2rem;
    color: black;
    opacity: 0.85;
    font-weight: 400;
    border-bottom: 2px dashed #FFD9C2;
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* CARD GRID (core of the section) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem 1.8rem;
}

/* individual card */
.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2.5rem;
    padding: 2rem 1.5rem 1.8rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 30px -12px rgba(27, 57, 77, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
    box-shadow: 0 35px 45px -18px rgba(255, 122, 48, 0.2), 0 8px 20px -8px rgba(255, 122, 48, 0.3);
}

/* icon */
.card-icon {
    font-size: 2.4rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FFF2EB, #FFE6D6);
    border-radius: 1.6rem 1.6rem 1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: #FF7A30;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 12px -6px rgba(180, 80, 40, 0.2);
    transition: 0.2s;
}

.service-card:hover .card-icon {
    background: linear-gradient(145deg, #FFE6D6, #FFF2EB);
    color: #E66E2B;
}

.service-card h3 {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: black;
    margin-bottom: 0.85rem;
}

.service-description {
    font-size: 0.96rem;
    line-height: 1.5;
    color: black;
    font-weight: 400;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 0.5rem;
}

.feature-tag span {
    background: rgba(255, 122, 48, 0.1);
    border-radius: 30px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #E66E2B;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}

.card-arrow {
    margin-top: 0.3rem;
    font-size: 1.1rem;
    color: #FF7A30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: 0.2s;
}

.service-card:hover .card-arrow {
    opacity: 1;
    gap: 0.9rem;
    color: #E66E2B;
}

.card-arrow i {
    font-size: 1rem;
    transition: transform 0.15s;
}

.service-card:hover .card-arrow i {
    transform: translateX(4px);
}

.card-divider {
    height: 2px;
    background: linear-gradient(90deg, #FFE6D6, transparent);
    width: 70%;
    margin: 0.8rem 0 0.2rem;
    border-radius: 2px;
}

/* tiny responsive for the section alone */
@media (max-width: 600px) {
    .services-section {
        padding: 2rem 1.2rem;
        border-radius: 2.5rem;
    }
    .services-header h2 {
        font-size: 2rem;
    }
}


/* --- Main Section Wrapper --- */
.financial-services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.financial-services-showcase.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Header --- */
.financial-services-showcase .section-header {
    margin-bottom: 60px;
}

.financial-services-showcase .section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: black;
    margin: 0 0 15px;
}

.financial-services-showcase .section-header p {
    font-size: 1.125rem;
    color: black;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Inner Service Section Grid --- (UPDATED) */
.financial-services-showcase .inner-service-section {
    display: grid;
    gap: 35px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .financial-services-showcase .inner-service-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .financial-services-showcase .inner-service-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Service Card Styling --- */
.financial-services-showcase .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.financial-services-showcase .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: #FF7A30;
}

.financial-services-showcase .service-icon {
    font-size: 2.8rem;
    color: #FF7A30;
    margin-bottom: 25px;
}

.financial-services-showcase .service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    margin: 0 0 15px;
}

.financial-services-showcase .service-card p {
    font-size: 1rem;
    color: black;
    opacity: 0.7;
    line-height: 1.7;
    margin: 0;
}

/* --- CSS for INNER PAGE HERO (using <img> tag) --- */
.inner-hero-section {
    position: relative;
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* This is the new class for the <img> tag */
.inner-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black overlay for text contrast */
    z-index: 2;
}

.inner-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.inner-hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    color: white; /* Ensure title is white for readability */
}



/* =========================================
   CONTACT US SECTION (RED THEME)
   ========================================= */
.con-contact-us {
  position: relative;
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  overflow: hidden;
  z-index: 10;
  background: #fff;
}

/* FIX: Changed fixed width to max-width + width:100% + proper padding */
.con-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.con-panel {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  gap: 30px;
  box-sizing: border-box;
}

.con-info-box {
  width: 60%;
}

.con-info-box p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.con-details-area {
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px 20px;
  border-left: 4px solid #FF7A30;
}

.con-details-area h4 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 10px;
}

.con-details-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.con-details-area ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  padding: 3px 0;
}

.con-details-area ul li a {
  color: #FF7A30;
  text-decoration: none;
  transition: color 0.3s ease;
}

.con-details-area ul li a:hover {
  text-decoration: underline;
}

.con-image-box {
  width: 40%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.con-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Styling the section title */
        .contact-title {
            text-align: center;
            color: #FF7A30;
            margin-bottom: 25px;
            font-size: 2.5em; /* Made it larger to stand out */
        }

        /* === MODIFIED SECTION === */
        /* The main container that holds all three boxes */
        .contact-container {
            display: flex;
            justify-content: space-around;
            padding: 25px;
            border-radius: 10px;
            background-color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #FF7A30;

            /* --- KEY FIXES --- */
            max-width: 1500px;      /* 1. Sets the maximum width as requested */
            margin: 40px auto;      /* 2. Centers the container horizontally and adds vertical space */
            gap: 20px;              /* 3. Adds space between the contact boxes */
            flex-wrap: wrap;        /* 4. Allows boxes to wrap on smaller screens */
        }
        /* === END OF MODIFICATIONS === */


        /* Style for each individual box */
        .contact-box {
            text-align: center;
            flex-basis: 30%; /* Assigns a base width */
            min-width: 280px;  /* Ensures boxes don't get too small */
            flex-grow: 1;      /* Allows boxes to grow and fill space */
            padding: 25px 15px;
        }

        /* Style for the heading inside each box (Phone, Address, etc.) */
        .contact-box strong {
            font-size: 1.3em;
            color: #FF7A30;
            margin-bottom: 12px;
            display: block;
        }

        /* Style for the content inside each box */
        .contact-box p {
            font-size: 1.1em;
            color: #333333;
            margin: 0;
            line-height: 1.5; /* Improves readability */
        }

        #phone a {
    color: black;            /* Changes the text color to black */
    text-decoration: none;   /* Optional: Removes the underline */
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #05212B; /* Dark blue from color palette */
    color: #FFD700; /* Yellow from color palette */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #2B81A2; /* Light blue on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

.back-to-top i {
    color: #FFD700; /* Yellow icon */
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}


/* ============================================================
   GLOBAL FONT IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

/* ============================================================
   COLOR TOKENS
   #FF7A30  → Primary Accent (Orange)
   #000000  → Primary Dark / Text
   #ffffff  → White
   #fff5ef  → Light Orange Tint (backgrounds)
   rgba(255,122,48,0.12) → Soft Orange (icon bg, borders)
   #333333  → Secondary Text
   ============================================================ */


/* ============================================================
   SECTION 1 — .tax
   ============================================================ */

.tax {
    font-family: "Times New Roman", Times, serif;
    color: #000;
    line-height: 1.7;
    box-sizing: border-box;
}

.tax *, .tax *::before, .tax *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container Setup */
.tax .tax-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* 3-Column Grid Area */
.tax .tax-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Unified Card Style */
.tax .tax-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.04);
    border-top: 5px solid #FF7A30;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tax .tax-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(255,122,48,0.15), 0 10px 10px -5px rgba(0,0,0,0.05);
}

/* Headings & Texts in Cards */
.tax .tax-card h2 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.tax .tax-card h3.subheading {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.1rem;
    color: #FF7A30;
    margin-bottom: 20px;
    font-weight: 600;
}

.tax .tax-card p {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.05rem;
    color: #333333;
    margin-bottom: 20px;
}

.tax .tax-card strong {
    color: #000;
}

.tax .card-intro {
    font-weight: 600;
}

/* Checkmark Lists */
.tax .tax-list {
    list-style: none;
    margin-bottom: auto;
}

.tax .tax-list li {
    font-family: "Times New Roman", Times, serif;
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #000;
    font-weight: 500;
}

.tax .tax-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: #FF7A30;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Card Footers */
.tax .card-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #555555 !important;
    font-style: italic;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* CTA Area Layout */
.tax .tax-cta-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,122,48,0.15);
}

.tax .cta-message {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Button Styling */
.tax .phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF7A30;
    color: #ffffff;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    box-shadow: 0 10px 15px -3px rgba(255,122,48,0.3);
    transition: all 0.3s ease;
}

.tax .phone-button span {
    margin-right: 12px;
    font-size: 1.4rem;
}

.tax .phone-button:hover {
    background-color: #000;
    box-shadow: 0 15px 25px -3px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .tax .tax-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tax .tax-grid .tax-card:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .tax {
        padding: 50px 15px;
    }
    .tax .tax-grid {
        grid-template-columns: 1fr;
    }
    .tax .tax-grid .tax-card:nth-child(1) {
        grid-column: span 1;
    }
    .tax .phone-button {
        font-size: 1rem;
        padding: 16px 24px;
        width: 100%;
    }
    .tax .cta-message {
        font-size: 1.05rem;
    }
    .tax .tax-cta-wrapper {
        padding: 30px 20px;
    }
    .tax .tax-card {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .tax {
        padding: 40px 12px;
    }
    .tax .tax-card h2 {
        font-size: 1.15rem;
    }
    .tax .tax-card p,
    .tax .tax-list li {
        font-size: 0.97rem;
    }
}


/* ============================================================
   SECTION 2 — .business-florida
   ============================================================ */

.business-florida-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-florida-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    width: 100%;
}

.business-florida-card {
    font-family: "Times New Roman", Times, serif;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.04), 0 2px 4px -2px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: business-florida-cardFadeIn 0.5s ease-out forwards;
}

.business-florida-card h1,
.business-florida-card h2,
.business-florida-card h3 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    color: #000;
}

.business-florida-card p {
    font-family: "Times New Roman", Times, serif;
    color: #333333;
}

.business-florida-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px -3px rgba(255,122,48,0.12), 0 4px 8px -4px rgba(0,0,0,0.06);
}

/* Grid Item Placement */
.business-florida-header  { grid-column: 1 / 4; animation-delay: 0.1s; }
.business-florida-intro   { grid-column: 1 / 3; animation-delay: 0.2s; }
.business-florida-benefits { grid-column: 3 / 4; grid-row: 2 / 4; animation-delay: 0.3s; }
.business-florida-services { grid-column: 1 / 3; animation-delay: 0.4s; }

.business-florida-cta-container {
    grid-column: 1 / 4;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    animation-delay: 0.5s;
}
.business-florida-cta-container:hover {
    transform: none;
    box-shadow: none;
}

.business-florida-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    background-color: #FF7A30;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.business-florida-cta-button:hover {
    background-color: #000;
    transform: scale(1.02);
}

@keyframes business-florida-cardFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* Responsive */
@media (max-width: 900px) {
    .business-florida-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .business-florida-header  { grid-column: 1 / 3; }
    .business-florida-intro   { grid-column: 1 / 3; }
    .business-florida-benefits { grid-column: 1 / 3; grid-row: auto; }
    .business-florida-services { grid-column: 1 / 3; }
    .business-florida-cta-container { grid-column: 1 / 3; }
}

@media (max-width: 600px) {
    .business-florida-grid { grid-template-columns: 1fr; gap: 16px; }
    .business-florida-header,
    .business-florida-intro,
    .business-florida-benefits,
    .business-florida-services,
    .business-florida-cta-container {
        grid-column: auto;
        grid-row: auto;
    }
    .business-florida-card { padding: 24px 18px; }
    .business-florida-cta-button { font-size: 1.1rem; padding: 16px; }
}


/* ============================================================
   SECTION 3 — .business-tax-consultant
   ============================================================ */

.business-tax-consultant-section {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    font-family: "Times New Roman", Times, serif;
}

.business-tax-consultant-hero-header {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-tax-consultant-hero-header h1,
.business-tax-consultant-hero-header h2,
.business-tax-consultant-hero-header h3 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    color: #ffffff;
}

.business-tax-consultant-hero-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,122,48,0.08);
    border-radius: 50%;
    animation: btc-float 20s infinite ease-in-out;
}

@keyframes btc-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%       { transform: translate(-30px, -30px) rotate(180deg); }
}

.business-tax-consultant-content-wrapper {
    padding: 60px 40px;
}

.business-tax-consultant-intro-block {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-tax-consultant-intro-block h1,
.business-tax-consultant-intro-block h2,
.business-tax-consultant-intro-block h3 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    color: #000;
}

.business-tax-consultant-intro-text {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.8;
    margin-top: 30px;
}

.business-tax-consultant-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.business-tax-consultant-service-card {
    background: #fff5ef;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #FF7A30;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-tax-consultant-service-card::before {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #FF7A30;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.business-tax-consultant-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,122,48,0.15);
    background: #fff;
}

.business-tax-consultant-service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.business-tax-consultant-service-title {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.business-tax-consultant-service-card p {
    font-family: "Times New Roman", Times, serif;
    color: #333333;
}

.business-tax-consultant-optimization-section {
    background: linear-gradient(to right, #fff5ef, #ffe8d6);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-tax-consultant-optimization-section::before {
    content: '💡';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.2;
}

.business-tax-consultant-optimization-section h2 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    color: #000;
}

.business-tax-consultant-optimization-section h2::after {
    background: #FF7A30;
}

.business-tax-consultant-optimization-text {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.15rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.business-tax-consultant-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: #fff;
    margin: 0 -40px -60px -40px;
    position: relative;
    overflow: hidden;
}

.business-tax-consultant-cta-section h2,
.business-tax-consultant-cta-section h3 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    color: #ffffff;
}

.business-tax-consultant-cta-section p {
    font-family: "Times New Roman", Times, serif;
    color: rgba(255,255,255,0.85);
}

.business-tax-consultant-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.business-tax-consultant-cta-button {
    display: inline-block;
    background: #FF7A30;
    color: #fff;
    padding: 20px 50px;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255,122,48,0.35);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.business-tax-consultant-cta-button:hover {
    background: #fff;
    color: #FF7A30;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,122,48,0.25);
}

.business-tax-consultant-cta-button::before {
    content: '👉';
    margin-right: 10px;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .business-tax-consultant-content-wrapper  { padding: 40px 20px; }
    .business-tax-consultant-services-grid    { grid-template-columns: 1fr; }
    .business-tax-consultant-optimization-section { padding: 30px 20px; }
    .business-tax-consultant-cta-section      { margin: 0 -20px -40px -20px; padding: 40px 20px; }
    .business-tax-consultant-hero-header      { padding: 40px 20px; }
    .business-tax-consultant-cta-button       { font-size: 1.1rem; padding: 16px 30px; }
}

@media (max-width: 480px) {
    .business-tax-consultant-service-card { padding: 24px 18px; }
    .business-tax-consultant-optimization-section { padding: 24px 16px; }
    .business-tax-consultant-cta-button { width: 100%; text-align: center; padding: 16px 20px; }
}


/* ============================================================
   SECTION 4 — .cpa-startups-entrepreneurs
   ============================================================ */

.cpa-startups-entrepreneurs {
    font-family: "Times New Roman", Times, serif;
    color: #000;
    box-sizing: border-box;
}

.cpa-startups-entrepreneurs * {
    box-sizing: border-box;
}

.cpa-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.cpa-main-header {
    margin-bottom: 60px;
    max-width: 850px;
}

.gold-accent-line {
    width: 60px;
    height: 3px;
    background-color: #FF7A30;
    margin-bottom: 30px;
}

.cpa-main-header h1 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    color: #000;
    margin: 0;
    letter-spacing: -1px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.cpa-startups-card {
    padding: 50px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cpa-startups-card:hover {
    transform: translateY(-5px);
}

.cpa-startups-card h2 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Grid Positioning */
.cpa-startups-card-dark {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background-color: #000;
    color: #fff;
}

.cpa-startups-card-dark h2 { color: #fff; }

.cpa-startups-card-dark p {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 90%;
}

.cpa-startups-card-gold {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background-color: #FF7A30;
    color: #fff;
}

.cpa-startups-card-gold h2 { color: #fff; }

.cpa-startups-card-light {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
}

.cpa-startups-card-cta {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    align-items: center;
    text-align: center;
}

/* Lists */
.service-intro {
    font-family: "Times New Roman", Times, serif;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    font-family: "Times New Roman", Times, serif;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 400;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.premium-list li:last-child {
    border-bottom: none;
}

.cpa-startups-card-gold .premium-list li {
    border-bottom-color: rgba(255,255,255,0.25);
    color: #fff;
}

.numbered-list li {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.numbered-list li span {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-weight: 600;
    color: #FF7A30;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* CTA */
.cta-message {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.luxury-btn {
    display: inline-block;
    background-color: #FF7A30;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 45px;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #FF7A30;
}

.luxury-btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .cpa-main-header h1 { font-size: 3.2rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .cpa-startups-card-dark  { grid-column: 1 / 3; grid-row: 1 / 2; }
    .cpa-startups-card-gold  { grid-column: 1 / 2; grid-row: 2 / 3; }
    .cpa-startups-card-light { grid-column: 2 / 3; grid-row: 2 / 3; }
    .cpa-startups-card-cta   { grid-column: 1 / 3; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
    .cpa-startups-entrepreneurs { padding: 60px 15px; }
    .cpa-main-header h1 { font-size: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; gap: 16px; }
    .cpa-startups-card-dark,
    .cpa-startups-card-gold,
    .cpa-startups-card-light,
    .cpa-startups-card-cta {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 35px 22px;
    }
}

@media (max-width: 480px) {
    .cpa-main-header h1 { font-size: 2rem; letter-spacing: -0.5px; }
    .cpa-startups-card { padding: 28px 18px; }
    .cpa-startups-card h2 { font-size: 1.8rem; }
    .luxury-btn { padding: 16px 28px; width: 100%; text-align: center; }
}


/* ============================================================
   SECTION 5 — .financial-consulting-florida
   ============================================================ */

.financial-consulting-florida {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    font-family: "Times New Roman", Times, serif;
}

.financial-consulting-florida-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    flex-wrap: wrap;
    z-index: 10;
}

/* Grid Columns */
.financial-consulting-florida-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    z-index: 10;
}

/* Center Block */
.financial-consulting-florida-center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 440px;
    max-width: 460px;
    text-align: center;
}

.financial-consulting-florida-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 160%;
    background: radial-gradient(circle, rgba(255,122,48,0.1) 0%, rgba(255,255,255,0) 65%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.financial-consulting-florida-center h1 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 2rem;
    z-index: 10;
    letter-spacing: -0.02em;
}

.financial-consulting-florida-cta {
    background-color: #FF7A30;
    color: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #FF7A30;
    box-shadow: 0 10px 30px rgba(255,122,48,0.2);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.financial-consulting-florida-cta:hover {
    transform: translateY(-3px);
    background-color: #000;
    border-color: #000;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Feature Cards */
.financial-consulting-florida-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.2rem;
    min-height: 160px;
    box-shadow: 0px 4px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.financial-consulting-florida-card--large {
    height: 100%;
}

.financial-consulting-florida-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 40px rgba(255,122,48,0.1);
}

/* Icon */
.financial-consulting-florida-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255,122,48,0.12);
    color: #FF7A30;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.financial-consulting-florida-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: currentColor;
}

/* Typography in Cards */
.financial-consulting-florida-card h2 {
    font-family: "Playfair Display", ui-serif, Georgia, Cambria, serif;
    font-size: 1.15rem;
    color: #000;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.financial-consulting-florida-card p {
    font-family: "Times New Roman", Times, serif;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* List */
.financial-consulting-florida-list {
    list-style: none;
    width: 100%;
    margin-top: 1.2rem;
}

.financial-consulting-florida-list li {
    font-family: "Times New Roman", Times, serif;
    position: relative;
    color: #000;
    font-size: 0.95rem;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.financial-consulting-florida-list li:last-child {
    margin-bottom: 0;
}

.financial-consulting-florida-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FF7A30;
    background-color: rgba(255,122,48,0.12);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 1280px) {
    .financial-consulting-florida-center { min-width: 350px; }
    .financial-consulting-florida-center h1 { font-size: 2rem; }
}

@media screen and (max-width: 1024px) {
    .financial-consulting-florida-container {
        flex-direction: column;
        gap: 3rem;
    }
    .financial-consulting-florida-center {
        max-width: 600px;
        order: -1;
        min-width: 100%;
    }
    .financial-consulting-florida-column {
        max-width: 700px;
        width: 100%;
    }
    .financial-consulting-florida-center h1 {
        font-size: 2.2rem;
        padding-bottom: 0.5rem;
    }
    .financial-consulting-florida-cta { margin-top: 1rem; }
}

@media screen and (max-width: 768px) {
    .financial-consulting-florida-column { min-width: 100%; }
    .financial-consulting-florida-center { min-width: 100%; }
    .financial-consulting-florida-center h1 { font-size: 1.8rem; }
    .financial-consulting-florida-card { padding: 1.6rem; }
    .financial-consulting-florida-cta { font-size: 0.95rem; padding: 1rem 1.4rem; }
}

@media screen and (max-width: 480px) {
    .financial-consulting-florida-center h1 { font-size: 1.5rem; }
    .financial-consulting-florida-card { padding: 1.2rem; min-height: unset; }
    .financial-consulting-florida-list li { font-size: 0.9rem; }
}

