*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --cx-primary:#00bcd4;
  --cx-primary-dark:#0097a7;
  --cx-navy:#0b2239;
  --cx-text:#233548;
  --cx-muted:#6d7a88;
  --cx-bg:#f6f9fc;
  --cx-white:#ffffff;
  --cx-border:#e6edf3;
  --cx-shadow:0 12px 35px rgba(11,34,57,0.08);
  --cx-radius:18px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--cx-text);
  background:#fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.cx-container{
  width:min(1180px, 92%);
  margin:0 auto;
}

/* Header */
.cx-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(230,237,243,0.9);
}

.cx-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:82px;
}

.cx-logo img{
  height:46px;
}

.cx-nav-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.cx-nav-links a{
  font-weight:600;
  color:var(--cx-text);
  font-size:15px;
}

.cx-nav-links a:hover{
  color:var(--cx-primary);
}

.cx-nav-cta{
  margin-left:8px;
}

.cx-menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:24px;
  color:var(--cx-text);
}

/* Buttons */
.cx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:0.25s ease;
  border:1px solid transparent;
}

.cx-btn-primary{
  background:var(--cx-primary);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,188,212,0.26);
}

.cx-btn-primary:hover{
  background:var(--cx-primary-dark);
  color:#fff;
  transform:translateY(-1px);
}

.cx-btn-secondary{
  background:#fff;
  color:var(--cx-navy);
  border-color:#dbe6ee;
}

.cx-btn-secondary:hover{
  border-color:var(--cx-primary);
  color:var(--cx-primary);
}

.cx-full{
  width:100%;
}

/* Hero */
.cx-hero{
  position:relative;
  background:url("../images/banner/banner-1-bg-1.jpeg") center/cover no-repeat;
  min-height:760px;
  display:flex;
  align-items:center;
}

.cx-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(8,25,44,0.88), rgba(0,188,212,0.28));
}

.cx-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 0.85fr;
  gap:40px;
  align-items:center;
  padding:80px 0;
}

.cx-eyebrow{
  display:inline-block;
  margin-bottom:16px;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--cx-primary);
}

.cx-hero-content h1{
  color:#fff;
  font-size:58px;
  line-height:1.05;
  letter-spacing:-1.7px;
  margin-bottom:18px;
  max-width:720px;
}

.cx-hero-content p{
  color:rgba(255,255,255,0.9);
  font-size:18px;
  max-width:640px;
  margin-bottom:28px;
}

.cx-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}

.cx-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:#fff;
  font-size:15px;
  opacity:0.95;
}

.cx-hero-points i{
  color:#7af0ff;
  margin-right:7px;
}

/* Cards */
.cx-card{
  background:rgba(255,255,255,0.98);
  border-radius:var(--cx-radius);
  box-shadow:var(--cx-shadow);
  padding:28px;
}

.cx-card h3{
  font-size:28px;
  margin-bottom:6px;
  color:var(--cx-navy);
}

.cx-card p{
  color:var(--cx-muted);
  margin-bottom:18px;
}

/* Form */
.cx-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.cx-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.cx-form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cx-form-group label{
  font-size:14px;
  font-weight:700;
  color:var(--cx-navy);
}

.cx-form-group input,
.cx-form-group select,
.cx-form-group textarea{
  width:100%;
  border:1px solid var(--cx-border);
  border-radius:14px;
  padding:14px 15px;
  font-size:15px;
  color:var(--cx-text);
  background:#fff;
}

.cx-form-group textarea{
  resize:vertical;
  min-height:120px;
}

.cx-form-group input:focus,
.cx-form-group select:focus,
.cx-form-group textarea:focus{
  outline:none;
  border-color:var(--cx-primary);
  box-shadow:0 0 0 4px rgba(0,188,212,0.12);
}

.cx-estimate-result{
  margin-top:4px;
  padding:16px 18px;
  background:#f2fbfd;
  border:1px solid #cdeff4;
  border-radius:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  font-size:16px;
}

#estimateValue{
  font-weight:800;
  color:var(--cx-primary-dark);
  font-size:20px;
}

/* Sections */
.cx-section{
  padding:92px 0;
}

.cx-section-light{
  background:var(--cx-bg);
}

.cx-section-dark{
  background:var(--cx-navy);
  color:#fff;
}

.cx-section-head{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}

.cx-section-head h2{
  font-size:42px;
  line-height:1.12;
  letter-spacing:-1px;
  color:var(--cx-navy);
  margin-bottom:14px;
}

.cx-section-dark .cx-section-head h2{
  color:#fff;
}

.cx-section-head p{
  color:var(--cx-muted);
  font-size:17px;
}

.cx-section-dark .cx-section-head p{
  color:rgba(255,255,255,0.76);
}

/* Services */
.cx-service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.cx-service-card{
  background:#fff;
  border-radius:var(--cx-radius);
  padding:28px;
  box-shadow:0 8px 24px rgba(11,34,57,0.05);
  transition:0.25s ease;
}

.cx-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(11,34,57,0.08);
}

.cx-service-icon{
  width:62px;
  height:62px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eafcff;
  color:var(--cx-primary-dark);
  font-size:26px;
  margin-bottom:18px;
}

