@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica-rg.otf') format('opentype');
}

@font-face {
    font-family: 'SFPro-Regular';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
}

@font-face {
    font-family: 'SFPro-Medium';
    src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'SFPro-Medium';
    background-color: black;
}

a { text-decoration: none; }
a:visited { text-decoration: none; color:black; }
a:hover { text-decoration: none; color:black; }
a:focus { text-decoration: none; color:black; }
a:hover, a:active { text-decoration: none; color:black; }

.top-bar {
  background-color: white;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1002;
  font-family: 'SFPro-Regular', Arial;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, padding-block 0.35s ease;
}

.top-bar a {
  color: black;
  text-decoration: none;
  transition: transform 0.35s ease, color 0.35s ease;
  display: inline-block;
}

.top-bar.inverted {
  background-color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.top-bar.inverted::before {
  content: none;
}

.top-bar.inverted a {
  color: white;
  transition: color 0.35s ease, transform 0.35s ease;
}

.top-bar.inverted .nav-buttons a {
  background: transparent;
  color: white;
  border-radius: 10px;
  box-shadow: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.top-bar.inverted .nav-buttons a:hover {
  background: rgba(28, 28, 28, 0.767);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; /* hover faster */
}

.nav-buttons {
  display: flex;
  margin-right: 40px;
  gap: 14px;
  transition: gap 0.35s ease;
}

.nav-buttons a {
  background: transparent;
  color: black;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  font-family: 'SFPro-Regular', Arial;
  text-decoration: none;
}

.nav-buttons a:hover {
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.067);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.top-bar.compact .nav-buttons {
  gap: 8px;
}

.top-bar.compact .logo {
  font-size: 24px;
  transition: font-size 0.35s ease;
}

.top-bar.compact {
  background-color: black;
  color: white;
}

.top-bar.compact a,
.top-bar.compact .nav-buttons a,
.top-bar.compact .logo {
  color: white;
}


.logo {
    margin-left: 10px;
    font-family: 'Coolvetica', Arial;
    font-size: 30px;
}

.main-section {
    text-align: center;
    padding: 300px 20px;
    background-color: white;
    position: relative; /* Ensure relative positioning for absolute child elements */
    overflow: hidden; /* Hide any overflow */
}

.main-section h1 {
    font-family: 'SFPro-Regular', Arial;
    font-size: 1.7vw;
}

.main-section img {
    max-width: 80%;
    width: 40%;
}

.main-section h2 {
    margin-top: 20px;
    font-size: 24px;
    font-family: 'SFPro-Medium', Arial;
}

.main-section img, 
.main-section h1 {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.main-section p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state for img and h1 */
.main-section.visible img, 
.main-section.visible h1 {
    opacity: 1;
    transform: translateY(0);
}

/* Visible state for p */
.main-section.visible p {
    opacity: 1;
    transform: translateY(0);
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    margin-top: 0;
    font-size: 28px;
    font-family: 'SFPro-Medium', Arial;
}

.content-section p {
    font-size: 1.5vw;
    line-height: 1.5;
    font-family: 'SFPro-Regular', Arial;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background-color: white;
    color: black;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.card img {
    width: 100%;
    display: block;
    transition: filter 0.3s ease; 
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    transition: max-height 0.3s ease-in-out;
    max-height: 40px;
    overflow: hidden;
}

.card:hover .card-content {
    max-height: 120px;
    background: rgba(0, 0, 0, 0.7);
}

.card:hover {
    transform: scale(1.05);
}

.card:hover img {
    filter:blur(5px);
}

.card-title {
    font-size: 18px;
    margin: 0;
    font-family: 'SFPro-Regular';
    text-shadow: black 0px 0px;
}

.card-description {
    font-size: 14px;
    margin-top: 10px;
    display: none;
    font-family: 'SFPro-Medium', Arial;
    text-shadow: black 0px 0px;
}

.card:hover .card-description {
    display: block;
}
/* ---- BACKGROUND ---- */
.booking-section {
  background: linear-gradient(
    135deg,
    #ddeaff68 0%,
    #f0edff67 25%,
    #ffe9ff64 50%,
    #ffead150 75%,
    #e0ffda57 100%
  );
  color: #0c0c0c;
  padding: 0px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: 200% 200%;
  animation: bookingBackgroundShift 10s ease-in-out infinite alternate;
  background-color: white;
}

/* ---- LIQUID GLASS EFFECT ---- */
.booking-card {
  width: 100%;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  padding: 40px 50px;
  color: #0c0c0c;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

/* ---- HEADINGS ---- */
.booking-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.booking-title {
  font-family: 'SFPro-Regular', Arial;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #000;
}

.booking-sub {
  color: rgba(0, 0, 0, 0.55);
  font-family: 'SFPro-Medium', Arial;
  font-size: 16px;
}

/* ---- FORM BODY ---- */
.booking-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field.full {
  grid-column: 1 / -1;
}

.booking-label {
  font-family: 'SFPro-Regular', Arial;
  font-size: 14px;
  color: #1b1b1f;
}

/* ---- INPUTS ---- */
.booking-input,
.booking-select {
  appearance: none;
  -webkit-appearance: none;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-family: 'SFPro-Regular', Arial;
  color: #111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.booking-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.booking-input:focus,
.booking-select:focus {
  outline: none;
  border-color: #0a84ff;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.22);
}

/* ---- SELECT DROPDOWN ---- */
.booking-select {
  background-image:
    linear-gradient(45deg, transparent 50%, #7a7a7a 50%),
    linear-gradient(135deg, #7a7a7a 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px,
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.6rem 100%;
  background-repeat: no-repeat;
}

/* ---- SEPARATOR ---- */
.booking-sep {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
  margin: 12px 0;
}

/* ---- INNER CARDS ---- */
.booking-time-card,
.booking-details-card {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.booking-section-title {
  margin-bottom: 10px;
  font-family: 'SFPro-Regular', Arial;
  font-size: 18px;
}

/* ---- BUTTONS ---- */
.booking-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, #0a84ff 0%, #0066cc 100%);
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.25);
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 132, 255, 0.32);
  filter: brightness(1.05);
}

.booking-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(10, 132, 255, 0.2);
}

/* ---- RECAPTCHA ---- */
.booking-recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.hidden {
  display: none;
}

/* ---- ANIMATIONS ---- */
@keyframes bookingBackgroundShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ---- TIME SLOT ---- */

.time-slot {
display: inline-flex;
align-items: center;
justify-content: center;
margin: 6px;
padding: 10px 18px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 12px;
background: rgba(255,255,255,0.85);
color: #0c0c0c;
font-family: 'SFPro-Regular', Arial;
font-size: 15px;
cursor: pointer;
transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
backdrop-filter: blur(8px) saturate(140%);
-webkit-backdrop-filter: blur(8px) saturate(140%);
}

.time-slot:hover {
background: rgba(245,245,245,0.95);
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
transform: translateY(-2px);
}

.time-slot:active {
transform: translateY(0);
box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.time-slot.disabled {
background: rgba(230,230,230,0.8);
color: #9e9e9e;
border-color: rgba(0,0,0,0.05);
box-shadow: none;
cursor: not-allowed;
transform: none;
}

.time-slot.selected {
background: #0a84ff;
color: #ffffff;
border-color: #0a84ff;
box-shadow: 0 8px 22px rgba(10,132,255,0.25);
}

.hidden {
display: none;
}

.business-details {
    font-size: 18px;
    line-height: 1.5;
}

.business-details h3 {
    margin-top: 0;
}

.footer {
    background-color: black;
    width: 100%;
    text-align: center;
    font-family: 'SFPro-Regular';
    color: white;
    padding: 10px 0;
}

.footer .privacy-policy-link {
    font-size: small;
    color: white;
    text-decoration: none;
}

.footer .privacy-policy-link:hover {
    color: rgb(212, 212, 212);
}

#scrollToAbout, .procutHeroChevronBtn, .marketsyncHeroChevronBtn {
  z-index: 3;
  margin-top: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.25);
  color: #000;
  padding: 15px 18px;
  font-size: 20px;
  cursor: pointer;
  font-family: 'SFPro-Regular', sans-serif;
  border-radius: 50px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: all 0.35s ease;
}

#scrollToAbout:hover, .procutHeroChevronBtn:hover, .marketsyncHeroChevronBtn:hover {
  background: rgba(255,255,255,0.5);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-container h2 {
    font-family: 'SFPro-Regular';
}

.business-details h2 {
    font-family: 'SFPro-Regular';
}
.business-details h3 {
    font-family: 'SFPro-Regular';
}
label {
    font-family: 'SFPro-Regular', Arial;
}
.dropdown option {
    font-family: 'SFPro-Medium', Arial;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(126, 126, 126, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: rgba(227, 227, 227, 0.763);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  margin: 10% auto;
  padding: 36px 44px;
  width: 900px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
  animation: slideUp 0.35s ease;
}

.large {
  width: 1200px !important;
}

.close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(45, 45, 45, 0.78);
  font-size: 28px;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.close:hover {
  color: #000000;
  transform: scale(1.1);
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* MODAL END */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: white;
    overflow-x: hidden;
    transition: width 0.5s;
    z-index: 1000;
    display: none;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu.open {
    width: 0px; /* Adjust width as needed */
}

.hamburger {
    margin-right: 60px;
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.hamburger.open div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open div:nth-child(2) {
    opacity: 0;
}

.hamburger.open div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.top-bar.inverted .hamburger div {
    background-color: white; /* Color when inverted (black bar) */
}

@media only screen and (max-width: 768px) {
    .description {
        font-size: medium;
    }
    .main-section p {
        font-size: large;
    }

    .slogan {
        font-size: 11px;
    }
    .business-details h2 {
        font-size: large;
    }
    .business-details h3 {
        font-size: medium;
    }
    .grid-item {
        width: 90%;
    }
    .grid-item img {
        max-width: 90%;
        max-height: 200px;
    }
    .content-section {
        padding: 50px 20px;
    }
    .form-section {
        padding: 50px 20px;
    }

    .mobile-menu.inverted {
        background-color: black;
        color: white;
        top: -155px;
    }

    .mobile-menu.inverted .nav-buttons a:hover {
        background-color: white;
        color: black;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 95px;
        right: -40px;
        bottom: 0;
        background-color: white;
        width: 200px;
        transform: translateX(100%);
        box-shadow: -6px 0 18px rgba(0, 0, 0, 0.15);
        transition: top 0.3s ease-in-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
        z-index: 1000;
    }

    .nav-buttons.open a {
        font-size: large;
        color: black;
        padding: 20px 10px;
        text-align: center;
        border-radius: 0;
    }

    .nav-buttons.open a:hover {
        background-color: black;
        color: white;
    }

    .mobile-menu.inverted .nav-buttons.open {
        background-color: black;
        top: 70px;
    }

    .mobile-menu.inverted .nav-buttons.open a {
        color: white;
    }
    .mobile-menu.inverted .nav-buttons.open a:hover {
        background-color: white;
        color: black;
    }

    .mobile-menu.open .nav-buttons.open {
        transform: translateX(0);
    }

    .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        justify-items: center;
    }
    .card-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}
.form-container form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    font-size: 16px;
    border: 3px solid black; 
    border-radius: 0;
    background-color: white;
    color: black;
    font-family: 'SFPro-Regular', Arial;
}
.form-container form textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    font-size: 16px;
    border: 3px solid black; 
    border-radius: 0;
    background-color: white;
    color: black;
    margin-bottom: 20px;
    font-family: 'SFPro-Regular', Arial;
}

.form-container form select::-ms-expand {
    display: none;
}

.form-container form input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    font-size: 16px;
    border: 3px solid black; 
    border-radius: 0;
    background-color: white;
    color: black;
}

.form-container form input::-ms-expand {
    display: none;
}

@media only screen and (max-width: 768px) {
    .main-section h1 {
        font-size: 60px;
    }
    .main-section h1.slogan {
        font-size: 18px;
    }
    .services-icons {
        display:none;
    }
    .form-section {
        flex-direction: column; 
        align-items: center;
    }

    .form-container,
    .business-details {
        width: 100%; 
        margin: 0;
    }

    .business-details {
        margin-top: 20px; 
    }
}

@media only screen and (min-width: 769px) {
    .form-section {
        flex-direction: row; 
        justify-content: center; 
    }

    .form-container,
    .business-details {
        width: 45%; 
        margin: 0 20px; 
    }
}

.ocean { 
    height: 5%;
    width:100%;
    position:absolute;
    bottom:0;
    left:0;
    z-index: 0;
}

.wave {
background: url('../img/wave.svg') repeat-x; 
position: absolute;
top: -110px;
width: 6400px;
height: 198px;
animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
top: -120px;
animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
opacity: 1;
}

@keyframes wave {
0% {
    margin-left: 0;
}
100% {
    margin-left: -1600px;
}
}

@keyframes swell {
0%, 100% {
    transform: translate3d(0,-25px,0);
}
50% {
    transform: translate3d(0,5px,0);
}
}

.dehhani_logo img {
    min-width: 280px;
}

.slogan {
    font-size: 24px;
}

@media only screen and (max-width: 768px) {
    .slogan {
        font-size: 14px;
    }
}

.x {
    color:red;
}


.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #f3f3f3;
    border-top: 10px solid #000;
    border-right: 10px solid #000;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.business-details p {
    margin-top: -15px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.getstartedbtn {
    z-index: 1;
    margin-top: 30px;
    border: 5px solid black;
    background-color: white;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'SFPro-Regular';
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, font-size 0.3s; /* Smooth transition */
}

.getstartedbtn:hover {
    z-index: 3;
    background-color: white;
    color: black;
    padding: 10px 20px;
    font-size: 20px; 
}

.services-section {
    margin-top: 80px;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.service-item {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
    opacity: 1;
    transition: opacity 0.3s;
}

.service-item .icon, .service-item i {
    font-size: 4em; 
    color: #ffffff;
}

.service-item p {
    font-size: 1em;
    color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(23, 22, 22, 0.8);
    padding: 10px;
    border-radius: 5px;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none; 
    width: 300px;
}


.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-item:hover i {
    font-size: 4em; 
    color: #b2b2b2;
    cursor: pointer;
}

.service-item:hover h3 {
    cursor: pointer;
}

.service-item:hover p {
    opacity: 1;
    pointer-events: auto; 
    transform: translate(-50%, -50%) scale(1.1);
    cursor: pointer;
}

.service-item:hover h3 {
    opacity: 0; 
}

.down {
    margin-top: -100px;
}

.center-text {
    text-align: center;
}

.center {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  flex-direction: row !important;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  padding: 10px 20px;
  padding-top: 14px; /* pushes text down */
  padding-bottom: 8px; /* optional for balance */
  font-size: 24px;
  font-family: 'SFPro-Regular', Arial, sans-serif;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  display: block;
}

.back-to-top:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.18);
}



/* CONTACT START */

.contact-panel {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(900px 600px at 10% 20%, rgba(83,120,255,0.25) 0%, transparent 70%),
    radial-gradient(900px 600px at 90% 30%, rgba(255,99,191,0.25) 0%, transparent 70%),
    linear-gradient(135deg, #0b0b0d 0%, #111216 100%);
  color: #fff;
}

.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  box-shadow: 0 18px 48px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
  padding: 60px 40px;
}

.contact-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-sub {
  text-align: center;
  color: #ccc;
  opacity: .85;
  margin-bottom: 40px;
  font-size: 17px;
}

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

.field label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #aaa;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 3px rgba(83,120,255,0.25);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23aaa' viewBox='0 0 20 20'><path d='M5.25 7.5L10 12.25L14.75 7.5H5.25Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 36px;
}

.contact-button {
  margin-top: 10px;
  align-self: center;
  background: linear-gradient(90deg, #4f8cff, #8c5aff);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(79,140,255,.3);
  transition: transform .15s ease, box-shadow .25s ease, opacity .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(79,140,255,.4);
  opacity: .95;
}

.contact-button:active {
  transform: translateY(0);
}

.contact-panel .contact-form .field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.contact-panel .contact-form .field input,
.contact-panel .contact-form .field select,
.contact-panel .contact-form .field textarea {
  width: 100%;
  box-sizing: border-box;
  display: block;
  min-width: 0;
}

@media (max-width: 600px) {
  .contact-wrap { padding: 40px 24px; }
}

/* CONTACT END */

/* PRODUCTS & SERVICES START */

.showcase {
  background: linear-gradient(180deg, #fafbfe 0%, #f3f5f9 100%);
  padding: 80px 6%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.showcase .content-section {
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.showcase .content-section h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 10px;
}

.showcase .content-section .subtitle {
  color: #5c5c60;
  margin-bottom: 50px;
  font-size: 1rem;
}

.showcase .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.showcase .grid-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 20px 24px;
  max-width: 350px;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase .grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.showcase .grid-item img {
  width: 100%;
  max-width: 180px;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.showcase .grid-item:hover img {
  transform: scale(1.05);
}

.showcase .grid-item h3 {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.showcase .grid-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* PRODUCTS & SERVICES END */

/* ABOUT START */

.about-section {
  background: linear-gradient(
    180deg,
    #000000 0%,
    #0a0a0f 25%,
    #111118 55%,
    #1a1a20 75%,
    #20222a 100%
  );
  display: flex;
  justify-content: center;
  padding: 100px 6%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-section .content-section {
  max-width: 900px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
  color: #e7e7ea;
}

.about-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffffff 0%, #9ea2b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #b5b6ba;
  margin-bottom: 22px;
}

.about-section .lead {
  font-size: 1.15rem;
  color: #d0d0d4;
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-section strong {
  color: #ffffff;
  font-weight: 600;
}

/* ABOUT END */

body.construction-page,
html:has(body.construction-page) {
    overflow: hidden;
    height: 100%;
}

body.construction-page {
    background:
        radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.16), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.14), transparent 22%),
        radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.05), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #eef3f8 100%);
    color: #0f172a;
}

.construction-hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 64px 20px 72px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.construction-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(15, 23, 42, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.construction-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

.construction-orb-left {
    width: 320px;
    height: 320px;
    left: -90px;
    top: 9%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 68%);
}

.construction-orb-right {
    width: 260px;
    height: 260px;
    right: -60px;
    top: 10%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 68%);
}

.construction-card {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px) clamp(32px, 4.5vw, 48px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transform: translateY(-18px);
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: #334155;
    font-family: 'SFPro-Medium', Arial;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.construction-badge p {
    margin: 0;
}

.construction-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.08);
}

.construction-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-brand img {
    width: min(50vw, 200px);
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.10));
}

