:root {
      --primary: #2E7D6B;
      --primary-light: #5FBFA8;
      --primary-dim: #1F5A4C;
      --primary-rgb: 46,125,107;

      --black: #0B1A17;
      --surface: #102420;
      --surface2: #15332E;
      --surface3: #1B403A;

      --text-main: #E6F4F1;
      --text-soft: rgba(230,244,241,0.65);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--black);
      color: var(--text-main);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Cormorant Garamond', serif;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse-glow {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
      }

      50% {
        box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes scrollBar {
      0% {
        width: 0%;
      }
    }

    @keyframes heroFade {
      from {
        opacity: 0;
        transform: scale(1.04);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .fade-up {
      animation: fadeUp 0.8s ease forwards;
    }

    .pulse-btn {
      animation: pulse-glow 2.5s infinite;
    }

    .float-btn {
      animation: float 3s ease-in-out infinite;
    }

    .primary-text {
      background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dim));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .primary-shimmer {
      background: linear-gradient(90deg, var(--primary-dim) 0%, var(--primary-light) 40%, var(--primary-dim) 80%);
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .glass {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(var(--primary-rgb), 0.15);
      backdrop-filter: blur(12px);
    }

    .glass-dark {
      background: rgba(8, 8, 8, 0.75);
      border: 1px solid rgba(var(--primary-rgb), 0.2);
      backdrop-filter: blur(16px);
    }

    .primary-border {
      border: 1px solid rgba(var(--primary-rgb), 0.3);
    }

    .primary-border-top {
      border-top: 1px solid rgba(var(--primary-rgb), 0.3);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-dim), var(--primary), var(--primary-light));
      color: #080808;
      font-family: 'Jost', sans-serif;
      font-weight: 600;
      font-size: 0.875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
      filter: brightness(1.1);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary-light);
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 2px;
      border: 1px solid rgba(var(--primary-rgb), 0.5);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-outline:hover {
      background: rgba(var(--primary-rgb), 0.1);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    /* Hero */
    .hero-bg {
      background:
        linear-gradient(rgba(8, 8, 8, 0.747), rgb(8, 8, 8)),
        url('images/heroimage.JPG');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    .hero-pattern {
      background-image:
        radial-gradient(circle at 1px 1px, rgba(var(--primary-rgb), 0.08) 1px, transparent 0);
      background-size: 32px 32px;
    }

    /* Section divider */
    .divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      margin: 0 auto;
    }

    /* Cards */
    .service-card {
      background: var(--surface2);
      border: 1px solid rgba(var(--primary-rgb), 0.12);
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(var(--primary-rgb), 0.35);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--primary-rgb), 0.08);
    }

    .review-card {
      background: var(--surface2);
      border: 1px solid rgba(var(--primary-rgb), 0.12);
      border-radius: 4px;
      padding: 28px;
      transition: all 0.3s ease;
    }

    .review-card:hover {
      border-color: rgba(var(--primary-rgb), 0.3);
      background: var(--surface3);
    }

    /* Gallery */
    .gallery-item {
      overflow: hidden;
      border-radius: 4px;
      border: 1px solid rgba(var(--primary-rgb), 0.1);
      cursor: pointer;
      position: relative;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-item:hover .gallery-img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(var(--primary-rgb), 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-img {
      transition: transform 0.6s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Scroll progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      z-index: 1000;
      background: linear-gradient(90deg, var(--primary-dim), var(--primary-light));
      transition: width 0.1s linear;
    }

    /* Sticky nav */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(8, 8, 8, 0.95);
      border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
      backdrop-filter: blur(20px);
    }

    /* Floating buttons */
    .floating-wa {
      position: fixed;
      bottom: 24px;
      right: 20px;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 200;
      cursor: pointer;
      animation: pulse-glow 2.5s infinite, float 3s ease-in-out infinite;
      transition: transform 0.2s;
      text-decoration: none;
    }

    .floating-wa:hover {
      transform: scale(1.1);
    }

    .floating-call {
      position: fixed;
      bottom: 24px;
      left: 20px;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary-dim), var(--primary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
      z-index: 200;
      cursor: pointer;
      animation: float 3s ease-in-out infinite 1s;
      text-decoration: none;
    }

    .floating-call:hover {
      transform: scale(1.1);
    }

    /* Accordion */
    .accordion-item {
      border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
    }

    .accordion-btn {
      width: 100%;
      text-align: left;
      padding: 20px 0;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-main);
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .accordion-content.open {
      max-height: 300px;
    }

    .accordion-text {
      padding-bottom: 20px;
      color: rgba(230,244,241, 0.6);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    /* Observe animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Map embed placeholder */
    .map-container {
      width: 100%;
      height: 280px;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid rgba(var(--primary-rgb), 0.2);
    }

    @media (min-width: 768px) {
      .map-container {
        height: 380px;
      }
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-dim);
      border-radius: 2px;
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(8, 8, 8, 0.98);
      z-index: 150;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--text-main);
      text-decoration: none;
      letter-spacing: 0.05em;
    }

    .mobile-menu a:hover {
      color: var(--primary-light);
    }

    /* oceanic logo */
    .oceanic-icon {
      width: 32px;
      height: 32px;
    }

    /* Star rating */
    .stars {
      color: var(--primary);
      letter-spacing: 2px;
    }

    /* Why card */
    .why-card {
      background: var(--surface2);
      border: 1px solid rgba(var(--primary-rgb), 0.1);
      border-radius: 4px;
      padding: 28px 24px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .why-card:hover {
      border-color: rgba(var(--primary-rgb), 0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    /* Price badge */
    .price-badge {
      background: rgba(var(--primary-rgb), 0.1);
      border: 1px solid rgba(var(--primary-rgb), 0.25);
      border-radius: 2px;
      padding: 4px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--primary-light);
    }

    /* Section label */
    .section-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      background: var(--surface2);
      border: 1px solid var(--primary);
      max-width: 500px;
      width: 100%;
      position: relative;
      padding: 40px;
      text-align: center;
      border-radius: 8px;
      transform: translateY(40px);
      transition: transform 0.4s ease;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(var(--primary-rgb), 0.15);
    }

    @media (max-width: 480px) {
      .modal-content {
        padding: 30px 20px;
      }

      .modal-content h2 {
        font-size: 1.5rem !important;
      }

      .modal-content p {
        font-size: 0.95rem !important;
      }

      .modal-content span {
        font-size: 1.8rem !important;
      }
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: var(--primary);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }