:root{
  --bg: #f5f9fc;
  --surface: #ffffff;
  --muted: #555;
  --accent: #0077b6;
  --accent-2: #00b4d8;
  --dark: #023047;
  --radius: 12px;
  --shadow-sm: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.15);
  --max-width: 1200px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

/* ===========================
   WEBSITE LAUNCH BANNER
=========================== */

.launch-banner{
    background: linear-gradient(90deg,#0ea5e9,#0284c7);
    color:#fff;
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:500;
    text-align:center;
    gap:15px;
}

.launch-banner strong{
    font-weight:700;
}

.close-banner{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    line-height:1;
}

.close-banner:hover{
    opacity:.8;
}

@media (max-width:768px){

.launch-banner{
    flex-direction:column;
    padding:10px 15px;
    font-size:14px;
}

.close-banner{
    position:absolute;
    right:15px;
    top:8px;
}

}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Containers */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 26px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    max-width: 1300px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 40px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 55px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

/* Hover underline effect */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--accent);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}
/* Book Button */
.book-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: black;
  border: 0;
  font-size: 1.25rem;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  flex-shrink: 0;
}

.bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dark);
  margin: 6px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(3,37,65,0.55), rgba(3,37,65,0.55));
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../poolimage/pool.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.02) saturate(1.02);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 48px 24px;
  max-width: 900px;
  margin-left: 4vw;
  width: 90%;
}

.hero-content h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(11,139,214,0.14);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,139,214,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: var(--accent);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-3px);
}

.btn-cta {
  background: white;
  color: var(--accent);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Services */
.services {
    padding: 80px 8%;
    background: #f7fbff;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card h3 {
    padding: 25px 25px 10px;
    font-size: 30px;
    color: #003b63;
}

.card p,
.card ul {
    padding: 0 25px 25px;
    line-height: 1.7;
    color: #444;
    flex-grow: 1;
}

.card ul {
    padding-left: 45px;
}
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 200px;
    }

    .services h2 {
        font-size: 34px;
    }
}
/* Learn More Button */
.learn-btn {
  display: inline-block;
  margin-top: 15px;
  align-self: flex-start;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 24px rgba(3,55,90,0.08);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.learn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(3,55,90,0.14);
}
.page-header {
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 40px;

  text-align: center;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );

  border-radius: 25px;
  color: white;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-header .muted {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}
/* About Section */
.about {
  background: #fff;
  padding: 80px 10%;
}



.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;

}

.about-image{
    position: relative;
    flex: 1;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 25px;
    margin: 20px auto 0;
}

.about-image img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideshow 9s infinite;
}

.about-image img:nth-child(1){
    animation-delay: 0s;
}

.about-image img:nth-child(2){
    animation-delay: 3s;
}

.about-image img:nth-child(3){
    animation-delay: 6s;
}

@keyframes slideshow{
    0%{
        opacity:0;
    }
    10%{
        opacity:1;
    }
    30%{
        opacity:1;
    }
    40%{
        opacity:0;
    }
    100%{
        opacity:0;
    }
}
    @media (max-width:768px){
    .about-image{
        max-width: 100%;
        aspect-ratio: 4 / 5;
    }

}

/* Text */
.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
  text-align:justify;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: unset;
    width: 100%;
    max-width: 400px;
  }

  .about-image img {
    height: 300px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}
/* CTA Section */
.cta {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 900px;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
}

