/* --- VARIABLES --- */
:root {
  --deep-purple: #3D2C5E;
  --purple-gradient: linear-gradient(135deg, #6a4c9c, #3D2C5E);
  --sunset-orange: #FF6600; /* Updated to a cleaner, more vibrant orange */
  --orange-gradient: linear-gradient(135deg, #FF6600, #e05a00);
  --sunset-yellow: #FFD700;
  --yellow-gradient: linear-gradient(135deg, #FFD700, #ffb700);
  --bg-dark: #121212;
  --bg-card: #1E1E1E;
  --text-light: #F4F4F4;
  --text-dim: #BBBBBB;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }

/* --- HEADER --- */
header.site-header {
  position: fixed;
  top: 0; 
  width: 100%;
  background: rgba(18, 18, 18, 0.0); /* Starts transparent */
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 15px 0;
}

/* This class is added via JS when scrolling */
header.site-header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.brand-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- LOGO FIXES --- */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px; 
}

.logo {
  height: auto;
  width: auto;
  max-height: 75px; /*size */
  display: block;
}

.site-title {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  background: linear-gradient(to right, var(--sunset-yellow), var(--sunset-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Nav Links */
nav.top-nav ul { display: flex; gap: 25px; align-items: center; }
nav.top-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Helps read against clouds */
}

nav.top-nav a:hover, nav.top-nav a.active { 
  color: var(--sunset-orange); 
}

.nav-cta {
  background: var(--sunset-orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  text-shadow: none !important;
}
.nav-cta:hover { 
  background: var(--sunset-yellow); 
  color: #000 !important;
  transform: translateY(-2px); 
}

.mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: white; }

/* --- HERO --- */
.hero {
  height: 100vh;
  background-image: url('../media/cliff-pano.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark Tint Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.35); /* 35% dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1. About Us*/
.hero-bg-2 { 
    background-image: url('../media/boathouse-sunset.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

/* 2. Services  */
.hero-bg-3 { 
    height: 100vh;
    background-image: url('../media/highway-pano.JPG'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: bottom; /* adjusts focus */
}

/* 3. Order */
.hero-bg-order { 
    background-image: url('../media/cliff-angle.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

/* 4. Contact */
.hero-bg-contact { 
    background-image: url('../media/petoskey.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #f0f0f0;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--sunset-orange);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 5px; /* Sharper corners for modern look */
  border: 2px solid var(--sunset-orange);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* --- MAIN LAYOUT --- */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.underline {
  height: 4px; width: 70px;
  background: var(--sunset-orange);
  margin: 0 auto 60px auto;
}

/* SERVICES GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card:hover { transform: translateY(-10px); }

.service-card h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px 0;
  color: white;
}
.service-card p { opacity: 0.9; font-size: 1rem; }
.service-card .icon { font-size: 3rem; margin-bottom: 15px; }

.purple-card { background: var(--purple-gradient); }
.orange-card { background: var(--orange-gradient); }
.yellow-card { background: var(--yellow-gradient); color: #222; }
.yellow-card h3 { color: #000; }

/* ABOUT SECTION */
#about { margin-top: 100px; }

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--bg-card);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-text { flex: 1; }
.about-text h2 { text-align: left; }
.about-text p { color: var(--text-dim); margin-bottom: 25px; font-size: 1.05rem; }

.text-link {
  color: var(--sunset-orange);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link:hover { border-bottom: 2px solid var(--sunset-orange); }

.about-image { flex: 1; }
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* FOOTER */
footer {
  background: black;
  padding: 60px 20px;
  margin-top: 100px;
  border-top: 3px solid var(--sunset-orange);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-right h3 {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    text-align: right;
}

.social-links { margin-top: 5px; }
.social-links a {
  color: var(--bg-dark);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px; height: 45px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 1.1rem;
  transition: 0.3s;
}
.social-links a:hover { 
    background: var(--sunset-orange); 
    color: white;
    transform: translateY(-3px); 
}

/* --- RESPONSIVE / MOBILE --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { flex-direction: column; padding: 30px; }
  .about-image { width: 100%; }
}

/* Mobile Phones */
@media (max-width: 768px) {
  
  /* Mobile Menu */
  .mobile-toggle { 
    display: block !important; 
  }
  
  nav.top-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
    border-top: 1px solid #333;
  }
  
  nav.top-nav.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }

  .brand-bar { flex-wrap: wrap; position: relative; }
  
  nav.top-nav ul { 
    flex-direction: column; 
    gap: 0; 
  }
  
  nav.top-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .logo { max-height: 50px; } /*smaller on mobile to fit */
  
 
  .hero h1 { font-size: 2.2rem; }
  .grid { grid-template-columns: 1fr; }
  
  .footer-content {
      flex-direction: column;
      text-align: center;
  }
  .footer-right h3 { text-align: center; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* The Glass Container */
.glass-form-container {
    max-width: 800px;
    margin: 30px auto 0 auto; 
    background: rgba(30, 30, 30, 0.65); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

/* Steps  */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
    transition: opacity 0.3s ease;
}
.form-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.5rem;
    color: var(--sunset-orange);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* Floating Input */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-group input, 
.floating-group textarea {
    width: 100%;
    padding: 15px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1); /* boarder*/
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.floating-group input:focus,
.floating-group textarea:focus {
    background: rgba(0,0,0,0.4);
    border-color: var(--sunset-orange);
    outline: none;
}

/* Labels Animation */
.floating-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    pointer-events: none;
    transition: 0.3s ease all;
    background: transparent;
}


.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    background: var(--sunset-orange);
    padding: 2px 8px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
}

/* Static label for Date input since it always has content */
.floating-group label.static-label {
    top: -10px !important;
    left: 10px !important;
    font-size: 0.75rem !important;
    background: var(--sunset-orange);
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* JS */
.package-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.pkg-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.pkg-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.pkg-card.selected {
    border: 2px solid var(--sunset-orange);
    background: rgba(255, 102, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.pkg-icon { font-size: 2rem; color: #ccc; margin-bottom: 10px; }
.pkg-card.selected .pkg-icon { color: var(--sunset-orange); }

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}
.progress-track {
    background: rgba(255,255,255,0.1);
    height: 4px;
    border-radius: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}
.progress-bar {
    background: var(--sunset-orange);
    height: 4px;
    border-radius: 2px;
    width: 0%; /* JS changes this */
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transition: width 0.4s ease;
}
.steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.step-dot {
    width: 30px; height: 30px;
    background: #333;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #888;
    transition: 0.3s;
}
.step-dot.active {
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
    color: white;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.btn-group.right { justify-content: flex-end; }

.next-btn, .prev-btn, .final-launch {
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    border: none;
    transition: 0.3s;
}

.next-btn { background: white; color: black; }
.next-btn:hover { background: var(--sunset-orange); color: white; }

.prev-btn { background: transparent; color: #aaa; border: 1px solid #555; }
.prev-btn:hover { border-color: white; color: white; }

.final-launch {
    background: linear-gradient(135deg, #FF6600, #FFD700);
    color: black;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}
.final-launch:hover { transform: scale(1.05); }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .package-selector { grid-template-columns: 1fr; }
    .glass-form-container { margin: 0; padding: 20px; border-radius: 0; }
    .floating-group label { position: static; display: block; margin-bottom: 5px; color: var(--sunset-orange); font-size: 0.8rem; }
    .floating-group input:focus ~ label { top: auto; } 
}

/* =========================================
   NEW GLASS PRICING STYLES
   ========================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* The Glass Card Base */
.glass-card {
    background: rgba(30, 30, 30, 0.6); /* See-through dark */
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
}

/* Icons & Header */
.card-top { margin-bottom: 20px; }
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}
.glass-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #ddd;
}

/* Price Formatting */
.price-box {
    margin: 20px 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.price-box .currency { font-size: 1.5rem; vertical-align: super; opacity: 0.7; }
.price-box .unit { font-size: 1rem; color: #888; font-weight: 400; }

/* The Spec List */
.specs-list {
    text-align: left;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.specs-list li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}
.specs-list strong { color: white; }

/* Buttons */
.glass-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    transition: 0.3s;
}

.glass-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* --- COLOR ACCENTS --- */

/* Purple */
.accent-purple { border-top: 4px solid #a586e5; }
.accent-purple .card-icon { color: #a586e5; }
.accent-purple:hover { box-shadow: 0 10px 40px rgba(165, 134, 229, 0.15); }

/* Orange (Featured) */
.accent-orange { border-top: 4px solid var(--sunset-orange); }
.accent-orange .card-icon { color: var(--sunset-orange); }
.accent-orange:hover { box-shadow: 0 10px 40px rgba(255, 102, 0, 0.15); }

.featured-glass {
    transform: scale(1.05);
    background: rgba(40, 40, 40, 0.7);
    border: 1px solid var(--sunset-orange);
    z-index: 2;
}
.featured-glass:hover { transform: scale(1.05) translateY(-10px); }

.btn-glow {
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}
.btn-glow:hover {
    background: white;
    color: var(--sunset-orange);
}

/* Yellow */
.accent-yellow { border-top: 4px solid var(--sunset-yellow); }
.accent-yellow .card-icon { color: var(--sunset-yellow); }
.accent-yellow:hover { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15); }

/* Badge */
.popular-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-orange);
    color: black;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .featured-glass { transform: scale(1); margin: 20px 0; }
    .featured-glass:hover { transform: translateY(-5px); }
}

/* --- TEAM SECTION MOBILE FIX --- */
@media (max-width: 768px) {
    /* Target the specific inline style structure I added */
    .glass-form-container {
        flex-direction: column !important;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* Contact Page Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    transition: 0.3s;
    font-size: 1.2rem;
}
.social-btn:hover {
    background: var(--sunset-orange);
    transform: translateY(-3px);
}

/* --- EMERGENCY LAYOUT FIXES --- */

/* 1. Force Hero to have a background color so it never disappears */
.hero-page {
    min-height: 400px; /* Force it to be tall */
    position: relative;
    background-color: #1a1a1a; /* Dark gray fallback if image fails */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px; /* Push the content down */
}

/* 2. Fix the "Huge Logo" on About Us */
.mission-logo-container {
    max-width: 350px !important; /* Force it to be small */
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 5;
}
.mission-logo-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* 3. Fix Contact Page Layout (Force Side-by-Side) */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start; /* Align tops of boxes */
}

/* Mobile Fix: Stack them on phones */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MISSION ORDER FORM & GLASS UI REFINEMENTS
   ========================================= */

/* The Glass Input Base */
.glass-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Make placeholder text slightly transparent */
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* The Ember Glow on Focus */
.glass-input:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--sunset-orange);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

/* Form Layout & Spacing */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunset-orange);
    margin-bottom: 8px;
}

/* Grid for side-by-side inputs (Name/Email, Date/Service) */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Dropdown Menu Specific Fixes */
select.glass-input {
    appearance: none; /* Removes default browser arrow */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FF6600%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; 
    background-position: right 20px top 50%; 
    background-size: 12px auto;
}

/* Select option styling (browser dependent, but helps clean it up) */
select.glass-input option {
    background: #1a1a1a;
    color: white;
}

/* The Authorize Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--sunset-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile Responsiveness: Stack columns on small screens */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