.cx-service-card h3{
  font-size:22px;
  color:var(--cx-navy);
  margin-bottom:10px;
}

.cx-service-card p{
  color:var(--cx-muted);
}

/* Steps */
.cx-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.cx-step{
  background:#fff;
  border:1px solid var(--cx-border);
  border-radius:var(--cx-radius);
  padding:26px;
}

.cx-step-number{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--cx-primary);
  color:#fff;
  font-weight:800;
  margin-bottom:14px;
}

.cx-step h3{
  color:var(--cx-navy);
  font-size:20px;
  margin-bottom:10px;
}

.cx-step p{
  color:var(--cx-muted);
}

/* Booking */
.cx-booking-wrap{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:32px;
  align-items:start;
}

.cx-booking-copy h2{
  font-size:42px;
  line-height:1.1;
  margin-bottom:16px;
}

.cx-booking-copy p{
  color:rgba(255,255,255,0.78);
  font-size:17px;
  margin-bottom:20px;
}

.cx-feature-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.cx-feature-list li{
  color:#fff;
  font-weight:600;
}

.cx-feature-list i{
  color:#73ecfb;
  margin-right:10px;
}

/* Areas */
.cx-area-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.cx-area-card{
  background:#fff;
  border:1px solid var(--cx-border);
  border-radius:16px;
  padding:18px 20px;
  text-align:center;
  font-weight:700;
  color:var(--cx-navy);
  box-shadow:0 6px 18px rgba(11,34,57,0.03);
}

/* Join banner */
.cx-join-banner{
  background:linear-gradient(135deg, #0c2842, #103c5f);
  border-radius:24px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:#fff;
}

.cx-join-banner h2{
  font-size:34px;
  line-height:1.1;
  margin-bottom:8px;
}

.cx-join-banner p{
  color:rgba(255,255,255,0.8);
  max-width:760px;
}

/* Reviews */
.cx-review-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.cx-review-card{
  background:#fff;
  border-radius:var(--cx-radius);
  padding:26px;
  border:1px solid var(--cx-border);
  box-shadow:0 8px 24px rgba(11,34,57,0.04);
}

.cx-stars{
  color:#ffb400;
  margin-bottom:12px;
  font-size:18px;
  letter-spacing:2px;
}

.cx-review-card p{
  color:var(--cx-text);
  margin-bottom:14px;
}

/* Footer */
.cx-footer{
  background:#08192c;
  color:#fff;
  padding:70px 0 0;
}

.cx-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  gap:28px;
}

.cx-footer-logo{
  max-height:48px;
  margin-bottom:16px;
}

.cx-footer-text{
  color:rgba(255,255,255,0.76);
  max-width:440px;
}

.cx-footer h4{
  margin-bottom:14px;
  font-size:18px;
}

.cx-footer-links{
  list-style:none;
  display:grid;
  gap:10px;
}

.cx-footer-links li,
.cx-footer-links a{
  color:rgba(255,255,255,0.78);
}

.cx-footer-links a:hover{
  color:var(--cx-primary);
}

.cx-footer-bottom{
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding:18px 0 22px;
  color:rgba(255,255,255,0.65);
  font-size:14px;
}

/* Sticky mobile button */
.cx-sticky-book{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--cx-primary);
  color:#fff;
  padding:15px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 16px 36px rgba(0,188,212,0.35);
}

/* Responsive */
@media (max-width: 1100px){
  .cx-hero-grid,
  .cx-booking-wrap{
    grid-template-columns:1fr;
  }

  .cx-service-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cx-steps{
    grid-template-columns:repeat(2, 1fr);
  }

  .cx-area-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .cx-review-grid{
    grid-template-columns:1fr;
  }

  .cx-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 820px){
  .cx-menu-toggle{
    display:block;
  }

  .cx-nav{
    position:relative;
  }

  .cx-nav-links{
    position:absolute;
    top:82px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--cx-border);
    padding:18px 4%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    box-shadow:0 12px 28px rgba(11,34,57,0.08);
  }

  .cx-nav-links.active{
    display:flex;
  }

  .cx-nav-cta{
    margin-left:0;
  }

  .cx-hero{
    min-height:auto;
  }

  .cx-hero-content h1{
    font-size:42px;
  }

  .cx-section-head h2,
  .cx-booking-copy h2,
  .cx-join-banner h2{
    font-size:32px;
  }

  .cx-service-grid,
  .cx-steps,
  .cx-area-grid,
  .cx-footer-grid{
    grid-template-columns:1fr;
  }

  .cx-form-row{
    grid-template-columns:1fr;
  }

  .cx-join-banner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cx-sticky-book{
    display:flex;
  }
}

@media (max-width: 560px){
  .cx-hero-grid{
    padding:56px 0 80px;
  }

  .cx-hero-content h1{
    font-size:34px;
  }

  .cx-hero-content p{
    font-size:16px;
  }

  .cx-card{
    padding:22px;
  }

  .cx-section{
    padding:74px 0;
  }

  .cx-section-head h2,
  .cx-booking-copy h2,
  .cx-join-banner h2{
    font-size:28px;
  }
}
.cx-logo img{
height:46px;
width:auto;
}