@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* All */
*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Playfair Display", serif; 
}
/* Colours */
:root {
  --color-1: #f9f7f1;
  --color-2: #182f4a;
  --color-3: #f0d096;
  --color-4: #ffffff;
  --color-5: #5b5b5b;
}

body{
   background-color: var(--color-1);
     display: flex;
  flex-direction: column;
  min-height: 100vh;
}



p{
  font-size: 10px;
  font-weight: 200;
}

a{
  color: var(--color-1);
}

a:hover{
  color: var(--color-3);
}

nav{
  max-height: 100px;
  background-color: var(--color-2);
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-1);
  position: sticky;   /* keeps it visible */
  top: 0;             /* stick to the very top */
  z-index: 1000;
}

.nav-img-box{
  margin-left: 50px;
  padding: 5px 0;
}
.nav-txt-box{
  text-align: center;
  line-height: 1.2;
  margin-left: 10px;
}

.nav-txt-box:last-child {
  margin-left: auto;  /* pushes this block (Contact/Services) to the far right */
  display: flex;
  gap: 50px; /* spacing between Contact and Services */
  align-items: center;
  margin-right: 50px;
}

.outer-con{
  margin-left: 50px;
  margin-right: 50px;
   flex: 1;
}

.logo-img{
  max-width: 50px;
  max-height: 50px;
}

.main, .main-left-align, .main-2{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 25px;
  color: var(--color-2);
}

.main-2{
  gap: 15px;
  margin-bottom: 15px;
}

.main-center{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}

.centerer{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.main-left-align{
  justify-content: center;
}

.main-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:25px;
}

.title{
  color: var(--color-2);
  font-size: 40px;
}

.cta-1, .cta-2-1{
  background-color: var(--color-2);
  border-radius: 10px;
  padding: 15px 20px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--color-2);
}

.cta-2-1{
  padding: 10px 15px;
  color: var(--color-2);
  background-color: var(--color-1);
}

.cta-1-link{
  font-weight: 600;
  font-size: 15px;
}

.cta-1-link:hover{
  color: var(--color-1);
}

.cta-1:hover, .cta-2-1:hover{
  cursor: pointer;
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}

.main-img-box{
  text-align: center;
  color: var(--color-5);
}

.main-img-box-2{
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  margin-top: 40px;
}

.card{
  background-color: var(--color-4);
  border-radius: 20px;
  border: none; 
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  padding: 50px;
  margin: 25px;
  gap: 25px;
}

.card-img{
  border-radius: 20px;
  border: none;
}

.main-txt-box{
  line-height: 2;
}

.main-txt-box p{
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-2);
}

.main-txt-box h3{
  color: var(--color-2);
  font-size: 25px;
}

.card-1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  gap:25px;
  margin-bottom: 50px;
  margin: 25px;
}

.main-btn-box{
  text-align: center;
}

.main-btn-box p{
  color: var(--color-5);
  font-size: 15px;
  margin: 15px 0px;
}

.a-1{
  color: var(--color-2);
  text-decoration: underline;
  margin: 0px 10px;
}

.card-1-box {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Hide the checkbox */
.faq-toggle {
  display: none;
}

/* Style the label (clickable question) */
.card-1-box label {
    cursor: pointer;
    display: block;
}

.card-1-box h4 {
    margin: 0;
}

/* Hide the answer by default */
.card-1-box p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
    font-size: 15px;
}

/* Show the answer when checkbox is checked */
.faq-toggle:checked ~ p {
    max-height: 500px; /* Adjust based on your content */
    opacity: 1;
    margin-top: 15px;
}

/* Optional: Change icon from plus to minus when open */
.faq-toggle:checked ~ label h4 .fa-plus:before {
    content: "\f068"; /* Font Awesome minus icon code */
}

.main-txt-btn-box{
  margin-top: 25px;
}

