/*
Theme Name: Route Your Career
Theme URI: http://routeyourcareer.local
Author: Your Name
Description: A custom theme for Route Your Career consultancy
Version: 1.0
License: GPLv2 or later
Text Domain: routeyourcareer
*/

/* === Global Styles === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #0073e6;
}
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  margin-top: 40px;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0073e6, #4f46e5);
  color: white;
  text-align: center;
}
.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
}
.hero-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}
.hero-title .highlight {
  background: linear-gradient(45deg, #00ffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e0e0e0;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
}
.hero .btn {
  background: #ffffff;
  color: #0073e6;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.hero .btn:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* === Services Section === */
.services {
  padding: 20px 20px;
  text-align: center;
  background: #f9f9f9;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0073e6;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.card {
  position: relative;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(0, 115, 230, 0.1);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: 0;
  transform: rotate(15deg);
}
.card-icon {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  transition: transform 0.3s;
}
.card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0073e6;
  position: relative;
  z-index: 1;
}
.card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #00ffff, #0073e6);
  border-radius: 2px;
}
.card p {
  z-index: 1;
  position: relative;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* === Callback Section === */
.callback {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0073e6, #4f46e5);
  color: white;
  position: relative;
  overflow: hidden;
}
.callback-title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
  animation: glowText 2s ease-in-out infinite alternate;
}
.callback-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e0f7ff;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}
.form-container {
  max-width: 550px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUpFade 1s ease-out forwards;
  animation-delay: 0.5s;
}
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.wpcf7-form textarea,
.wpcf7-form input[type="submit"] {
  grid-column: 1 / -1;
}
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #ff6b3c, #ff3e1d);
  color: white;
  font-weight: 700;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255,107,60,0.5);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,60,0.7);
}

/* === Animations === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}
@keyframes glowText {
  0% { text-shadow: 1px 1px 8px rgba(255,107,60,0.7); }
  100% { text-shadow: 1px 1px 15px rgba(255,107,60,1); }
}
@keyframes slideUpFade {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* === Responsive === */
@media (max-width: 768px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero .btn { padding: 10px 24px; font-size: 14px; }
  .section-title { font-size: 28px; }
  .card h3 { font-size: 18px; }
  .callback-title { font-size: 28px; }
  .callback-subtitle { font-size: 14px; }
  .form-container { padding: 20px; }
  .service-cards { grid-template-columns: 1fr; }
}

/* === About Page === */
.about-page {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0073e6, #4f46e5); /* same as front page */
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 60px 20px;
  z-index: 1;
}

#about-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* so header/footer clickable */
}

/* Hero */
.about-hero {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1.2s ease-out;
}
.about-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
}
.about-title .highlight {
  color: #ffffff; /* white highlight text */
}
.about-subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  color: #e0e0e0; /* readable on blue */
  line-height: 1.6;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.about-card {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s;
}
.about-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}
.about-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}
.about-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Team Section */
.team-section {
  text-align: center;
}
.section-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 40px;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.team-card {
  background: rgba(255,255,255,0.15); /* semi-transparent white */
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,255,255,0.3);
}
.team-photo {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: #ffffff; /* white circle */
  margin-bottom: 15px;
  border: 3px solid #ffffff; /* white border */
}
.team-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffffff; /* readable */
}
.team-card p {
  font-size: 14px;
  color: #e0e0e0;
}

/* === Background Particles === */
#about-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animations */
@keyframes fadeInUp { 0% { opacity:0; transform: translateY(40px);} 100% { opacity:1; transform: translateY(0);} }
@keyframes pulse { 0%{transform: scale(1);} 100%{transform: scale(1.1);} }

/* Responsive */
@media(max-width:768px){
  .about-title{font-size:36px;}
  .about-subtitle{font-size:16px;}
  .about-cards{grid-template-columns:1fr;}
  .team-cards{grid-template-columns:1fr;}
}
/* === Contact Page Styles === */
.contact-page {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0073e6, #4f46e5); /* front page gradient */
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 60px 20px;
  z-index: 1;
}

#contact-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Hero */
.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}
.contact-hero .hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
}
.contact-hero .hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Google Map */
.contact-map iframe {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Contact Form */
.contact-form-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.form-container {
  max-width: 550px;
  width: 100%;
  background: rgba(255,255,255,0.15); /* semi-transparent */
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(255,255,255,0.2);
}

/* Contact Form 7 2-column layout */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.wpcf7-form textarea,
.wpcf7-form input[type="submit"] {
  grid-column: 1 / -1;
}
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #e0e0e0;
}
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #ff6b3c, #ff3e1d);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255,107,60,0.5);
  transition: all 0.3s ease;
}
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,60,0.7);
}

