/* ===================================
   FYWY WiFi & Cable - Main Stylesheet
   Last Updated: Jan 2025
   =================================== */

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS VARIABLES */
:root {
  --green: #3D5A58;
  --green-bright: #4FAF9A;
  --navy: #1E2A2A;
  --light-bg: #F5F5F5;
  --dark-text: #1E2A2A;
  --white: #ffffff;
}

/* BODY & TYPOGRAPHY */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}

/* Hero headline uses Rubik */
.hero-text h1 {
  font-family: 'Rubik', sans-serif;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===================================
   HEADER / NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, var(--green) 0%, #2d4543 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright) 0%, #5fd4b8 100%);
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(79, 175, 154, 0.4);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 175, 154, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 50%, #2d4543 100%);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(79, 175, 154, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 26, 36, 0.1) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/DSC_0010.jpg') center/cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--green-bright) 0%, #5fd4b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Coverage Result Styling */
#coverageResult {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  line-height: 1.5;
}

.coverage-badge {
  display: inline-block;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.badge-yes { 
  background: rgba(79,175,154,0.25); 
  border: 1px solid rgba(79,175,154,0.6); 
}

.badge-maybe { 
  background: rgba(255,215,0,0.18); 
  border: 1px solid rgba(255,215,0,0.55); 
}

.badge-no { 
  background: rgba(255,90,90,0.18); 
  border: 1px solid rgba(255,90,90,0.55); 
}

.coverage-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.coverage-actions a {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  display: inline-block;
}

.coverage-actions .action-primary {
  background: linear-gradient(135deg, var(--green-bright) 0%, #5fd4b8 100%);
  color: var(--navy);
}

.coverage-actions .action-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}

/* Availability Checker Box */
.availability-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.availability-box:hover {
  transform: translateY(-5px);
}

.availability-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.availability-box input {
  width: 100%;
  padding: 1.15rem 1.5rem;
  border: none;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.availability-box input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(79, 175, 154, 0.3);
}

.availability-box button {
  width: 100%;
}

/* ===================================
   QUICK LINKS BAR
   =================================== */

.quick-links-bar {
  background: var(--navy);
  padding: 2rem 2rem;
}

.quick-links-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.quick-link-item {
  background: rgba(255,255,255,0.05);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 80px;
  display: flex;
}

.quick-link-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--green-bright);
  transform: translateY(-5px);
}

.quick-link-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 60px;
  padding: 1.5rem 2rem;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(30, 42, 42, 0.7);
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 5rem 2rem;
  background: var(--white);
}

.benefits-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← Now 3 columns instead of 4 */
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 175, 154, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(61, 90, 88, 0.4);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ===================================
   PLANS SECTION
   =================================== */

.plans {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.plans-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.plan-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  border-color: var(--green-bright);
}

.plan-badge {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: linear-gradient(135deg, var(--green-bright) 0%, #5fd4b8 100%);
  color: var(--dark-text);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(79, 175, 154, 0.3);
}

.plan-card h3 {
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-weight: 800;
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.plan-price span {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(30, 42, 42, 0.5);
}

.plan-features {
  list-style: none;
  margin: 2rem 0;
}

.plan-features li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(30, 42, 42, 0.06);
  color: rgba(30, 42, 42, 0.75);
  font-size: 1rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* ===================================
   IMAGE SECTIONS
   =================================== */

.image-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.image-section.alt-bg {
  background: var(--light-bg);
}

.image-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}

/* Large Image with Overlay Text */
.image-content.large-image {
  grid-template-columns: 1fr;
  position: relative;
}

.large-image-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
}

.large-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.image-overlay-text {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 26, 36, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 450px;
  color: var(--white);
}

.image-overlay-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.image-overlay-text p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.image-overlay-text ul {
  list-style: none;
}

.image-overlay-text ul li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  padding-left: 2rem;
}

.image-overlay-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1.3rem;
}

/* Small Image Left, Text Right */
.image-content.small-left {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-box img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.text-box h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.text-box p {
  font-size: 1.1rem;
  color: rgba(30, 42, 42, 0.7);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.text-box ul {
  list-style: none;
  margin: 2rem 0;
}

.text-box ul li {
  padding: 0.8rem 0;
  font-size: 1.05rem;
  color: rgba(30, 42, 42, 0.75);
  position: relative;
  padding-left: 2.5rem;
}

.text-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1.5rem;
}

/* Image Right, Text Left */
.image-content.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

/* ===================================
   TEAM + SETUP SECTION
   =================================== */

.team-setup-section {
  padding: 5rem 2rem;
  background: url('../images/DSC_0086.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.team-setup-container {
  max-width: 1600px;
  margin: 0 auto;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-intro h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.section-intro h2 span {
  color: var(--green-bright);
}

.section-intro p {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.8;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: none;
  margin: 0 auto;
}

/* Team Card */
.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border: 2px solid rgba(30, 42, 42, 0.08);
}

.team-image {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.team-emoji {
  font-size: 9rem;
  opacity: 0.3;
}

.team-content {
  padding: 1.5rem 2rem;
}

.team-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.team-content p {
  font-size: 1rem;
  color: rgba(30, 42, 42, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: rgba(61, 90, 88, 0.1);
  color: var(--green);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Setup Card */
.setup-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  color: var(--white);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.setup-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--green-bright);
}

.setup-steps {
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: 2.5rem;
}

.setup-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.setup-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--navy);
  font-size: 1rem;
}

.setup-steps strong {
  color: var(--white);
  font-weight: 700;
}

.timeline {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.timeline h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 1.25rem;
}

.timeline-item {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-day {
  font-weight: 700;
  color: var(--green-bright);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d38 100%);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--green-bright);
  margin-bottom: 1.25rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--green-bright);
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}



