
/* ---------------------------------------------
   GLOBAL
----------------------------------------------*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Inter", sans-serif;
  background:#f7f9ff;
  color:#222;
}

/* ---------------------------------------------
   HEADER (Glass Navbar)
----------------------------------------------*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 12px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container{
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}
/* LOGO */
.logo-box{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* FIXED LOGO SIZE – will NEVER stretch */
.logo-img{
  width: 100px;      /* MAIN FIX */
  height: 100px;     /* MAIN FIX */
  object-fit: contain; 
  display: block;
}

/* LOGO TEXT */
.logo-text{
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}

/* NAV */
.nav a{
  margin-left: 20px;
  font-weight: 700;
  color: #ff6a00;
  text-decoration: none;
}

/* Buttons */
.btn-nav{
  border: 2px solid #ff6a00;
  padding: 8px 14px;
  border-radius: 6px;
}

.btn-nav:hover{
  background: #ff6a00;
  color: white;
}

/* MOBILE */
@media(max-width: 768px){
  .nav{
    display: none;
  }
  .logo-img{
    width: 45px;
    height: 45px;
  }
}
/* ----------------------------------------------------
   MOBILE MENU BUTTON
---------------------------------------------------- */
.menu-icon {
  display: none;
  font-size: 32px;
  color: #ff6a00;
  cursor: pointer;
  font-weight: 900;
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------- */
@media(max-width: 850px) {

  .menu-icon {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: -260px;
    width: 240px;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    border-left: 3px solid #ff6a00;
    transition: 0.35s ease;
    z-index: 999999;
  }

  /* When menu is opened */
  .nav.show {
    right: 0;
  }

  /* Mobile nav links */
  .nav a {
    margin: 0;
    padding: 10px 0;
    text-align: left;
    color: #ff6a00;
    font-size: 18px;
    font-weight: 700;
  }

  .btn-nav {
    margin-top: 12px;
    text-align: center;
  }

  /* Hide desktop nav */
  .nav-container nav {
    display: none;
  }

  /* Show our custom nav */
  #mobileMenu {
    display: flex;
  }
}

/* -------------------------------------------------------------
   CONTACT HERO SECTION
--------------------------------------------------------------*/
.contact-hero {
  padding: 140px 20px 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff4eb, #ffe2c9);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("wave.svg") no-repeat bottom center/cover;
  opacity: 0.35;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: #ff6a00;
}

.contact-hero p {
  font-size: 18px;
  color: #444;
  margin-top: 8px;
}

/* -------------------------------------------------------------
   CONTACT CONTAINER
--------------------------------------------------------------*/

.contact-container {
  max-width: 1150px;
  margin: 60px auto 80px;
  padding: 0 24px;
  display: flex;
  gap: 40px;
}

.contact-info,
.contact-form {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-left: 6px solid #ff6a00;
}

.contact-info h2,
.contact-form h2 {
  color: #ff6a00;
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 900;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 18px;
  color: #444;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  padding: 12px 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
}

/* Form Fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ffc299;
  background: #fff8f3;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 8px rgba(255,106,0,0.3);
}

/* Button */
.btn-submit {
  padding: 12px;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  background: #ff6a00;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer{
  background:#ff6a00;
  color:white;
  padding:50px 20px 20px;
  margin-top:60px;
  border-top-left-radius:50px;
  border-top-right-radius:50px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.footer h3,
.footer h4{
  font-weight:800;
  margin-bottom:12px;
}

.footer-about{
  flex:1;
}

.footer-about p{
  max-width:300px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  text-decoration:none;
  color:white;
  margin-bottom:6px;
  transition:0.3s;
  font-weight:600;
}

.footer-links a:hover{
  opacity:0.75;
}

.footer-contact p{
  margin-bottom:6px;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:0.85;
}

/* Mobile */
@media(max-width:850px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-about p{
    margin:auto;
  }
}

/* -------------------------------------------------------------
   REVEAL ANIMATIONS
--------------------------------------------------------------*/

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0);
}

/* MOBILE */
@media(max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Alert messages for PHP forms */
.alert-success {
  background: #dcfce7;
  color: #16a34a;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  border-left: 4px solid #16a34a;
}

.alert-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  border-left: 4px solid #dc2626;
}