/* Base Colors and Variables */
:root {
  --primary-green: #23514D;
  --secondary-green: #1a3d3a;
  --light-green: #2d6863;
  --very-light-green: #e8f2f1;
  --dark-brown: #5c4033;
  --medium-brown: #8b5a2b;
  --light-brown: #a67c52;
  --very-light-brown: #f4f0eb;
  --white: #ffffff;
  --black: #232323;
  --gray: #f5f5f5;
  --dark-gray: #666666;
  --gold: #d4af37;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background-color: #23514D;
  color: var(--white);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--very-light-green);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #23514D, #1a3d3a);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1a3d3a, #23514D);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: var(--primary-green);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-green);
}

/* Hero Section - PRO LEVEL */
.parallax-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(35, 81, 77, 0.3), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(92, 64, 51, 0.2), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(35, 81, 77, 0.5) 0%, 
    rgba(0, 0, 0, 0.6) 50%,
    rgba(92, 64, 51, 0.4) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: floatParticle 20s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("resources/gallery/BedRoom01.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateZ(0);
  z-index: 0;
  filter: brightness(0.85);
}

.parallax-content {
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 40px;
  z-index: 3;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--gold);
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.parallax-content h1 {
  font-size: 6rem;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
  animation: fadeInDown 1.2s ease-out 0.2s both;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e8f5ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-content p.p111 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out 0.4s both;
  letter-spacing: 1.5px;
  font-style: italic;
  opacity: 0.95;
}

.hero-cta-wrapper {
  margin-top: 35px;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 18px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero-cta {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
  border: none;
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1.2s ease-out 0.8s both;
  box-shadow: 0 15px 40px rgba(35, 81, 77, 0.4);
  position: relative;
  overflow: hidden;
}

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

.hero-cta:hover::before {
  width: 400px;
  height: 400px;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(35, 81, 77, 0.6);
}

.hero-cta i {
  animation: bounce 2s ease-in-out infinite;
}

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

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--white);
  padding: 18px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(35, 81, 77, 0.4);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

.floating-contact-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-contact-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(35, 81, 77, 0.6);
}

.floating-contact-btn i {
  font-size: 1.3rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Section Styling - PRO LEVEL */
section {
  padding: 120px 0;
  position: relative;
}

.section-subtitle {
  display: block;
  color: var(--primary-green);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--primary-green);
}

.section-subtitle::before {
  left: -50px;
}

.section-subtitle::after {
  right: -50px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title h2 {
  font-size: 4rem;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--dark-brown);
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
}

.section-title p {
  font-size: 1.25rem;
  color: var(--dark-gray);
  max-width: 800px;
  margin: 25px auto 0;
  line-height: 1.9;
  font-weight: 300;
}

/* Contact Info Section - Ultra Enhanced */
.contact-section {
  background: linear-gradient(135deg, #e8f5ed 0%, #f0f9f4 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  display: none;
}

.contact-section::after {
  display: none;
}

.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.contact-box {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: #ffffff;
  padding: 30px 25px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #23514D, #2d6863);
  border-radius: 16px 16px 0 0;
}

.contact-box::after {
  content: "";
  display: none;
}

.contact-box:hover::after {
  display: none;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(35, 81, 77, 0.15);
  border-color: #23514D;
}

.box-glow {
  display: none;
}

/* Decorative Corners - Hidden for simplicity */
.decorative-corner {
  display: none;
}

.corner-tl {
  display: none;
}

.corner-br {
  display: none;
}

.contact-box:hover .decorative-corner {
  display: none;
}

/* Divider Line - Hidden for simplicity */
.divider-line {
  display: none;
}

.box-icon-wrapper {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  z-index: 1;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(35, 81, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(35, 81, 77, 0.2);
}

.icon-circle::before {
  display: none;
}

.icon-circle i {
  font-size: 1.8rem;
  color: #23514D;
  transition: all 0.3s ease;
}

.contact-box:hover .icon-circle {
  background: #23514D;
  transform: scale(1.1);
  border-color: #23514D;
}

@keyframes bounce {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.15) translateY(-5px); }
}

.contact-box:hover .icon-circle i {
  color: white;
}

