/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
.tab,
.menu-toggle {
    -webkit-user-select: none;
    user-select: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f8f5f1;
    color: #333;
}

/* NAVBAR */
nav{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

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

    padding: 18px 8%;

    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(10px);

    z-index: 1000;
}

/* LOGO */
.logo img{
    height: 60px;
}

/* NAV MENU */
nav ul{
    display: flex;

    gap: 35px;

    list-style: none;
}

/* NAV LINKS */
nav ul li a{
    text-decoration: none;

    color: white;

    font-size: 17px;

    font-weight: 500;

    position: relative;

    transition: 0.3s;
}

/* UNDERLINE EFFECT */
nav ul li a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background-color: #c19a6b;

    transition: 0.3s;
}

/* HOVER */
nav ul li a:hover{
    color: #c19a6b;
}

nav ul li a:hover::after{
    width: 100%;
}

.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:white;
    cursor:pointer;
    user-select:none;
    transition:0.3s;
}

.menu-toggle:hover{
    color:#c19a6b;
}
/* HERO SECTION */
.contact-hero{
    height: 60vh;

    background-color: #1f1f1f;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 20px;
}

/* HERO TITLE */
.contact-hero h1{
    font-size: 60px;

    margin-bottom: 20px;
}

/* HERO TEXT */
.contact-hero p{
    font-size: 16px;

    max-width: 700px;

    line-height: 1.7;
}

/* CONTACT WRAPPER */
.contact-wrapper{
    display: flex;
    margin-top: 80px;
    justify-content: center;
    align-items: center;

    padding: 100px 8%;

    background-color: #f8f5f1;
}

/* CONTACT CARD */
.contact-info{
    width: 100%;

    max-width: 700px;

    background: white;

    padding: 60px 50px;

    border-radius: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTACT TITLE */
.contact-info h2{
    font-size: 40px;
    color: #222;
    position: relative;
    margin-bottom: 35px;
}

.contact-info h2::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c8a97e;
    margin-top: 12px;
}
.contact-info h2::after{
    transition: 0.3s ease;
}


/* CONTACT DESCRIPTION */
.contact-info > p{
    color: #666;

    line-height: 1.8;

    margin-bottom: 45px;
}

/* INFO BOX */
.info-box{
    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid #eee;
}

/* INFO HEADINGS */
.info-box h3{
    color: #c19a6b;

    margin-bottom: 10px;

    font-size: 20px;
}

/* INFO TEXT */
.info-box p{
    color: #555;

    line-height: 1.8;
}
.info-box p a{
    color: #555;
    text-decoration: none;
    transition: 0.3s ease;
}

.info-box p a:hover{
    color: #c19a6b;
    text-decoration: underline;
}
/* ENQUIRY FORMS SECTION */

.enquiry-box{
    border-bottom:none;
    padding-bottom:0;
}