/* Responsive */
@media(max-width:768px){
  .contact-hero .hero-title{font-size:36px;}
  .contact-hero .hero-subtitle{font-size:16px;}
  .wpcf7-form .form-row{grid-template-columns:1fr;}
}
/* Contact Page Specific */
.contact-form-section {
  background: #ffffff; /* White background */
  padding: 60px 20px;
}

.white-bg-form {
  background: #ffffff;
  color: #000000; /* Black text */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.white-bg-form input,
.white-bg-form textarea {
  color: #000;
  background: #f9f9f9;
  border: 1px solid #ccc;
}

.white-bg-form input[type="submit"] {
  background: #0073e6; /* Blue button for contrast */
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.white-bg-form input[type="submit"]:hover {
  background: #005bb5;
  box-shadow: 0 6px 20px rgba(0,91,181,0.5);
}

/* Make Contact Form 2-column on desktop */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.wpcf7-form textarea,
.wpcf7-form input[type="submit"] {
  grid-column: 1 / -1;
}

@media(max-width:768px){
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}
/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0073e6, #4f46e5); /* Same blue gradient as front page */
  position: relative;
  overflow: hidden;
}

/* Transparent form to match other pages */
.transparent-form {
  background: rgba(255, 255, 255, 0.05);  /* semi-transparent */
  color: #ffffff; 
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.transparent-form input,
.transparent-form textarea {
  color: #ffffff;            /* white text inside form */
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.transparent-form input[type="submit"] {
  background: linear-gradient(135deg, #ff6b3c, #ff3e1d); /* orange button */
  color: rgb(129, 18, 18);
  font-weight: 700;
  border-radius: 12px;
  border: none;
  padding: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,107,60,0.5);
  transition: all 0.3s ease;
}
.transparent-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #ff3e1d, #ff6b3c);
  box-shadow: 0 12px 35px rgba(255,107,60,0.7);
}

/* 2-column layout for CF7 */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.wpcf7-form textarea,
.wpcf7-form input[type="submit"] {
  grid-column: 1 / -1;
}

@media(max-width:768px){
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Google Map Section */
.contact-map {
  margin-top: 40px;
}
/* Floating Shapes Container */
.contact-form-section {
  position: relative; /* Ensure shapes stay behind */
  overflow: hidden;
}

/* Shapes styles */
.floating-shapes .shape {
  position: absolute;
  display: block;
  opacity: 0.3;
  animation: float 12s linear infinite;
}

/* Different shapes */
.floating-shapes .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
}
.floating-shapes .triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #ffffff;
}
.floating-shapes .square {
  width: 20px;
  height: 20px;
  background: #ffffff;
}

/* Random positions */
.floating-shapes .shape:nth-child(1) { left: 10%; animation-duration: 15s; }
.floating-shapes .shape:nth-child(2) { left: 30%; animation-duration: 12s; animation-delay: 3s; }
.floating-shapes .shape:nth-child(3) { left: 50%; animation-duration: 18s; animation-delay: 5s; }
.floating-shapes .shape:nth-child(4) { left: 70%; animation-duration: 14s; animation-delay: 2s; }
.floating-shapes .shape:nth-child(5) { left: 85%; animation-duration: 20s; animation-delay: 4s; }
.floating-shapes .shape:nth-child(6) { left: 60%; animation-duration: 16s; animation-delay: 1s; }

/* Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(800px) rotate(360deg);
    opacity: 0.2;
  }
}

/* Ensure form stays above shapes */
.transparent-form {
  position: relative;
  z-index: 2;
}
.contact-form-section h2.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px; /* added extra space */
    color: #ffffff;
}

.contact-form-section .form-wrapper {
    padding-top: 10px; /* extra space so form doesn't touch heading */
}
.form-container .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-container .wpcf7-form .form-row.full-width {
  grid-template-columns: 1fr; /* message + button full width */
}

.form-container .wpcf7-form .form-field {
  width: 100%;
}
/* Two-column rows */
.form-container .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

/* Full width rows */
.form-container .wpcf7-form .form-row.full-width {
  grid-template-columns: 1fr;
}

/* Ensure inputs stretch properly */
.form-container .wpcf7-form .form-col input,
.form-container .wpcf7-form .form-col textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}

/* Contact Form (both frontpage + contact page) */
.form-container .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-container .wpcf7-form .form-row.full-width {
  grid-template-columns: 1fr;
}

.form-container .wpcf7-form .form-col {
  width: 100%;
}

/* Transparent inputs with white text (like front page) */
.form-container .wpcf7-form input,
.form-container .wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