.construction-eyebrow {
    margin: 16px 0 0;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #64748b;
}

.construction-title {
    margin: 28px 0 0;
    font-family: 'Coolvetica', Arial;
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: #0f172a;
}

.construction-copy {
    margin: 16px 0 0;
    max-width: 30rem;
    font-family: 'SFPro-Regular', Arial;
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.65;
    color: #475569;
}

.construction-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.construction-points span {
    padding: 9px 13px;
    border-radius: 999px;
    background: #eef2ff;
    color: #334155;
    border: 1px solid rgba(99, 102, 241, 0.12);
    font-family: 'SFPro-Medium', Arial;
    font-size: 13px;
}

.construction-hero .ocean {
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.26;
}

.construction-page .wave {
    filter: saturate(0.55) brightness(0.72) contrast(1.05);
    mix-blend-mode: multiply;
    opacity: 0.55;
}

.construction-page .wave:nth-of-type(2) {
    opacity: 0.36;
}

@media only screen and (max-width: 768px) {
    .construction-hero {
        padding: 48px 16px 64px;
    }

    .construction-card {
        padding: 28px 22px 30px;
        border-radius: 24px;
        transform: translateY(-8px);
    }

    .construction-badge {
        margin-bottom: 18px;
    }

    .construction-brand img {
        width: min(70vw, 180px);
    }

    .construction-eyebrow {
        margin-top: 14px;
    }

    .construction-title {
        font-size: clamp(16px, 5.5vw, 28px);
        margin-top: 20px;
        white-space: nowrap;
    }

    .construction-copy {
        font-size: 15px;
        margin-top: 12px;
    }

    .construction-points {
        margin-top: 18px;
    }

    .construction-hero .ocean {
        height: 5%;
        bottom: 0;
    }

    .construction-points {
        gap: 8px;
    }

    .construction-points span {
        font-size: 12px;
        padding: 9px 12px;
    }
}