.enquiry-text{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.enquiry-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.enquiry-link{
    display:flex;
    align-items:center;
    justify-content:space-between;

    text-decoration:none;

    padding:16px 18px;

    background:#f8f5f1;

    border:1px solid #ece5dc;

    border-radius:14px;

    color:#333;

    font-weight:500;

    transition:all .3s ease;
}

.enquiry-link::after{
    content:"→";
    font-size:18px;
    color:#c19a6b;
    transition:.3s;
}

.enquiry-link:hover{
    background:#fff;
    border-color:#c19a6b;
    transform:translateX(5px);
}

.enquiry-link:hover::after{
    transform:translateX(5px);
}

/* SOCIAL LINKS */
.social-links{
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 15px;
}

/* SOCIAL BUTTONS */
.social-links a{
    text-decoration: none;

    color: #333;

    background-color: #f5f5f5;

    padding: 14px 18px;

    border-radius: 12px;

    transition: 0.3s;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 500;
}

/* SOCIAL HOVER */
.social-links a:hover{
    background-color: #c19a6b;

    color: white;

    transform: translateX(5px);
}

/* ICON SIZE */
.social-links i{
    font-size: 20px;
}
/* Floating Social Icons */

.social-float {
  position: fixed;
  right: 25px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-float a:hover {
  transform: translateY(-4px) scale(1.08);
}

.social-float a:nth-child(1):hover {
  color: #e1306c;
}

.social-float a:nth-child(2):hover {
  color: #1877f2;
}

.social-float a:nth-child(3):hover {
  color: #ff0000;
}
.social-float a {
  position: relative;
}

.follow-label {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  width: 160px; /* Same width for all */
  text-align: center;

  background: #c8a97e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 25px;

  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.social-float a:hover .follow-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.social-float a:nth-child(1) .follow-label {
  background: #E1306C;
}

.social-float a:nth-child(2) .follow-label {
  background: #1877F2;
}

.social-float a:nth-child(3) .follow-label {
  background: #FF0000;
}
/*  FOOTER */

footer{
    background: linear-gradient(135deg,#181818,#222);
    border-top:3px solid #c19a6b;
    color:#ddd;
    margin-top:80px;
}

.footer-container{
    max-width:none;
    width:90%;
    margin:auto;
    padding:70px 5%;
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr 1fr;
    gap:50px;
    align-items:start;
}

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo img{
    width:110px;
    margin-bottom:15px;
}

.footer-note{
    max-width:280px;
    line-height:1.8;
    color:#aaa;
}

.footer-column h3{
    color:#c19a6b;
    margin-bottom:25px;
    font-size:22px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:2px;
    background:#c19a6b;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column a,
.footer-form-link{
    display:inline-block;
    width:fit-content;
    color:#cfcfcf;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s ease;
}

.footer-column a:hover,
.footer-form-link:hover{
    color:#c19a6b;
    transform:translateX(5px);
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    width:fit-content;
}

.footer-social i{
    width:20px;
    text-align:center;
    color:#c19a6b;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
}

.footer-bottom p:first-child{
    margin-bottom:8px;
    color:#fff;
}

.footer-bottom p:last-child{
    color:#999;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:768px){

    /* NAVBAR MOBILE */
    nav{
        padding:10px 20px;
    }

    .logo img{
        height:45px;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        font-weight:700;
        cursor:pointer;
        color:white;
    }

    nav ul{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:rgba(0,0,0,0.95);
        flex-direction:column;
        text-align:center;
        gap:0;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        margin:12px 0;
    }

    nav ul li a{
        font-size:17px;
        display:inline-block;
        padding:8px 0;
    }

    /* HERO */
    .contact-hero h1{
        font-size:32px;
        line-height:1.2;
    }

    .contact-hero p{
        font-size:15px;
        line-height:1.7;
    }

    /* CONTACT SECTION */
    .contact-wrapper{
        padding:60px 5%;
    }

    .contact-info{
        padding:30px 20px;
    }

    .contact-info h2{
    font-size:28px;
    margin-bottom:30px;
}

    .contact-info > p{
        font-size:15px;
        line-height:1.8;
    }

    .info-box h3{
        font-size:18px;
    }

    .info-box p{
        font-size:15px;
    }
    .enquiry-link{
    padding:14px 16px;
    font-size:15px;
}

.enquiry-text{
    font-size:15px;
}

    .social-links a{
        font-size:15px;
        padding:12px 15px;
    }
    .social-float {
    right: 15px;
    bottom: 80px;
  }

  .social-float a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        padding:50px 25px;
        text-align:center;
    }

    .footer-logo{
        align-items:center;
    }

    .footer-logo img{
        width:90px;
    }

    .footer-note{
        max-width:320px;
        margin:auto;
    }

    .footer-column{
        align-items:center;
    }

    .footer-column h3{
        font-size:20px;
        margin-bottom:20px;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-column a,
    .footer-form-link{
        font-size:16px;
        margin-bottom:12px;
    }

    .footer-social{
        align-items:center;
    }

    .footer-bottom{
        padding:20px 15px;
    }
}