.contact-box h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #5c4033;
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.box-description {
  color: #666;
  margin: 0 0 18px 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-weight: 400;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(35, 81, 77, 0.06);
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid rgba(35, 81, 77, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-info::before {
  display: none;
}

.contact-box:hover .contact-info {
  background: rgba(35, 81, 77, 0.1);
  border-color: #23514D;
}

.contact-box:hover .contact-info::before {
  display: none;
}

.contact-info i {
  color: #23514D;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-box:hover .contact-info i {
  color: #1a3d3a;
}

.contact-info span {
  font-weight: 600;
  color: #5c4033;
  font-size: 0.92rem;
}

.box-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 25px 0;
  padding: 24px 22px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 2px dashed rgba(35, 81, 77, 0.3);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
}

.box-features::before {
  display: none;
}

.box-features span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-brown);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}

.box-features span:hover {
  color: #23514D;
  transform: translateX(5px);
}

.box-features i {
  color: white;
  font-size: 0.85rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23514D;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(35, 81, 77, 0.2);
}

.box-features span:hover i {
  background: #1a3d3a;
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 5px 15px rgba(35, 81, 77, 0.3);
}

/* Featured Box */
.featured-box {
  border: 3px solid #d4af37;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  background: linear-gradient(135deg, #fefce8 0%, #ffffff 50%, #fafafa 100%);
}

.featured-box::before {
  background: linear-gradient(90deg, #d4af37 0%, #23514D 50%, #2d6863 100%);
  height: 6px;
}

.featured-box:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.25), 0 15px 40px rgba(35, 81, 77, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: 25px;
  right: -38px;
  background: linear-gradient(135deg, #fbbf24 0%, #d4af37 50%, #23514D 100%);
  color: #78350f;
  padding: 9px 48px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-ribbon i {
  font-size: 0.85rem;
  color: #78350f;
  animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(180deg); opacity: 0.8; }
}

/* Form Section - Premium Design */
.form-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 120px 0;
  overflow: hidden;
}

.form-section::before {
  display: none;
}

.form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.form-title {
  text-align: center;
  margin-bottom: 60px;
}

.form-title h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-brown);
  font-weight: 800;
}

.form-title p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.form-content {
  background: linear-gradient(135deg, #f9f6f3 0%, #ffffff 100%);
  border-radius: 25px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  border: 2px solid rgba(35, 81, 77, 0.1);
}

.form-content::before {
  display: none;
}

.form-content::after {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-brown);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.form-group label::after {
  content: "*";
  color: var(--primary-green);
  margin-left: 4px;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(35, 81, 77, 0.15);
  border-radius: 12px;
  background-color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2370af85' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 22px;
  padding-right: 50px;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(35, 81, 77, 0.3);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 6px rgba(35, 81, 77, 0.12), 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: var(--primary-green);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ff3333;
  box-shadow: 0 0 0 6px rgba(255, 51, 51, 0.1);
  animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.form-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--dark-gray);
  font-style: italic;
  padding-left: 4px;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(35, 81, 77, 0.08) 0%, rgba(35, 81, 77, 0.12) 100%);
  border-radius: 12px;
  border-left: 5px solid var(--primary-green);
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(35, 81, 77, 0.1);
}

