
    /* ===== RESET & BASE ===== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --navy: #0A1D3D;
      --navy-dark: #07162F;
      --gold: #D4A64A;
      --gold-light: #F1C86A;
      --grey: #6B7280;
      --white: #FFFFFF;
      --warm-white: #FDFBF7;
      --shadow-sm: 0 4px 20px rgba(10, 29, 61, 0.08);
      --shadow-md: 0 12px 40px rgba(10, 29, 61, 0.12);
      --shadow-lg: 0 24px 60px rgba(10, 29, 61, 0.18);
      --radius: 12px;
      --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    body {
      font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      background: var(--warm-white);
      color: #1a1a1a;
      line-height: 1.7;
      overflow-x: hidden;
    }
    a {
      color: var(--gold);
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--gold-light);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== TYPOGRAPHY ===== */
    h1,
    h2,
    h3,
    h4 {
      font-family: 'Trajan Pro', serif;
      color: var(--navy);
      line-height: 1.2;
    }
    h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900;
    }
    h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    h3 {
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 600;
    }
    .gold-text {
      color: var(--gold);
    }
    .navy-text {
      color: var(--navy);
    }
    .section-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(212, 166, 74, 0.12);
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      margin-bottom: 0.75rem;
    }
    .gold-underline {
      display: inline-block;
      width: 70px;
      height: 3px;
      background: var(--gold);
      margin: 0.5rem auto 1.5rem;
      border-radius: 4px;
    }
    .section-title {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 3rem;
    }
    .section-title p {
      color: var(--grey);
      font-size: 1.05rem;
      margin-top: 0.5rem;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 2.2rem;
      border-radius: 60px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
      letter-spacing: 0.3px;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 4px 14px rgba(212, 166, 74, 0.35);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 166, 74, 0.4);
      color: var(--navy);
    }
    .btn-secondary {
      background: var(--navy);
      color: #fff;
    }
    .btn-secondary:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(10, 29, 61, 0.3);
      color: #fff;
    }
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }

    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 0 0 12px 12px;
      z-index: 9999;
      font-weight: 600;
    }
    .skip-link:focus {
      top: 0;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(212, 166, 74, 0.25);
      padding: 0.6rem 0;
      transition: var(--transition);
    }
    header.scrolled {
      box-shadow: 0 4px 30px rgba(10, 29, 61, 0.08);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .logo img {
      height: 50px;
      width: auto;
      display: block;
    }
    .logo-text {
      font-family: 'Trajan Pro', serif;
      display: none; /* hidden on small screens, but we keep the image */
    }
    nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
    }
    nav a {
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--navy);
      letter-spacing: 0.5px;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    nav a:hover::after {
      width: 100%;
    }
    nav a:hover {
      color: var(--gold);
    }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 0.4rem 1.4rem;
      border-radius: 40px;
      font-weight: 600 !important;
    }
    .nav-cta::after {
      display: none !important;
    }
    .nav-cta:hover {
      background: var(--gold-light) !important;
      color: var(--navy) !important;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 2.5px;
      background: var(--navy);
      border-radius: 4px;
      transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ===== HERO ===== */
    .hero {
      padding: 8rem 0 4rem;
      background: linear-gradient(165deg, #ffffff 0%, #f4f6fa 100%);
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 80%;
      background: radial-gradient(circle, rgba(212, 166, 74, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-content .brand-badge {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .hero-content h1 {
      margin-bottom: 0.5rem;
    }
    .hero-content .tagline {
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .hero-content .sub-text {
      color: var(--grey);
      font-size: 1.05rem;
      max-width: 520px;
      margin-bottom: 1.5rem;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(10, 29, 61, 0.06);
    }
    .hero-stats .stat h4 {
      font-family: 'Trajan Pro', serif;
      font-size: 1.8rem;
      color: var(--gold);
    }
    .hero-stats .stat p {
      font-size: 0.85rem;
      color: var(--grey);
      font-weight: 500;
    }
    .hero-image {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      box-shadow: var(--shadow-lg);
      border: 2px solid rgba(212, 166, 74, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-image .hero-placeholder {
      text-align: center;
      padding: 2rem;
      color: #fff;
      z-index: 2;
    }
    .hero-placeholder .big {
      font-family: 'Trajan Pro', serif;
      font-size: 2.8rem;
      color: var(--gold);
      font-weight: 700;
    }
    .hero-placeholder .sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0.5rem;
    }
    .hero-placeholder .gold-line {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 1rem auto;
    }
    .hero-image .gold-dots {
      position: absolute;
      top: 10%;
      right: 10%;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(212, 166, 74, 0.15) 2px, transparent 2px);
      background-size: 20px 20px;
      opacity: 0.5;
      pointer-events: none;
    }
    .hero-image .gold-dots-2 {
      position: absolute;
      bottom: 10%;
      left: 10%;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, rgba(212, 166, 74, 0.1) 2px, transparent 2px);
      background-size: 16px 16px;
      opacity: 0.4;
      pointer-events: none;
    }

    /* ===== SECTION COMMON ===== */
    section {
      padding: 5rem 0;
    }
    .section-alt {
      background: #ffffff;
    }
    .section-dark {
      background: var(--navy);
      color: #fff;
    }
    .section-dark h2,
    .section-dark h3 {
      color: #fff;
    }
    .section-dark .section-title p {
      color: rgba(255, 255, 255, 0.7);
    }

    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .service-card {
      background: #fff;
      padding: 2.2rem 1.8rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--gold);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .service-card:hover::before {
      opacity: 1;
    }
    .service-card .icon {
      font-size: 2.4rem;
      margin-bottom: 0.75rem;
      display: block;
    }
    .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.4rem;
    }
    .service-card p {
      color: var(--grey);
      font-size: 0.95rem;
    }

    /* ===== HANDHOLDING ===== */
    .handholding-flow {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 1rem;
      background: rgba(10, 29, 61, 0.04);
      padding: 2rem 2.5rem;
      border-radius: var(--radius);
      border: 1px solid rgba(212, 166, 74, 0.2);
      max-width: 1000px;
      margin: 0 auto 2rem;
    }
    .handholding-flow .step {
      background: var(--navy);
      color: #fff;
      padding: 0.4rem 1.4rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.3px;
    }
    .handholding-flow .arrow {
      color: var(--gold);
      font-size: 1.2rem;
      font-weight: 300;
      display: flex;
      align-items: center;
    }
    .handholding-desc {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: var(--grey);
    }
    .handholding-desc strong {
      color: var(--navy);
    }

    /* ===== WHO ===== */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .who-card {
      background: #fff;
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
      border: 1px solid rgba(212, 166, 74, 0.1);
    }
    .who-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }
    .who-card .icon {
      font-size: 2.8rem;
      margin-bottom: 0.75rem;
    }
    .who-card h3 {
      font-size: 1.2rem;
    }
    .who-card p {
      color: var(--grey);
      font-size: 0.95rem;
    }

    /* ===== TESTIMONIALS (minimal, trust) ===== */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: var(--radius);
      border-left: 3px solid var(--gold);
    }
    .testimonial-card p {
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
    }
    .testimonial-card .author {
      margin-top: 1rem;
      font-weight: 600;
      color: var(--gold);
      font-size: 0.9rem;
    }

    /* ===== FAQ ===== */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid rgba(10, 29, 61, 0.06);
      padding: 1.2rem 0;
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: var(--navy);
      font-size: 1.05rem;
      gap: 1rem;
    }
    .faq-question:hover {
      color: var(--gold);
    }
    .faq-question .toggle {
      font-size: 1.4rem;
      color: var(--gold);
      transition: var(--transition);
      flex-shrink: 0;
    }
    .faq-item.active .faq-question .toggle {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: var(--grey);
      font-size: 0.98rem;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding-top: 0.8rem;
    }

    /* ===== CONTACT ===== */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      border: 1px solid rgba(212, 166, 74, 0.15);
    }
    .contact-info {
      padding: 3rem 2.5rem;
      background: var(--navy);
      color: #fff;
    }
    .contact-info h3 {
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
    .contact-info .gold-line {
      width: 50px;
      height: 3px;
      background: var(--gold);
      margin: 0.5rem 0 1.5rem;
    }
    .contact-info p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1.5rem;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .contact-detail .icon {
      font-size: 1.3rem;
      width: 2.2rem;
      text-align: center;
      color: var(--gold);
    }
    .contact-detail a {
      color: rgba(255, 255, 255, 0.85);
    }
    .contact-detail a:hover {
      color: var(--gold);
    }
    .contact-form {
      padding: 3rem 2.5rem;
    }
    .contact-form h3 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
    }
    .form-group {
      margin-bottom: 1.2rem;
    }
    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--navy);
      margin-bottom: 0.3rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      transition: var(--transition);
      background: #f8fafc;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(212, 166, 74, 0.2);
      background: #fff;
    }
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    /* ===== MAP ===== */
    .map-section {
      padding: 3rem 0 0;
    }
    .map-container {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(212, 166, 74, 0.15);
    }
    .map-container iframe {
      width: 100%;
      height: 400px;
      display: block;
      border: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 3rem 0 1.5rem;
      border-top: 3px solid var(--gold);
      margin-top: 3rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-grid h4 {
      color: #fff;
      font-family: 'Trajan Pro', serif;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .footer-grid p,
    .footer-grid a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 2;
    }
    .footer-grid a:hover {
      color: var(--gold);
    }
    .footer-bottom {
      text-align: center;
      padding-top: 1.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
    }
    .footer-bottom .disclaimer {
      font-size: 0.7rem;
      margin-top: 0.5rem;
      color: rgba(255, 255, 255, 0.3);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 29, 61, 0.7);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      animation: fadeIn 0.3s ease;
    }
    .modal-overlay.active {
      display: flex;
    }
    .modal {
      background: #fff;
      max-width: 580px;
      width: 100%;
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      animation: slideUp 0.4s ease;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1.2rem;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: var(--grey);
      cursor: pointer;
      transition: var(--transition);
      line-height: 1;
    }
    .modal-close:hover {
      color: var(--navy);
      transform: rotate(90deg);
    }
    .modal h2 {
      font-family: 'Trajan Pro', serif;
      font-size: 1.6rem;
      margin-bottom: 0.3rem;
    }
    .modal .sub {
      color: var(--grey);
      margin-bottom: 1.5rem;
    }
    .modal .form-group input,
    .modal .form-group textarea {
      background: #f8fafc;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    @keyframes slideUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: var(--gold-light);
      transform: translateY(-4px);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .services-grid,
      .who-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 820px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
      }
      .hero-image {
        aspect-ratio: 16/10;
      }
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem 2rem;
        box-shadow: var(--shadow-md);
        gap: 1rem;
        border-top: 2px solid rgba(212, 166, 74, 0.2);
      }
      nav.open {
        display: flex;
      }
      .hamburger {
        display: flex;
      }
      .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
      }
    }
    @media (max-width: 600px) {
      .services-grid,
      .who-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .contact-info,
      .contact-form {
        padding: 2rem 1.5rem;
      }
      .modal {
        padding: 1.8rem;
      }
      .handholding-flow {
        padding: 1.2rem;
        gap: 0.3rem 0.6rem;
      }
      .handholding-flow .step {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
      }
      .handholding-flow .arrow {
        font-size: 0.9rem;
      }
      .logo img {
        height: 40px;
      }
    }

    /* ===== UTILITY ===== */
    .text-center {
      text-align: center;
    }
    .mt-1 {
      margin-top: 1rem;
    }
    .mt-2 {
      margin-top: 2rem;
    }
    .mt-3 {
      margin-top: 3rem;
    }
    .mb-1 {
      margin-bottom: 1rem;
    }
    .mb-2 {
      margin-bottom: 2rem;
    }
    .gap-1 {
      gap: 1rem;
    }
    .flex-center {
      display: flex;
      align-items: center;
      justify-content: center;
    }
 

    /* Whatsapp and Call */

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
}

.floating-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-button.call {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-button .button-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.floating-button .button-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.floating-button:hover .button-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-button .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4757;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.35);
    animation: badgePulse 2s ease-in-out infinite;
    border: 2px solid #fff;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    line-height: 1;
    padding: 0;
    font-family: 'Inter', sans-serif;
}



@keyframes pulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .floating-button .button-tooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Floating buttons for contact page */
.contact-page .floating-buttons {
    bottom: 100px;
}

/* Animation for new messages */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(25deg); }
    20% { transform: rotate(-25deg); }
    30% { transform: rotate(25deg); }
    40% { transform: rotate(-25deg); }
    50%, 100% { transform: rotate(0); }
}

.floating-button.ringing {
    animation: ring 1.5s ease-in-out 3;
}