/* Reset and basics */
body, h1, h2, h3, p, a, img, div, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f6f9ff;
  color: #222;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100vw;
  min-width: 0;
  box-sizing: border-box;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(16, 24, 36, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 74px;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 74px;
}

/* Desktop header-top wrapper should display contents inline */
.header-top {
  display: contents;
}

/* Desktop: Ensure navigation appears between logo and button */
@media (min-width: 769px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-top {
    display: contents;
  }
  
  .logo {
    order: 1;
  }
  
  nav {
    order: 2;
    display: flex;
    gap: 24px;
  }
  
  .download-btn {
    order: 3;
  }
}
.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.logo img {
  width: 50px;    /* Change this value to adjust size */
  height: 50px;   /* Change this value to adjust size */
  margin-right: 12px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
  transition: color .2s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
nav a:hover {
  color: #ff8500;
}
.download-btn {
  background: #ff8500;
  color: #fff;
  font-weight: bold;
  padding: 0.6em 1.4em;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  font-size: 1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.download-btn:hover {
  background: #ffa733;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}

/* Use forward slashes, NOT backslashes, for web image paths */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* Update this path to match your actual image location */
  background: url('images/home.jpg') center/cover no-repeat;
  z-index: 1;
  opacity: 0.6;              /* Adjust opacity as needed (0–1) */
  filter: brightness(0.9);  /* Optional: darken slightly */
  pointer-events: none;      /* Allow clicks to content above */
}

/* Overlay for additional darkness/tint */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20, 30, 55, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  padding: 48px 16px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.18;
}

.highlight-orange {
  color: #ff8500;
}

.highlight-white {
  color: #fff;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 34px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-orange {
  background: #ff8500;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  padding: 0.9em 2.2em;
  text-decoration: none;
  font-size: 1.12em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-orange:hover {
  background: #ffa733;
}

.btn-outline {
  padding: 0.9em 2.2em;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.12em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #fff1;
  color: #ff8500;
}

/* Features Section */
.features {
  background: rgba(239, 109, 34, 0.10);
  padding: 80px 0 60px 0;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.features-content {
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6d22;
  border-radius: 2px;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
}

.feature-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(239, 109, 34, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ff6d22;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.features-illustration {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.features-illustration img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

/* Power Features Section (if used) */
.power-features {
  background: #f8f9fa;
  padding: 70px 0 40px 0;
  text-align: center;
}

.power-features h2 {
  font-size: 2.2rem;
  margin-bottom: 34px;
}

/* Responsive for Features Section */
@media (max-width: 1200px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-illustration img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .features-container {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
  
  .features h2 {
    font-size: 2rem;
  }
  
  .feature-card {
    text-align: left;
  }
  
  /* Hide travel illustration on mobile */
  .features-illustration {
    display: none;
  }
}
/* Continuous Testimonials Carousel */
.testimonials {
  background: #202735;
  color: #fff;
  padding: 54px 0 48px 0;
  text-align: center;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 38px;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.testimonials-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex: 0 0 340px;
  background: #253253;
  border-radius: 16px;
  padding: 38px 24px;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 1.1em;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  color: #ff8500;
  font-weight: bold;
}

.testimonial-role {
  color: #b2c2df;
  font-size: 1em;
  margin-top: 2px;
}

/* Footer */
/* Footer base styling */
footer {
  background: #192136;
  color: #fff;
  padding: 42px 0 30px 0;
  font-size: 1em;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
}

.footer-col {
  min-width: 200px;
  max-width: 270px;
  margin-bottom: 18px;
}

.footer-col h3 {
  font-size: 1.13em;
  margin-bottom: 16px;
  font-weight: bold;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

/* Spacing between specific icons and text */
footer .footer-col.contact-info i.contact-icon {
  margin-right: 8px; /* Adjust gap between icon and text */
  vertical-align: middle;
  display: inline;
  white-space: nowrap;
}

/* Ensure contact info stays on one line */
footer .footer-col.contact-info a {
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

/* Hover color */
.footer-col a:hover {
  color: #ff8500;
}

/* Social icons container for footer */
.social-icons {
  display: flex;
  gap: 18px;
  padding-top: 6px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #f0f4ff;
  color: #000c44;
  font-size: 1.3rem;
  transition: background 0.25s, color 0.25s;
}

.social-icons a:hover {
  background: #ff8500;
  color: #fff;
}

/* .social-icons a {
  display: inline-block;
  margin-right: 10px;
} */
.social-icons img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1000px) {
  .feature-cards, .footer-row {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  header .container {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
}
@media (max-width: 650px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .features h2, .power-features h2, .testimonials h2 {
    font-size: 1.4rem;
  }
  .testimonial-card {
    padding: 22px 10px 20px 10px;
    min-width: 200px;
    max-width: 90vw;
  }
  
}
/* Modal Overlay & Pop-up Form */
.modal-overlay {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  background: rgba(16, 24, 36, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.waitlist-modal {
  background: #232C40;
  color: #fff;
  padding: 40px 32px 32px 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 520px;
  min-width: 320px;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

@keyframes modalSlideIn {
  from { 
    transform: translateY(-30px) scale(0.95); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0) scale(1); 
    opacity: 1; 
  }
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  color: #ff8500;
  font-size: 2.2em;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: all 0.2s ease;
  font-weight: 300;
}

.close-modal:hover {
  color: #ffa733;
  transform: scale(1.1);
}

.modal-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.modal-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.waitlist-modal h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.modal-description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #fff;
  opacity: 0.9;
}

.waitlist-modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.form-row input {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

.waitlist-modal input {
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: #333;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.waitlist-modal input::placeholder {
  color: #999;
  opacity: 1;
}

.waitlist-modal input:focus {
  box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.2);
  transform: translateY(-1px);
}

.waitlist-modal button[type=submit] {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.waitlist-modal button[type=submit]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 133, 0, 0.3);
}

.waitlist-modal button[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form-card button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-card button:hover:not(:disabled) {
  background: #ffa733;
}

.form-success {
  color: #4CAF50;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.recent-signup {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 20px;
  opacity: 0.8;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .waitlist-modal {
    width: 95%;
    max-width: none;
    margin: 20px;
    padding: 32px 24px 24px 24px;
  }
  
  .waitlist-modal h2 {
    font-size: 1.8rem;
  }
  
  .modal-description {
    font-size: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .waitlist-modal input {
    padding: 14px 16px;
  }
  
  .close-modal {
    font-size: 2rem;
    top: 12px;
    right: 16px;
  }
}
.founding-team {
  padding: 80px 0 56px 0;
  text-align: center;
  background: #fff;
}

.founding-team h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 46px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
}

.team-card {
  perspective: 1200px;
  width: 300px;
  height: 420px;
  margin-bottom: 30px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.25,.75,.45,1.2);
  transform-style: preserve-3d;
}

.team-card:hover .card-inner, .team-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(30,40,54,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  overflow: hidden;
}

.card-front {
  z-index: 2;
  padding: 38px 16px 20px 16px;
}

.card-back {
  transform: rotateY(180deg);
  background: #fafbfd;
  text-align: center;
  padding: 38px 18px;
  justify-content: flex-start;
  z-index: 3;
}

.card-front img, .card-back img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #e2e6ee;
  border: 4px solid #f4f6fa;
}

.card-front h3, .card-back h3 {
  font-weight: bold;
  font-size: 1.38em;
  margin-bottom: 10px;
  color: #21243d;
  width: 100%;
  text-align: center;
}

.role {
  color: #ff8500;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.08em;
}

.card-links {
  display: flex;
  gap: 18px;
  margin: 16px 0 10px 0;
  justify-content: center;
}
.card-links a {
  color: #222d3d;
  font-size: 1.38em;
  transition: color .18s;
}
.card-links a:hover { color: #ff8500; }

.hover-note {
  color: #888fa1;
  font-size: .97em;
  margin-top: 12px;
}

.card-back .bio {
  color: #344058;
  font-size: 1.11em;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.48;
  font-style: italic;
  padding: 0 4px;
  text-align: center;
}
.card-back h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #17203a;
}

/* Responsive cards */
@media (max-width: 1100px) {
  .team-cards { gap: 20px; }
  .team-card { width: 80vw; max-width: 360px; }
}
@media (max-width: 800px) {
  .team-cards { flex-direction: column; align-items: center; }
  .team-card { width: 95vw; max-width: 420px; margin-bottom: 40px; }
}

/* About Us Hero Section */
.about-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: url('images/aboutus.jpg') center center / cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 20px;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  margin: 0;
}

/* Our Story Section */
.our-story {
  background: #fff;
  padding: 80px 0;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.our-story h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.our-story h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6d22;
  border-radius: 2px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.story-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
  text-align: center;
}

/* Mission and Vision Cards */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.mv-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.mv-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero .hero-content {
    padding-bottom: 20px;
  }
  
  .about-hero h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .story-container {
    padding: 0 20px;
  }
  
  .our-story h2 {
    font-size: 2rem;
  }
  
  .story-content p {
    font-size: 1.1rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mv-card {
    padding: 30px 20px;
  }
  
  .mv-card h3 {
    font-size: 1.5rem;
  }
}

/* Team card: back background and icons outside */
.team-card {
  perspective: 1200px;
  width: 300px;
  height: 420px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.25,.75,.45,1.2);
  transform-style: preserve-3d;
}

.team-card:hover .card-inner, .team-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(30,40,54,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  overflow: hidden;
  transition: background .3s;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #ffede2 0%, #f5f7fb 100%);
  text-align: center;
  padding: 38px 18px;
  justify-content: flex-start;
}

.card-front h3, .card-back h3 {
  font-weight: bold;
  font-size: 1.38em;
  margin-bottom: 10px;
  color: #17203a;
  width: 100%;
  text-align: center;
}
.card-back h3 { margin-bottom: 20px; }

.role {
  color: #ff8500;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.08em;
}

.hover-note {
  color: #888fa1;
  font-size: .97em;
  margin-top: 12px;
}

.card-back .bio {
  color: #344058;
  font-size: 1.11em;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.48;
  font-style: italic;
  padding: 0 4px;
  text-align: center;
}

/* Social icons below card */
.card-social {
  display: flex;
  gap: 20px;
  margin-top: 17px;
  justify-content: center;
}
.card-social a {
  color: #7f848b;
  font-size: 1.38em;
  transition: color .18s;
}
.card-social a:hover { color: #ff8500; }

/* Responsive cards */
@media (max-width: 1000px) {
  .team-card { width: 80vw; max-width: 360px; }
}
@media (max-width: 800px) {
  .team-card { width: 95vw; max-width: 420px; margin-bottom: 40px; }
  .about-ubuzz-intro { padding: 18px 4vw 0 4vw; }
}
/* Contact Section */
.contact-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  background: #f6f9ff;
  padding-top: 120px;   /* Add space for header */
  padding-bottom: 80px; /* Add space before footer */
  box-sizing: border-box;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 46px;
  padding-top: 40px; /* or more/less as needed */

}

.highlight-black {
  color: #0b0d22;
}

.highlight-orange {
  color: #ff8500;
}
.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-form-card {
  width: 50%;
  min-width: 340px;
  max-width: 650px;
  box-sizing: border-box;
  background: #fff;
  padding: 34px 36px 40px 36px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 26px;
  color: #0b0d22;
}

.contact-form-card label {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
  color: #222d3d;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1.5px solid #dee8fc;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1.02rem;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #ff8500;
}

.contact-form-card textarea {
  min-height: 120px;
  max-height: 220px;
}

.contact-form-card button {
  background: #ff8500;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s;
}

.contact-form-card button:hover {
  background: #ffa733;
}

.form-success {
  color: #53e76b;
  font-size: 1.05rem;
  margin-top: 12px;
  text-align: center;
}

/* Contact details & follow us */
.contact-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 350px;
  text-align: center;
}


.contact-details-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-details-card h3 {
  font-weight: bold;
  color: #0b0d22;
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.contact-details-card p {
  font-size: 1rem;
  margin-bottom: 13px;
  color: #222d3d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-details-card p a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222d3d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details-card p a:hover {
  color: #ff8500;
}

.contact-details-card i {
  color: #ff8500;
  font-size: 1.25rem;
}

/* Social icons in follow us card */
.social-icons {
  display: flex;
  gap: 18px;
  padding-top: 6px;
  justify-content: center; /* centers horizontally */

}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #f0f4ff;
  color: #000c44;
  font-size: 1.3rem;
  transition: background 0.25s, color 0.25s;
}

.social-icons a:hover {
  background: #ff8500;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-form-card, .contact-detail-cards {
    width: 100%;
    max-width: 480px;
  }
}

/* Mobile Header Layout */
@media (max-width: 768px) {
  header {
    background: rgba(16, 24, 36, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: auto;
    padding-bottom: 8px;
  }
  
  header .container {
    flex-direction: column;
    padding: 15px 20px 12px 20px;
    gap: 12px;
    height: auto;
  }
  
  /* First row: Logo and Join Waitlist button on same line */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    order: 1;
  }
  
  .download-btn {
    order: 2;
    margin: 0;
    padding: 0.5em 1em;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Second row: Navigation */
  nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 8px 0 5px 0;
  }
  
  nav a {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1em;
    border: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }
    
    /* Mobile Footer Layout */
    .footer-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 20px 15px;
      padding: 0 20px;
    }
    
    /* Row 1: UBuzz+Logo+Description (left) and Quick Links (right) */
    .footer-row .footer-col:first-child {
      grid-column: 1;
      grid-row: 1;
      text-align: left;
    }
    
    .footer-row .footer-col:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
      text-align: right;
    }
    
    /* Row 2: Contact Us (left) and Follow Us (right) */
    .footer-row .footer-col:nth-child(3) {
      grid-column: 1;
      grid-row: 2;
      text-align: left;
    }
    
    .footer-row .footer-col:nth-child(4) {
      grid-column: 2;
      grid-row: 2;
      text-align: right;
    }
    
    /* Make footer columns responsive */
    .footer-col {
      min-width: auto;
      max-width: none;
      margin-bottom: 0;
    }
    
    /* Adjust social icons alignment for mobile */
    .social-icons {
      justify-content: flex-end;
    }
    
    /* Mobile footer text size adjustments */
    .footer-col h3 {
      font-size: 1rem;
    }
    
    .footer-col p {
      font-size: 0.85rem;
      line-height: 1.4;
    }
    
    .footer-col a {
      font-size: 0.85rem;
    }
    
    /* Contact info mobile adjustments */
    footer .footer-col.contact-info a {
      font-size: 0.8rem;
      flex-wrap: nowrap;
    }
    
    footer .footer-col.contact-info i.contact-icon {
      margin-right: 6px;
      flex-shrink: 0;
      font-size: 0.9rem;
    }
    
    /* Social icons mobile adjustments */
    .social-icons a {
      width: 35px;
      height: 35px;
      line-height: 35px;
      font-size: 1.1rem;
    }
    
    /* Contact page specific mobile adjustments */
    .contact-detail-cards .social-icons {
      justify-content: center;
    }
  }
