/* ===================== GLOBAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 100px; /* Space for fixed header */
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #fff;
    color: #000;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px; /* header height ke barabar */
}

/* ===================== HEADER ===================== */
header {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(35deg, #ffffff, #ffffff, #fc5d02);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 10px rgba(115, 115, 115, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ===================== LOGO ===================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 70px;
    object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #ffd700;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background: #000;
}

/* ===== SUBMENU ===== */
.has-submenu {
    position: relative;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to bottom right, #fff5e1, #ffffff);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 10px 0;
    min-width: 180px;
    z-index: 999;
}
.submenu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}
.submenu a:hover {
    background: #f97316;
    color: #fff;
    border-radius: 6px;
}
@media (min-width: 769px) {
    .has-submenu:hover .submenu { display: block; }
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
    background: #f8f8f8;
    padding: 50px 20px;
}
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Info */
.contact-info h2 {
    margin-bottom: 15px;
    color: #333;
}
.contact-info p {
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
}
.contact-info i {
    color: #f97316;
    margin-right: 8px;
}
.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Right Form */
.contact-form-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.contact-form-wrapper h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}
.contact-form-wrapper p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}
.contact-form .form-group { margin-bottom: 15px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 5px rgba(255,204,0,0.5);
}
.btn-contact {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f97316;
    color: #000;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-contact:hover {
    background: #fff;
    border: 2px solid orange;
}


/* ==========================
   CONSENT SECTION FIX
========================== */
.consent-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0 0;
  cursor: pointer;
  accent-color: #f97316;
  flex-shrink: 0;
}

.checkbox-item label {
  flex: 1;
}

.checkbox-item a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-item a:hover {
  text-decoration: underline;
}


/* ===================== FOOTER ===================== */
.site-footer {
    background: radial-gradient(1200px 600px at 70% -200px, rgba(252,93,2,0.08), transparent 60%), #101216;
    color: #d6d8de;
    margin-top: 60px;
    overflow: hidden;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 10px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 28px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 14px;
}
.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-name { font-weight: 700; color: #f97316; font-size: 1.1rem; }
.brand-tagline { margin: 10px 0 14px; color: #b9bcc6; line-height: 1.6; font-size: .95rem; }
.footer-links { list-style: none; display: grid; gap: 8px; }
.footer-links a {
    color: #cfd2da;
    text-decoration: none;
    transition: 0.2s;
}
.footer-links a:hover { color: #ffd28f; transform: translateX(4px); }
.contact-list { list-style: none; display: grid; gap: 8px; margin-bottom: 12px; }
.contact-list a { color: #d6d8de; text-decoration: none; }
.contact-list a:hover { color: #ffd28f; }
.newsletter { display: flex; gap: 8px; margin-top: 8px; }
.newsletter input {
    flex: 1;
    background: #161a21;
    border: 1px solid #242934;
    color: #e6e8ee;
    border-radius: 10px;
    padding: 10px 12px;
}
.newsletter input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(252,93,2,.18);
}
.newsletter button {
    background: linear-gradient(90deg, #fc5d02, #ff7a2b);
    border: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252,93,2,.35);
}
.social-row { display: flex; gap: 10px; }
.social {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: #161a21;
    border: 1px solid #242934;
    transition: 0.2s;
}
.social svg { width: 18px; fill: #e6e8ee; }
.social:hover {
    transform: translateY(-3px);
    background: #1b2130;
    box-shadow: 0 10px 22px rgba(0,0,0,.35), 0 0 0 2px rgba(252,93,2,.25) inset;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 20px;
    padding: 14px 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 20px auto 0;
    color: #aeb3bf;
    font-size: .92rem;
}
.bottom-links { list-style: none; display: flex; gap: 18px; }
.bottom-links a { color: #cfd2da; text-decoration: none; }
.bottom-links a:hover { color: #ffd28f; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* Hamburger */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%; left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 12px 20px;
        font-weight: 600;
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #eee;
    }
    .nav-links a:hover { background: #a4151c; color: #fff; }
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}


@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;   /* dropdown full width le */
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 40px; /* thoda indent dikhane ke liye */
  }
}