/* Placeholder color */
.form-container .wpcf7-form input::placeholder,
.form-container .wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Focus effect */
.form-container .wpcf7-form input:focus,
.form-container .wpcf7-form textarea:focus {
  border-color: #ff6b3c; /* orange border on focus */
  box-shadow: 0 0 8px rgba(255,107,60,0.6);
}

/* Submit button */
.form-container .wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #ff6b3c, #ff3e1d);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255,107,60,0.5);
  transition: all 0.3s ease;
}

.form-container .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,60,0.7);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .form-container .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}
/* Make message box full width and taller */
.form-container .wpcf7-form textarea {
  width: 100% !important;
  min-height: 120px; /* adjust height */
  resize: vertical;  /* allow user to expand if needed */
  grid-column: 1 / -1; /* ensures it spans both columns */
}
.Contact-section-title{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff; /* or black if background is white */
}
.Front-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0073e6;
}

/* ========== Header tweaks (safe + scoped) ========== */

/* make header sticky but keep original white background so nothing breaks */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff; /* keep white as before to avoid visual break */
  backdrop-filter: none; /* don't force blur */
}

/* ensure header content layout remains identical but allow right-side flex */
.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* style the CTA button (matches site orange CTA style) */
.header-cta {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff6b3c, #ff3e1d);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255,107,60,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  white-space: nowrap;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,60,0.25);
}

/* scoped menu link hover underline — targets links inside header only */
.site-header .header-right ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .header-right ul li {
  list-style: none;
}
.site-header .header-right ul li > a {
  color: #0073e6; /* respect existing color */
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .18s ease;
  text-transform: uppercase;
}

/* underline effect */
.site-header .header-right ul li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0073e6; /* blue underline (readable on white header) */
  transition: width .22s ease;
}
.site-header .header-right ul li > a:hover::after {
  width: 100%;
}

/* small-screen fallback: keep layout tidy */
@media (max-width: 768px) {
  .site-header .header-right { gap: 0.5rem; }
  .header-cta { padding: 8px 12px; font-size: 14px; }
}

/* Shift menu more to the right */
.site-header .header-right {
  margin-left: auto; /* pushes menu fully to the right */
  margin-right: 0%;
  font-family: 'Poppins', sans-serif; /* new font */
}

/* Ensure menu items uppercase and spacing is consistent */
.site-header .header-right ul li a {
  text-transform: uppercase;
  margin-left: 5px; /* spacing between items */
  font-weight: 600;
}

/* Optional: adjust the CTA button font to match */
.site-header .header-right .cta-button {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}
/* =======================
   Contact form: select styles
   Paste at end of style.css
   ======================= */

/* Generic select styling to match inputs (transparent/blue forms) */
.form-container .wpcf7-form select,
.transparent-form select,
.form-container select,
.wpcf7-form select {
  width: 100%;
  padding: 12px 40px 12px 15px;     /* same padding as inputs; extra right padding for arrow */
  min-height: 48px;                 /* matches input height */
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08); /* semi-transparent like other inputs */
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition: box-shadow .18s ease, border-color .18s ease;
}

/* Hide default IE arrow */
.form-container .wpcf7-form select::-ms-expand {
  display: none;
}

/* Down arrow icon (white) — percent-encoded SVG so it works inside CSS */
.form-container .wpcf7-form select,
.transparent-form select {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath fill='%23ffffff' d='M0 0l10 12L20 0z'/%3E%3C/svg%3E");
}

/* Focus state (match input focus) */
.form-container .wpcf7-form select:focus,
.transparent-form select:focus {
  border-color: #ff6b3c;
  box-shadow: 0 0 8px rgba(255,107,60,0.35);
}

/* Options styling (may be limited by browser) */
.form-container .wpcf7-form select option {
  color: #111;
  background: #ffffff;
}

/* =========================
   White card form (explicit white background variant)
   ========================= */
.white-bg-form select,
.form-container .white-bg-form select {
  background: #f9f9f9;
  border: 1px solid #ccc;
  color: #000;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath fill='%23000' d='M0 0l10 12L20 0z'/%3E%3C/svg%3E");
}

/* If you use a CF7-specific class (.wpcf7-select), ensure it's covered */
.wpcf7-form .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Small screens: ensure the arrow doesn't overlap text */
@media (max-width: 480px) {
  .form-container .wpcf7-form select,
  .transparent-form select,
  .white-bg-form select {
    padding-right: 44px;
    background-position: right 10px center;
  }
}
/* Fix invisible dropdown options on contact page */
.form-container .wpcf7-form select option,
.transparent-form select option {
  background: #cccccc !important; /* white background */
  color: #000000 !important;      /* black text */
}
