*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#ffffff;
     
    /* background:linear-gradient(90deg,#0a0a0ae6,#1d1800); */
}
html, body{
    overflow-x: hidden;
}


/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --red3:#f15454df;

    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}

/* ================= CONTACT HERO ================= */


.contact-hero{
    height:70vh;
    position:relative;
    background:url("/images/contact.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        #050505 0%,
        rgba(0,0,0,0.95) 20%,
        rgba(0,0,0,0.7) 50%,
        transparent 100%
    );
}
/* CONTENT */
.contact-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:700px;
    padding:20px;
}
/* HEADING */
.contact-hero-content h1{
    font-size:56px;
    margin-bottom:15px;
    font-weight:700;
}

/* GOLD TEXT */
.contact-hero-content h1 span{
       background:linear-gradient(var(--red1),var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.contact-hero-content p{
    font-size:18px;
    color:#ddd;
    line-height:1.6;
}
@media(max-width:600px){

    .contact-hero{
        height: 50vh;        /* ✅ reduce height */
        padding: 0 15px;
    }

    .contact-hero-content{
        max-width: 100%;
        padding: 10px;
    }

    /* HEADING */
    .contact-hero-content h1{
        font-size: 28px;     /* ✅ mobile size */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* TEXT */
    .contact-hero-content p{
        font-size: 14px;
        line-height: 1.6;
        color: #ccc;
    }

    /* OVERLAY (better readability) */
    .hero-overlay{
        background:
        linear-gradient(
            to top,
            #050505 0%,
            rgba(0,0,0,0.98) 30%,
            rgba(0,0,0,0.75) 60%,
            transparent 100%
        );
    }

}

/* ================= MOBILE ================= */

@media(max-width:600px){

    .contact-hero{
        height:50vh;              /* ✅ same as services */
        padding:0 15px;
    }

    .hero-content{
        max-width:100%;
        padding:10px;
    }

    .hero-content h1{
        font-size:28px;           /* ✅ same as services */
        line-height:1.3;
        margin-bottom:10px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
        color:#ccc;
    }

    /* MOBILE OVERLAY (same) */
    .hero-overlay{
        background:
        linear-gradient(
            to top,
            #050505 0%,
            rgba(0,0,0,0.98) 30%,
            rgba(0,0,0,0.75) 60%,
            transparent 100%
        );
    }
}

/* =============================Contact form ============================== */

.contact-wrapper {
  position: relative;
  margin-top: -20px;
    margin-bottom :80px;
  padding: 0 6%;
  z-index: 5; 
}

/* ================= CARD ================= */

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border-radius: 12px;
  padding: 30px;              
  gap: 30px;                  
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  margin-bottom: 30px;
}

/* ================= LEFT SIDE ================= */
.contact-info {
  background: #f7f7f7;
  padding: 60px 60px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #666;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  width: 45px;
  height: 45px;
  background:linear-gradient(90deg,var(--red3),var(--red2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-socials {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}

.contact-socials a {
  width: 40px;        /* equal width */
  height: 40px;       /* equal height */
  display: flex;
  align-items: center;
  justify-content: center;
 background:linear-gradient(90deg,var(--dark),var(--secondary));
  color: #fff;

  border-radius: 50%; /* makes perfect circle */
  text-decoration: none;

  transition: 0.3s;
}

/* ================= FORM ================= */
.contact-form {
  padding: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f1f1f1;
  border-radius: 6px;
  outline: none;
}

textarea {
  height: 120px;
  margin-top: 10px;
}

button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  background:linear-gradient(90deg,var(--red1),var(--red2));
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.contact-socials a:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    margin-top: -80px;
  }
}

@media(max-width:600px){

  /* WRAPPER */
  .contact-wrapper{
    margin-top: 10px;   /* balanced overlap */
    padding: 0 15px;
    margin-bottom: 50px;
  }

  /* CARD */
  .contact-card{
    grid-template-columns: 1fr;   /* stack */
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
  }

  /* LEFT SIDE */
  .contact-info{
    padding: 25px 20px;
    text-align: left;
  }

  .contact-info h2{
    font-size: 20px;
  }

  .contact-info p{
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* INFO BOX */
  .info-box{
    gap: 10px;
    margin-bottom: 15px;
  }

  .info-box i{
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  /* SOCIAL */
  .contact-socials{
    margin-top: 25px;
    justify-content: flex-start;
  }

  .contact-socials a{
    width: 35px;
    height: 35px;
    font-size: 13px;
  }

  /* FORM */
  .contact-form{
    padding: 20px 10px;
  }

  .contact-form h2{
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* INPUT ROW FIX (VERY IMPORTANT) */
  .input-row{
    flex-direction: column;   /* ✅ stack inputs */
    gap: 10px;
  }

  input, textarea{
    font-size: 14px;
    padding: 10px;
  }

  textarea{
    height: 100px;
  }

  /* BUTTON */
  button{
    padding: 10px;
    font-size: 14px;
  }

}


/* ================= MAP SECTION ================= */
.map-section {
  padding: 100px 6%;
  background: #050505;
  color: #fff;
  text-align: center;
}

/* HEADER */
.map-header {
  margin-bottom: 50px;
}

.map-header .tag {
  color: #f56e6e;
  letter-spacing: 2px;
  font-size: 14px;
}

.map-header h2 {
  font-size: 38px;
  margin: 10px 0;
}

.map-header h2 span {
  background:linear-gradient(var(--red1),var(--red2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-header p {
  color: #aaa;
}

/* ================= MAP WRAPPER ================= */
.map-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* MAP */
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: contrast(1.05) brightness(1.05);
}

/* ================= FLOATING CARD ================= */
.map-card {
  position: absolute;
  bottom: 30px;
  left: 30px;

  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);

  padding: 25px;
  border-radius: 12px;

  text-align: left;
  max-width: 280px;

  border: 1px solid rgba(255,255,255,0.1);
}

/* TEXT */
.map-card h3 {
  margin-bottom: 10px;
  color: #f56e6e;
}

.map-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ddd;
}

.map-card i {
  color: #f56e6e;
  margin-right: 8px;
}

/* BUTTON */
.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;

    background:linear-gradient(var(--red1),var(--red2));

  color: #ffffff;

  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.map-btn:hover {
  box-shadow: 0 0 15px rgba(245,215,110,0.5);
  transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ================= RESPONSIVE ================= */
@media(max-width:600px){

  /* SECTION */
  .map-section{
    padding: 60px 15px;
  }

  /* HEADER */
  .map-header{
    margin-bottom: 30px;
  }

  .map-header h2{
    font-size: 24px;
  }

  .map-header p{
    font-size: 14px;
  }

  /* MAP */
  .map-wrapper iframe{
    height: 250px;   /* ✅ smaller for mobile */
  }

  /* CARD (VERY IMPORTANT FIX) */
  .map-card{
    position: static;        /* ✅ remove floating */
    margin-top: 15px;
    max-width: 100%;
    padding: 18px;
    border-radius: 10px;
  }

  .map-card h3{
    font-size: 18px;
  }

  .map-card p{
    font-size: 13px;
  }

  /* BUTTON */
  .map-btn{
    padding: 8px 16px;
    font-size: 13px;
  }

  /* WHATSAPP BUTTON */
  .whatsapp-float{
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }

}

