/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: Arial, sans-serif;
  color: #222;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body {
    width: 100%;
    margin: 0;
    max-width: 100%;
    padding: 0;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 1rem;
}
.logo {
  order: 2;
  flex-grow: 1;
  text-align: left;
}
.logo img {
  height: 70px;
  width: auto;
  display: block;
  background-color: black;
}
.desktop-nav {
  order: 3;
  display: flex;
  gap: 1.5rem;
}
.profile-menu {
  order: 4;
  position: relative;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.profile-menu img {
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.dropdown {
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  border: 1px solid #ccc;
  display: none;
  flex-direction: column;
  min-width: 150px;
}
.dropdown a {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.dropdown a:hover {
  background-color: #f0f0f0;
}

.burger {
  order: 1;
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-right: 1rem;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  transition: left 0.3s ease;
  z-index: 999;
}
.mobile-sidebar a {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #000000;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}
.hero p {
  font-size: 1.2rem;
  color: #ff9800;
}



/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  right: 0;
  top: 100%;
  flex-direction: column;
}

.nav-dropdown-content a {
  color: #222;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* GoDaddy-like Dropdown Navigation */
.nav-dropdown-content,
.dropdown {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid #e3e6e8;
  padding: 0.5rem 0;
  min-width: 200px;
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  flex-direction: column;
  z-index: 1000;
}

.nav-dropdown-content a,
.dropdown a {
  color: #222;
  padding: 14px 24px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #e3e6e8;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-content a:last-child,
.dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover,
.dropdown a:hover {
  background-color: #e6f4ea;
  color: #00724d;
  font-weight: 500;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  display: block;
}

/* Main Buttons */
.main-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.outline-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.outline-btn:hover {
  background: #eb8406;
  color: #fff;
}

/* Login Links Section */
.login-links-section {
  background: #181818;
  color: #fff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', Arial, sans-serif;
  padding: 2rem 1rem;
}

.login-links-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.login-links-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.login-links-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.login-links-group p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0.5rem 0 0.2rem 0;
}

.login-links-group a {
  color: #ff9800;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: underline;
  margin: 0.2rem 0;
  transition: color 0.2s;
}

.login-links-group a:hover {
  color: #fff;
  background: #ff9800;
  border-radius: 4px;
  padding: 0 0.3rem;
}

.login-now-btn {
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 2rem;
  cursor: pointer;
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}

.login-now-btn:hover {
  background: #ff9800;
  color: #181818;
  border-color: #ff9800;
}

/* App Section */
.app-section {
  background: #181818;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}

.app-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #eb8406;
  text-decoration: none;
  transition: background 0.2s;
}

.app-btn.android {
  background: #34a853;
}

.app-btn.ios {
  background: #4285f4;
}

.app-btn:hover {
  opacity: 0.85;
}

.app-benefits {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.app-benefits h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.app-benefits ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  list-style: disc;
}

.app-benefits li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.app-benefits p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
}

/* About Section */
.about-section {
  background: #fff;
  color: #222;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 2rem;
}

.about-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 66px;
  height: 66px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 1rem;
    gap: 1rem;
  }
  .logo img {
    height: 40px;
    margin: 0 auto;
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .profile-menu {
    margin-left: 0;
    margin-right: 0;
  }
  .burger {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
  }
  .main-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Hide sidebar by default */
.mobile-sidebar {
  display: none;
}

/* Show sidebar only when .active is added (toggle with JS) */
.mobile-sidebar.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 70vw;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 2rem 1rem;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #fff;
  font-size: 0.9rem;
  padding: 1rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;   /* <-- changed from flex-start to center */
    gap: 0.5rem;
    text-align: center;    /* <-- changed from left to center */
  }
  .footer-right {
    align-self: center;    /* <-- changed from flex-end to center */
    margin-top: 0.5rem;
  }
}