.form-disclaimer i {
  color: var(--primary-green);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-disclaimer span {
  font-size: 0.95rem;
  color: var(--dark-brown);
  line-height: 1.7;
  font-weight: 400;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

.submit-btn {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  border: none;
  border-radius: 15px;
  padding: 22px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(35, 81, 77, 0.35);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

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

.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
}

.submit-btn:hover::after {
  left: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(35, 81, 77, 0.5);
}

.submit-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.submit-btn i {
  transition: var(--transition);
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn:hover i {
  transform: translateX(8px) rotate(-15deg);
  animation: paperPlane 0.6s ease-in-out;
}

@keyframes paperPlane {
  0%, 100% { transform: translateX(8px) rotate(-15deg); }
  50% { transform: translateX(12px) rotate(-20deg) translateY(-3px); }
}

/* FAQ Section - Modern Design */
.faq-section {
  background: linear-gradient(180deg, #e8f5ed 0%, #f0f9f4 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "?";
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 25rem;
  font-family: "Playfair Display", serif;
  color: rgba(35, 81, 77, 0.03);
  font-weight: 800;
  transform: rotate(15deg);
}

.faq-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.faq-title h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-brown);
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.faq-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
  border-radius: 2px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(35, 81, 77, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 35px;
  cursor: pointer;
  transition: var(--transition);
  border-left: 6px solid transparent;
  background: linear-gradient(90deg, transparent 0%, rgba(35, 81, 77, 0.02) 100%);
}

.faq-header:hover {
  background: linear-gradient(90deg, rgba(35, 81, 77, 0.08) 0%, rgba(35, 81, 77, 0.04) 100%);
  border-left-color: var(--primary-green);
}

.faq-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark-brown);
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
  line-height: 1.6;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--primary-green);
  transition: var(--transition);
  background: rgba(35, 81, 77, 0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item:hover .faq-header i {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  background: linear-gradient(90deg, rgba(35, 81, 77, 0.03) 0%, transparent 100%);
}

.faq-content.active {
  max-height: 300px;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s;
}

.faq-content p {
  padding: 0 35px 25px;
  padding-left: 41px;
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Map Section - Stunning Design */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.map-container iframe {
  display: block;
  width: 100%;
  border: none;
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Sweet Alert Customization */
.swal2-popup {
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
}

.swal2-styled.swal2-confirm {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
  border-radius: 10px !important;
  padding: 12px 35px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(35, 81, 77, 0.3) !important;
}

.swal2-styled.swal2-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(35, 81, 77, 0.4) !important;
}

.swal2-title {
  color: var(--dark-brown) !important;
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
}

.swal2-icon {
  border-width: 3px !important;
}

.swal2-success {
  border-color: var(--primary-green) !important;
}

.swal2-success [class^='swal2-success-line'] {
  background-color: var(--primary-green) !important;
}

.swal2-success-ring {
  border-color: rgba(35, 81, 77, 0.3) !important;
}

/* Media Queries - Responsive Design */
@media (max-width: 1200px) {
  .parallax-content h1 {
    font-size: 5rem;
  }
  
  .section-title h2 {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .parallax-header {
    height: 85vh;
  }

  .parallax-content h1 {
    font-size: 4rem;
  }

  .parallax-content p.p111 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-item i {
    font-size: 2rem;
  }

  .form-content {
    padding: 45px 35px;
  }
  
  .contact-box {
    min-width: 280px;
  }
  
  .submit-btn {
    padding: 20px 45px;
    font-size: 1.1rem;
  }
  
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
  }
}

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

  .form-group.full {
    grid-column: span 1;
  }

  .submit-btn {
    grid-column: span 1;
  }

  .parallax-header {
    height: 75vh;
  }

  .parallax-content h1 {
    font-size: 3rem;
  }
  
  .parallax-content p.p111 {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-item i {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .contact-box {
    min-width: 100%;
    max-width: 100%;
    padding: 45px 30px;
  }
  
  .featured-box {
    transform: scale(1);
  }
  
  .featured-ribbon {
    font-size: 0.7rem;
    padding: 8px 40px;
  }
  
  .icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .icon-circle i {
    font-size: 2.8rem;
  }
  
  .contact-box h3 {
    font-size: 1.7rem;
  }
  
  .box-description {
    font-size: 0.98rem;
  }
  
  .box-features {
    padding: 20px 15px;
  }
  
  .contact-boxes {
    gap: 30px;
  }

  .faq-header {
    padding: 20px 25px;
  }
  
  .faq-header h3 {
    font-size: 1.1rem;
  }
  
  .faq-content p {
    padding: 0 25px 20px;
    padding-left: 31px;
  }

  section {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .form-content {
    padding: 40px 25px;
  }
  
  .form-progress {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .progress-step span {
    font-size: 0.8rem;
  }
  
  .trust-badges {
    gap: 15px;
    padding: 30px 20px;
  }
  
  .badge-item {
    padding: 10px 20px;
  }
  
  .value-props {
    grid-template-columns: 1fr;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
    left: -35px;
  }
  
  .section-subtitle::after {
    right: -35px;
  }
}

@media (max-width: 576px) {
  .parallax-header {
    height: 65vh;
  }

  .parallax-content h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .parallax-content p.p111 {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .hero-badge i {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-item {
    gap: 5px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .stat-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .hero-cta {
    padding: 15px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }

  .form-content {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .form-content::before,
  .form-content::after {
    width: 60px;
    height: 60px;
    border-width: 5px;
  }
  
  .form-progress {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .progress-line {
    display: none;
  }
  
  .progress-step {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .map-container {
    border-radius: 20px;
  }
  
  .map-container::before,
  .map-container::after {
    width: 70px;
    height: 70px;
    border-width: 5px;
  }
  
  .contact-box {
    padding: 40px 25px;
    border-radius: 15px;
  }
  
  .contact-box i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 2rem;
  }
  
  .faq-item {
    border-radius: 12px;
  }
  
  .faq-header {
    padding: 18px 20px;
  }
  
  .faq-header h3 {
    font-size: 1rem;
  }
  
  .faq-content p {
    padding: 0 20px 18px;
    padding-left: 26px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 18px 35px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .btn-text {
    font-size: 1rem;
  }
  
  .btn-subtext {
    font-size: 0.75rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .form-group label {
    font-size: 1rem;
  }
  
  .section-title p {
    font-size: 1.05rem;
  }
  
  .floating-contact-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .floating-contact-btn i {
    font-size: 1.1rem;
  }
  
  .trust-badges {
    gap: 10px;
    padding: 25px 15px;
  }
  
  .badge-item {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .badge-item i {
    font-size: 1.1rem;
  }
  
  .form-features {
    gap: 15px;
  }
  
  .form-features span {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .parallax-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-badge span {
    font-size: 0.75rem;
  }
  
  .section-title h2 {
    font-size: 1.7rem;
  }
  
  .form-content {
    padding: 25px 15px;
  }
  
  .submit-btn {
    padding: 16px 30px;
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .parallax-header,
  .faq-section,
  .submit-btn,
  .floating-contact-btn,
  .hero-particles,
  .box-shine {
    display: none;
  }
  
  .form-section {
    page-break-inside: avoid;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .parallax-bg {
    background-size: cover;
  }
}
/* PRO LEVEL ADDITIONS - Contact Boxes & Features */

.premium-box {
  position: relative;
}

.box-shine {
  display: none;
}

/* Icon Badges - Simplified */
.icon-badge {
  display: none;
}

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

.icon-badge:hover {
  display: none;
}

.pulse-badge {
  display: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.check-badge {
  display: none;
}

.headset-badge {
  display: none;
}

.icon-badge i {
  font-size: 1rem;
}

.box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  margin-top: auto;
  padding: 10px 22px;
  background: #23514D;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-decoration: none;
  font-size: 0.9rem;
  overflow: hidden;
}

.box-link::before {
  display: none;
}

.box-link:hover::before {
  display: none;
}

.box-link::after {
  display: none;
}

.box-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 81, 77, 0.3);
  color: white;
  background: #1a3d3a;
}

.box-link span {
  position: relative;
  z-index: 1;
}

.box-link i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.box-link:hover i {
  transform: translateX(3px);
}

.box-link:active {
  transform: translateY(-1px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(35, 81, 77, 0.2);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(35, 81, 77, 0.2);
}

.badge-item i {
  color: #23514D;
  font-size: 1.3rem;
}

.badge-item span {
  font-weight: 600;
  color: var(--dark-brown);
  font-size: 0.95rem;
}

/* Form Progress Indicator */
.form-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(35, 81, 77, 0.05), rgba(35, 81, 77, 0.1));
  border-radius: 15px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #999;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, #23514D, #1a3d3a);
  border-color: #23514D;
  color: white;
  box-shadow: 0 5px 20px rgba(35, 81, 77, 0.4);
  transform: scale(1.1);
}

.progress-step span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  transition: var(--transition);
}

.progress-step.active span {
  color: #23514D;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #ddd;
  position: relative;
  top: -20px;
  transition: var(--transition);
}

.progress-step.active ~ .progress-step .progress-line {
  background: #23514D;
}

/* Enhanced Form Labels with Icons */
.form-group label i {
  margin-right: 8px;
  color: #23514D;
  opacity: 0.8;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #23514D, #d4af37);
  transition: width 0.4s ease;
}

.form-group input:focus ~ .input-border,
.form-group select:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
  width: 100%;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #23514D;
  background: rgba(35, 81, 77, 0.05);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff3333;
  background: rgba(255, 51, 51, 0.05);
}

.shake-error {
  animation: shakeError 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

/* Value Propositions */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(35, 81, 77, 0.08), rgba(212, 175, 55, 0.08));
  border-radius: 15px;
  border: 2px dashed #23514D;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(35, 81, 77, 0.2);
}

.value-item i {
  color: #23514D;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item span {
  color: var(--dark-brown);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Enhanced Submit Button */
.submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.btn-subtext {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* Form Features */
.form-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #23514D;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-features i {
  font-size: 1.1rem;
}

/* Premium Disclaimer */
.form-disclaimer {
  background: linear-gradient(135deg, rgba(35, 81, 77, 0.1), rgba(35, 81, 77, 0.15));
  border: 2px solid rgba(35, 81, 77, 0.3);
}

.form-disclaimer strong {
  display: block;
  color: var(--dark-brown);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-disclaimer p {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Loading Alert Animation */
.booking-loader {
  text-align: center;
  padding: 20px;
}

.loader-icon {
  animation: bell-ring 1s ease-in-out infinite;
  margin-bottom: 20px;
}

@keyframes bell-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

.booking-loader p {
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin: 20px 0;
}

.loader-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

@keyframes loadProgress {
  0% {
    width: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
  }
  100% {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
  }
}

.loader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-green), var(--gold));
}

/* Premium Alert Styling */
.premium-alert {
  border-radius: 25px !important;
  padding: 30px !important;
}

.premium-alert .swal2-title {
  font-size: 2.2rem !important;
  margin-bottom: 15px !important;
}

.premium-alert .swal2-html-container {
  font-size: 1.1rem !important;
}

.loading-alert {
  background: linear-gradient(135deg, #f9f6f3, #ffffff) !important;
}

/* Airport pickup checkbox styles (clean, non-conflicting)
   Uses .pickup-checkbox and .checkbox-custom to present an attractive control.
*/
.pickup-checkbox {
  display: flex;
  align-items: center;
  gap: 16px; /* Reduce gap for better alignment */
}

.pickup-checkbox input[type="checkbox"] {
  /* show native checkbox inline instead of hiding it */
  position: static;
  width: auto;
  height: auto;
  margin: 0 12px 0 0;
  padding: 0;
  opacity: 1;
  cursor: pointer;
  z-index: 3;
}

.checkbox-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px; /* Reduce gap between checkbox and label */
  padding: 10px 16px; /* Increase padding for better visibility */
  border-radius: 8px; /* Slightly rounded corners */
  background: rgba(112,175,133,0.1); /* Subtle background for better contrast */
}

.checkbox-custom .checkmark {
  width: 24px; /* Larger size for better visibility */
  height: 24px; /* Larger size for better visibility */
  border: 2px solid #70af85; /* Solid border for clarity */
  background-color: #fff; /* White background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for a professional look */
  border-radius: 4px; /* Slightly rounded corners for modern design */
}

/* Checked state */
.pickup-checkbox input[type="checkbox"]:checked + .checkbox-custom .checkmark {
  background-color: #70af85; /* Green background when checked */
  border-color: #70af85; /* Match border color when checked */
}

.pickup-checkbox input[type="checkbox"]:checked + .checkbox-custom .checkmark::after {
  transform: translateY(-50%) translateX(26px);
  background: linear-gradient(135deg,#ffffff,#f5fdfb);
}

/* Mobile: smaller checkmark and adjusted knob translation */
@media (max-width: 768px) {
  .checkbox-custom { gap: 30px; padding: 6px 10px; }
  .checkbox-custom .checkmark { width: 48px; height: 28px; }
  .checkbox-custom .checkmark::after { width: 20px; height: 20px; left: 8px; }
  .pickup-checkbox input[type="checkbox"]:checked + .checkbox-custom .checkmark::after {
    transform: translateY(-50%) translateX(20px);
  }
}

/* Error / Required state */
#airport-pickup-group.error .checkmark {
  border-color: #ff3333;
}

/* Show error highlight around whole label area instead of only the checkmark */
#airport-pickup-group.error .checkbox-custom {
  box-shadow: 0 0 0 6px rgba(255,51,51,0.10);
  border-radius: 10px;
}

.checkbox-label {
  color: var(--dark-brown);
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  margin: 0; /* ensure label sits precisely next to the checkmark */
}

@media (max-width: 768px) {
  .checkbox-custom .checkmark { width: 36px; height: 24px; }
  .checkbox-custom .checkmark::after { width: 16px; height: 16px; left: 7px; }
}

/* Targeted override: hide only the decorative pseudo-elements that created the vertical bar.
   Keep .checkmark visuals intact so the custom checkbox can render. */
#airport-pickup-group .pickup-checkbox {
  background: transparent !important;
}

/* Hide legacy decorative pseudo-elements (vertical bar) only */
#airport-pickup-group .checkbox-custom::before,
#airport-pickup-group .checkbox-custom::after {
  display: none !important;
  content: none !important;
}

/* Keep the label text visible and aligned as a normal inline element */
#airport-pickup-group .checkbox-label {
  display: inline-block !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  vertical-align: middle !important;
}

/* Show and style the native checkbox input for Airport Pickup */
#airport-pickup-group input[type="checkbox"] {
  position: static !important; /* place inline in flow */
  width: auto !important;
  height: auto !important;
  margin: 0 12px 0 0 !important; /* space between box and label */
  padding: 0 !important;
  border: none !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  white-space: normal !important;
  appearance: auto !important; /* allow native checkbox rendering */
  -webkit-appearance: checkbox !important;
  background: transparent !important;
  vertical-align: middle !important;
  z-index: 3 !important;
}

/* Style native checkbox to look sharp and professional */
#airport-pickup-group input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #70af85 !important;
  background-color: #fff !important;
  box-shadow: none !important;
  border-radius: 2px !important; /* slight corner for modern look */
}

/* Modern attractive checkbox: keep input accessible, use .checkmark for visuals */
#airport-pickup-group {
  --chk-size: 24px;
  --chk-border: 2px;
  --chk-primary: #2ea76b; /* slightly richer green */
  --chk-bg: #ffffff;
  --chk-radius: 6px;
}

/* Hide native checkbox visually but keep it keyboard-focusable */
#airport-pickup-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: var(--chk-size);
  height: var(--chk-size);
  margin: 0;
}

#airport-pickup-group .checkbox-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

#airport-pickup-group .checkmark {
  width: var(--chk-size);
  height: var(--chk-size);
  min-width: var(--chk-size);
  background: var(--chk-bg);
  border: var(--chk-border) solid rgba(46,167,107,0.18);
  border-radius: var(--chk-radius);
  box-shadow: 0 6px 18px rgba(14,28,18,0.06);
  display: inline-block;
  position: relative;
  transition: transform 150ms ease, box-shadow 150ms ease, background 180ms ease, border-color 180ms ease;
}

/* Create tick using pseudo-element with transform animation */
#airport-pickup-group .checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid transparent;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 140ms cubic-bezier(.2,.9,.3,1), border-color 140ms ease, opacity 140ms ease;
  opacity: 0;
}

/* Checked state: fill with gradient and show tick */
#airport-pickup-group input[type="checkbox"]:checked + .checkbox-custom .checkmark {
  background: linear-gradient(180deg, var(--chk-primary), #1f8a53);
  border-color: rgba(46,167,107,1);
  transform: translateY(-1px);
}

#airport-pickup-group input[type="checkbox"]:checked + .checkbox-custom .checkmark::after {
  border-color: #fff;
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

/* Hover and focus */
#airport-pickup-group .checkbox-custom:hover .checkmark {
  box-shadow: 0 8px 22px rgba(14,28,18,0.08);
  transform: translateY(-2px);
}

#airport-pickup-group input[type="checkbox"]:focus + .checkbox-custom .checkmark {
  box-shadow: 0 0 0 6px rgba(46,167,107,0.12);
}

/* Respect user reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #airport-pickup-group .checkmark,
  #airport-pickup-group .checkmark::after {
    transition: none !important;
  }
}