/* ===================================
   PAYMENT PAGE
   =================================== */

.payment-container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.payment-box {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  width: 96%;
  max-width: 1200px;
  min-height: 670px;
  padding: 4.5rem 6rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.payment-box h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
}

.payment-subtitle {
  font-size: 1.1rem;
  color: rgba(30, 42, 42, 0.7);
  margin-bottom: 4rem;
  text-align: center;
}

.currency-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.7rem;
  width: 100%;
  max-width: 500px;
}

.currency-btn {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 1.3rem 1.6rem;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.currency-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 42, 42, 0.25);
}

/* Payment Page - Responsive */
@media (max-width: 968px) {
  .payment-box {
    padding: 3rem 2rem;
    min-height: auto;
  }

  .currency-buttons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .currency-btn {
    padding: 2rem 1.5rem;
    font-size: 1.8rem;
  }
}


/* ===================================
   APPLY PAGE
   =================================== */

/* Apply page specific body styling (keep background inline in HTML) */
.application-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 3rem; /* ← Add this so there's space at the bottom */
}

.application-container {
  max-width: 700px;
  margin: 80px auto 3rem auto; /* center horizontally */
}

.application-card {
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1.05rem;
  color: rgba(30, 42, 42, 0.7);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(61, 90, 88, 0.1);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.form-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* Form field spacing */
.form-group {
  margin-bottom: 1.5rem;
  display: flex; /* ← Add this */
  flex-direction: column; /* ← Add this */
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}


/* Input field styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  border-radius: 12px !important;
  font-size: 0.80rem !important;
  padding: 0.60rem 0.7rem !important;
  font-family: 'Inter', sans-serif;
  width: 100%; /* ← Add this */
}

textarea {
  min-height: 120px;
  resize: vertical;
  display: block !important;
  margin-top: 0.5rem !important;
}

/* Label styles */
label {
  font-size: 1rem !important;
  font-weight: 600;
  display: block; /* ← Changed to block */
  margin-bottom: 0.5rem;
}

.payment-note {
  background: rgba(79, 175, 154, 0.1);
  border: 1px solid rgba(79, 175, 154, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--navy);
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  background: var(--green-bright);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 175, 154, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form message styles */
.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: rgba(79, 175, 154, 0.15);
  color: #2d6a5a;
  border: 1px solid rgba(79, 175, 154, 0.3);
}

.form-message.error {
  background: rgba(255, 90, 90, 0.15);
  color: #a01628;
  border: 1px solid rgba(255, 90, 90, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .application-card {
    padding: 2rem;
  }
  
  .form-row {
    flex-direction: column; /* ← Stack fields on mobile */
    gap: 0;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 0.85rem !important;
  }
}

/* Apply Page - Responsive */
@media (max-width: 968px) {
  .application-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {

  /* NAV */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    z-index: 999;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }

  /* HERO */
  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* QUICK LINKS */
  .quick-links-container {
    grid-template-columns: 1fr;
  }

  /* BENEFITS */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* PLANS */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  /* TEAM SECTION */
  .two-column-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    font-size: 2rem;
  }

  /* IMAGE SECTIONS */
  .image-content.small-left,
  .image-content.reverse {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .team-setup-section {
  background-attachment: scroll;
  background-size: cover;
  background-position: center top; /* ← shows top of photo instead of cropping weird */
  min-height: auto;
}

.team-image {
  height: 250px; /* ← reduces the box height */
}

.team-image img {
  object-fit: cover; /* ← changed from contain so it fills properly */
  object-position: center top; /* ← focuses on top of the photo */
}

.team-card {
  border: none; /* ← removes the thick border on mobile */
}

/* APPLY PAGE - fix zoomed background on mobile */
body.apply-page {
  background-attachment: scroll !important;
  background-position: center center !important;
  background-size: cover !important;
}

.hide-on-mobile {
  display: none !important;
}

}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* service update stuff new pricing */
.service-update {
  max-width: 720px;
  margin: 0 auto 40px auto;
  background: linear-gradient(
    135deg,
    rgba(61, 90, 88, 0.10),
    rgba(61, 90, 88, 0.04)
  );
  border: 1px solid rgba(61, 90, 88, 0.18);
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  color: #2f3e46;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.plan-policy-note {
  background: rgba(61, 90, 88, 0.07);
  border: 1px solid rgba(61, 90, 88, 0.18);
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #2f3e46;
}

.service-update strong {
  display: block;
  margin-bottom: 4px;
}

/* application form*/
/* ===================================
   APPLY PAGE - INSTRUCTION BOX
   =================================== */

.payment-instruction-box {
  background: linear-gradient(135deg, rgba(26, 107, 58, 0.25) 0%, rgba(79, 175, 154, 0.08) 100%);
  border: 1.5px solid rgba(26, 107, 58, 0.25);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.instruction-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.instruction-icon {
  font-size: 1.4rem;
}

.instruction-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.payment-instruction-box > p {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.payment-instruction-box a {
  color: #1a6b58;
  font-weight: 700;
  text-decoration: underline;
}

.instruction-fees {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.fee-item {
  background: white;
  border: 1px solid rgba(26, 107, 58, 0.2);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
}

.fee-label {
  font-size: 0.78rem;
  color: rgba(30, 42, 42, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fee-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a6b3a;
  margin-top: 0.2rem;
}

.instruction-steps {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.instruction-steps li {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.instruction-steps li strong {
  color: #1a6b3a;
}

.instruction-steps code {
  background: rgba(26, 107, 58, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: #1a6b3a;
  font-weight: 700;
}

.instruction-refund {
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.55;
}

.apply-process-steps .step {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2a7b6a;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apply-process-steps p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--navy);
}