.footer-bar {
  text-align: center;
  padding: 25px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Testimonials Video Section */
.testimonials {
  padding: 60px 0;
  text-align: center;
}

.testimonial-video {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-video video {
  display: block;
  border-radius: 15px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    height: 80vh;
    min-height: 380px;
  }

  .hero-content {
    margin-left: 6vw;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  header {
    height: 56px;
  }

  .navbar {
    height: 56px;
    padding: 8px 15px;
  }

  .logo-container {
    height: 28px;
    width: 28px;
  }

  .logo-link {
    height: 28px;
    width: 28px;
  }

  .logo-img {
    height: 2px;
    width: 2px;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 15px;
    top: 56px;
    background: var(--surface);
    flex-direction: column;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    z-index: 110;
    flex: none;
    gap: 12px;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    text-align: left;
    font-size: 13px;
  }

  .nav-toggle {
    display: flex;
  }

  .book-btn {
    display: none;
  }

  .hero {
    height: 60vh;
    min-height: 320px;
    margin-top: 56px;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 220px;
  }

  .services {
    padding: 60px 5%;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 20px;
  }

  .card img {
    height: 160px;
  }

  .learn-btn {
    width: 100%;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    order: 2;
  }

  .about-text {
    order: 1;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .cta {
    padding: 50px 20px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .testimonial-video video {
    height: 400px ;
  }
}

@media (max-width: 480px) {
  header {
    height: 52px;
  }

  

  .book-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero {
    margin-top: 52px;
    height: 50vh;
  }

  .hero-content {
    padding: 24px 16px;
    margin-left: 0;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .services {
    padding: 40px 5%;
  }

  .services h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .card {
    padding: 16px;
  }

  .card h3 {
    font-size: 14px;
  }

  .card p {
    font-size: 13px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .cta {
    padding: 40px 15px;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 14px;
  }

  .testimonial-video video {
    height: 250px ;
  }
}

/* Accessibility */
a:focus,
button:focus {
  outline: 3px solid rgba(0,119,184,0.15);
  outline-offset: 3px;
  border-radius: 6px;
}
/* ======================
   GALLERY CARDS
====================== */

.gallery {
    padding: 80px 10%;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    transition: .3s ease;
    cursor: pointer;
    margin: 0;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #0b4f71;
    background: #fff;
}

/* Tablet */

@media (max-width: 768px) {
    .gallery .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 220px;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .gallery .grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }
}
.lightbox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.open{
    display: flex;
}

.lb-content{
    position: relative;
    max-width: 900px;
    width: 90%;
}

.lb-content img{
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lb-close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.lb-meta{
    color:#fff;
    text-align:center;
    margin-top:15px;
}
/* Product Links */

.product-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:20px 0;
    flex-wrap:wrap;
}

.shop-icon{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:30px;

    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;

    transition:0.3s ease;
}

.shop-icon:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.shopee{
    background:#EE4D2D;
}

.lazada{
    background:#0F136D;
}

.tiktok{
    background:#000;
}
.card-header h3{
    min-height: 65px;
}

.card-description{
    min-height: 85px;
}

.shopee-embed-wrapper{
    height: 320px;
    display:flex;
    justify-content:center;
    align-items:center;
}



/* ========== CONTACT HEADER ========== */
.contact-header {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 20px;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 18px;
  opacity: 0.95;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Form Box */
.contact-form-box {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
}

.contact-form-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #003d5c;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #003d5c;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  background: #f9fafb;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0077b6;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 14px 24px !important;
  font-size: 16px;
  font-weight: 700;
}

.form-status {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-status.loading {
  display: block;
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #90caf9;
}

/* Details Box */
.contact-details-box {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
}

.contact-details-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #003d5c;
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.detail-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #003d5c;
  margin-bottom: 6px;
}

.detail-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.detail-content a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.detail-content a:hover {
  color: #003d5c;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-header {
    padding: 40px 20px;
    margin-top: 56px;
  }

  .contact-header h1 {
    font-size: 32px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 20px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-box,
  .contact-details-box {
    padding: 35px;
  }

  .contact-form-box h2,
  .contact-details-box h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-form-box,
  .contact-details-box {
    padding: 25px;
    border-radius: 12px;
  }

  .contact-form-box h2,
  .contact-details-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .detail-item {
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .detail-icon {
    font-size: 24px;
  }

  .detail-content h3 {
    font-size: 15px;
  }

  .detail-content p {
    font-size: 13px;
  }
}