:root {
    --primary: blue;
    --light: #f8f9fa;
    --dark: #222;
    --secondary: rgb(94, 94, 247);   /* optional - used in link hover */
    --light-blue: #;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--light);
    color: #333;
}

a { 
    text-decoration: none; 
    color: inherit; 
}

img { 
    max-width: 100%; 
    display: block; 
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ─── Header ─── */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px; /* controls navbar height */
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;           /* make it clearly visible */
    width: auto;
    transform: scale(1.6);  /* IMPORTANT: scales content inside image */
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-blue);
    border: 1px var(--light-blue) dashed;
    border-radius: 5px;
    padding: 4px 10px;
}

main {
    flex: 1;
}

/* Container */
.contact-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-side,
.whatsapp-side {
  flex: 1;
  min-width: 320px;
  padding: 40px;
}

.form-side {
  background: #ffffff;
  border-right: 1px solid #eee;
}

/* Typography */
h2 {
  font-size: 1.9rem;
  margin-bottom: 1.6rem;
  color: #1a1a1a;
}

label {
  display: block;
  margin: 1.3rem 0 0.55rem;
  font-weight: 500;
  color: #444;
}

.group-label {
  margin-top: 0;
  font-weight: 600;
}

/* Form fields */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.checkbox-group {
  margin: 1.6rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  margin: 0.7rem 0;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #25D366;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  margin-top: 1.8rem;
  padding: 14px 36px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 91, 187, 0.25);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #e6f7ee;
  color: #0f5132;
  border-radius: 8px;
  font-size: 0.95rem;
}


/* WhatsApp side */
.whatsapp-side {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.whatsapp-icon {
  height: 8rem;
  font-size: 5.8rem;
  margin-bottom: 1.6rem;
  color: #25D366;
  background: white;
  border-radius: 50%;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}

.whatsapp-side h2 {
  color: white;
  margin-bottom: 1rem;
}

.whatsapp-side p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2.2rem;
  max-width: 380px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.22rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20b958;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }
  .form-side {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .whatsapp-side {
    padding: 60px 40px;
  }
}

@media (max-width: 500px) {
  .form-side,
  .whatsapp-side {
    padding: 32px 20px;
  }
  h2 {
    font-size: 1.7rem;
  }
  .whatsapp-icon {
    font-size: 4.8rem;
    padding: 18px;
  }
}

/* Footer Wrapper */
.site-footer {
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
}

/* Main Footer */
.footer-main {
    background: #fff;
    padding: 4rem 2rem;
}

/* Grid */
.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Brand */
.footer-brand img {
    width: 200px;
}

.highlight {
  color: var(--light-blue); /* Blue */
}

.disrupt {
  color: navy; /* Purple */
}
.slogan {
    margin: 1rem 0;
    font-weight: 600;
    color: #333;
    position: relative;
    bottom: 40px;
    left: 20px;
}

.social-icons a {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: #333;
    position: relative;
    bottom: 40px;
    left: 20px;
}

/* Sections */
.footer-section h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    text-decoration: none;
    color: #333;
}

/* Toggle Buttons (mobile only) */
.footer-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: auto;
    background: #3d4652;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}





/* ─── Mobile Menu ─── */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .logo span {
        font-size: 1.3rem;
    }


      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .footer-brand img{
    margin: auto;
    }

    .footer-heading{
        display: none;
    }

    .footer-section ul {
        display: none;
    }

    .footer-section.active ul {
        display: block;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }


}