.contact-box {
  text-align: left;
  padding: 20px 40px;
  background-color: var(--color-4);
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: solid 2px var(--color-2);
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.contact-box h2 {
  color: var(--color-2);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}



/* WhatsApp Contact Box Styles */
.whatsapp-contact-box {
  text-align: left;
  background-color: var(--color-4);
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: solid 2px var(--color-2);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.whatsapp-contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
  border-color: #128C7E;
}

.whatsapp-contact-box h2 {
  color: var(--color-2);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin: 10px;
}

.whatsapp-contact-box p {
  color: var(--color-5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 10px;
  max-width: 500px;
}

.whatsapp-cta {
  color: #25D366;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.whatsapp-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover {
  transform: scale(1.02);
}

.whatsapp-cta i {
  color: #25D366;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover .whatsapp-cta i {
  transform: scale(1.1) rotate(-5deg);
}





.spacer{
  margin-bottom: 300px;
}

.h4{
  color: var(--color-5);
  font-size: 15px;
}

li{
  margin-left: 20px;
}

ul{
  margin-left: 20px;
  margin-bottom: 20px;
}

.fa-diamond{
  font-size: 10px;
}

.sub-title{
  font-size: 25px;
  color: var(--color-2);

}


footer{
  background-color: var(--color-2);
  
  color: var(--color-3);
}

.footer{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

footer p{
  color: var(--color-1);
  font-size: 15px;
  margin: 5px;
}

footer h3{
  margin: 25px 0px;
}

.footer-box{
  margin: 25px 0px;
}

.footer-box-btm {
  text-align: center;
  border-top: solid 1px #ddd;
}

.footer-box-btm p{
  margin-bottom: 0px;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size: 10px;
}

.footer-box-btm a{
  color: var(--color-3);
}

.footer-box-btm a:hover{
  color: var(--color-1);
  cursor: pointer;
}

/* Premium fade animation */
@keyframes fadeUpBlur {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Elements start invisible */
.premium-fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
}

/* Animation triggers when visible */
.premium-fade-scroll.animate {
    animation: fadeUpBlur 1.5s ease-out forwards;
}

/* Slower, more elegant */
@keyframes luxuryFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-fade {
    opacity: 0; /* Start invisible */
    animation: luxuryFadeUp 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
    /* 2s is the delay before animation starts */
}

/* With blur effect (premium feel) */
@keyframes fadeUpBlur {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.premium-fade {
    animation: fadeUpBlur 1.5s ease-out forwards;
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
  .outer-con {
    margin-left: 20px;
    margin-right: 20px;
  }

  .main, .main-left-align, .main-2 {
    flex-direction: column;
    gap: 25px;
  }

  .main-left {
    width: 100%;
  }

  .title {
    font-size: 28px;
  }

  .sub-title {
    font-size: 20px;
  }

  .card {
    flex-direction: column;
    padding: 25px;
    margin: 15px 0;
  }

  .card-1 {
    margin: 15px 0;
  }

  iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin: 0;
  }

  .main-map-box {
    width: 100%;
    margin: 0;
  }

  .no-m {
    display: none;
  }

  .nav-img-box {
    margin-left: 20px;
  }

  .main-img-box{
    align-items: center;
    justify-content: center;
  }

  .nav-txt-box:last-child {
    font-size: 11px;
    gap: 15px;
    margin-right: 20px;
  }

  .logo-img {
    max-width: 40px;
    max-height: 40px;
  }

  nav {
    max-height: auto;
    padding: 10px 0;
  }

  form {
    padding: 15px;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 300px;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-txt-box h3 {
    font-size: 20px;
  }

  .main-btn-box p {
    font-size: 13px;
  }

  .cta-1-link {
    font-size: 13px;
  }

  .footer {
    margin: 25px;
    flex-direction: column;
    gap: 25px;
  }

  .footer-box {
    width: 100%;
    max-width: 400px;
  }

  .footer-box p {
    font-size: 14px;
    margin-top: 10px;
  }

  
  

  .contact-box h2 {
    font-size: 1rem;
  }

  /* WhatsApp Box Mobile */
  .whatsapp-contact-box {
    
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width:100%;
  }

  .whatsapp-contact-box h2 {
    font-size: 18px;
  }

  .whatsapp-contact-box p {
    font-size: 13px;
    max-width: 100%;
  }

  .whatsapp-cta {
    font-size: 18px;
    justify-content: center;
  }

  .whatsapp-cta i {
    font-size: 2rem !important;
  }
}

/* Phones & tablets (481px to 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {

  /* WhatsApp Box Tablet */
  .whatsapp-contact-box {
    padding: 25px 30px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .whatsapp-contact-box h2 {
    font-size: 20px;
  }

  .whatsapp-contact-box p {
    font-size: 14px;
    max-width: 100%;
  }

  .whatsapp-cta {
    font-size: 22px;
    justify-content: center;
  }

  .whatsapp-cta i {
    font-size: 2.5rem !important;
  }

  .main {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .main-img-box {
    margin-bottom: 20px;
  }
  
  .main-img-box .no-m {
    display: block;
  }
  

  .main-left-align {
    flex-direction: column;
    gap: 30px;
  }

  .card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
  }

  iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
  }

  .main-map-box {
    width: 100%;
  }

  .title {
    font-size: 35px;
  }

  .footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 35px;
  }

  .nav-txt-box:last-child {
    gap: 30px;
  }


  .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact-box {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .main-img-box-2 {
    height: auto;
    margin-top: 30px;
  }
}

/* Large screens / desktops (1025px and above) */
@media (min-width: 1025px) {
  .outer-con {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
  }

  .card {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-box {
    width: 100%;
  }

  .whatsapp-contact-box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}