/* ==========================================================================
   KITE TRIPS - Original Beach Color Optimized Stylesheet
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Color Palette (Optimized to Match Wix Original Light Beach Theme) */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-tertiary: #f0f3f6;
  
  --bg-mint: #edf9f5;
  --bg-peach: #ffddd2;
  --bg-dark: #110704;
  
  --accent-cyan: #095b96;         /* Original primary ocean blue */
  --accent-cyan-rgb: 9, 91, 150;
  --accent-teal: #3899ec;         /* Original secondary sky blue */
  --accent-teal-rgb: 56, 153, 236;
  --accent-sand: #fabd71;         /* Sandy gold */
  --accent-coral: #ff8044;        /* Peach-orange highlight */
  
  --text-white: #141414;          /* Titles - dark charcoal */
  --text-light: #2c2c2c;          /* Body text - dark grey */
  --text-muted: #5a5a5a;          /* Muted labels - medium grey */
  --text-dark: #ffffff;           /* Button labels - white for contrast */

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Glassmorphism Light Defaults */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.04);
  --glass-glow: rgba(9, 91, 150, 0.06);

  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Section Background Helper Classes */
.bg-mint {
  background-color: var(--bg-mint);
}

.bg-peach {
  background-color: var(--bg-peach);
}

.bg-white {
  background-color: var(--bg-primary);
}

.bg-light-grey {
  background-color: var(--bg-secondary);
}

.bg-dark {
  background-color: var(--bg-dark) !important;
  color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p, .bg-dark span {
  color: #ffffff !important;
}

.bg-dark a {
  color: #ffffff !important;
}
.bg-dark a:hover {
  color: var(--accent-teal) !important;
}

.bg-dark .contact-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--accent-teal) !important;
}

.bg-dark .form-control {
  background: rgba(10, 17, 32, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.bg-dark .form-control:focus {
  border-color: var(--accent-teal) !important;
  box-shadow: 0 0 10px rgba(56, 153, 236, 0.2) !important;
}

.bg-dark .glass-panel {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.bg-dark .testimonial-quote {
  color: #f1f5f9 !important;
}

/* Shared Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 80px 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 30%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphic Panel (Optimized for Light Backgrounds) */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: var(--transition-normal);
}
.glass-panel:hover {
  border-color: rgba(9, 91, 150, 0.2);
  box-shadow: 0 8px 32px var(--glass-shadow), 0 0 16px var(--glass-glow);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(9, 91, 150, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(9, 91, 150, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(9, 91, 150, 0.05);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-coral);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 128, 68, 0.25);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 128, 68, 0.4);
}

/* Header & Navigation (Optimized for Light Backgrounds) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-white);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  margin: 5px 0;
  transition: var(--transition-normal);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 100px 2rem 2rem;
  transition: var(--transition-slow);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid var(--glass-border);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

/* About / Welcome Section */
.about-section {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-map-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--bg-primary);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-map-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
}

.spain-details-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

/* Promo Boxes Grid (Locations, Repair, Gallery, Private) */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 80px;
}

.promo-card {
  position: relative;
  height: 380px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.promo-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.75) 10%, rgba(20, 20, 20, 0.1) 60%, transparent 100%);
  z-index: 2;
  transition: var(--transition-normal);
}

.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  transition: var(--transition-normal);
}

.promo-card:hover .promo-img {
  transform: scale(1.1);
}

.promo-card:hover .promo-overlay {
  background: linear-gradient(to top, rgba(9, 91, 150, 0.85) 20%, rgba(9, 91, 150, 0.25) 70%, transparent 100%);
}

.promo-card:hover .promo-title {
  color: var(--accent-sand);
}

/* Courses Section */
.courses-section {
  position: relative;
}

.courses-header {
  margin-bottom: 4rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--border-radius-md);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden; /* Clip image corners to card radius */
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(9, 91, 150, 0.1);
  border-color: var(--accent-cyan);
}

.course-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.course-card:hover .course-card-image {
  transform: scale(1.06);
}

.course-card-body {
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.course-badge.popular {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

.course-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  font-weight: 700;
}

.course-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-light); /* High-contrast dark grey */
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.course-pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  margin-top: auto; /* Push pricing to the bottom of the card content */
}

.course-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--accent-cyan);
  line-height: 1;
}

.course-duration {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.course-card .btn {
  width: 100%;
}

/* Rental Row (Full Width Card for the 5th item) */
.rental-row {
  margin-top: 2rem;
}

.rental-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: var(--border-radius-md);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.rental-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.rental-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(9, 91, 150, 0.08);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.rental-price-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-cyan);
  margin: 1rem 0 1.5rem;
}

.rental-image-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 300px;
}

.rental-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Unique Adventure Section */
.adventure-section {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
              url('../images/adventure_bg.jpg') center/cover no-repeat fixed;
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.adventure-content {
  max-width: 650px;
}

.adventure-content h2 {
  font-size: 2.75rem;
}

.adventure-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Call to Action Grid Section */
.cta-banner-section {
  padding: 60px 0;
}

.cta-banner-card {
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(255,255,255, 0.95) 0%, rgba(247,247,247, 0.9) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(9, 91, 150, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.cta-banner-text {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.cta-banner-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-banner-btn {
  position: relative;
  z-index: 2;
}

/* Why Choose Us & Testimonials */
.why-section {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(9, 91, 150, 0.08);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.2rem;
  border: 1px solid var(--accent-cyan);
}

.why-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--accent-cyan);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Contact & Footer Section */
.contact-section {
  position: relative;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.contact-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.contact-text span, .contact-text a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.contact-text a:hover {
  color: var(--accent-teal);
}

.contact-location-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-location-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-form-panel {
  padding: 3rem;
}

.contact-form-panel h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(9, 91, 150, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-form-submit {
  width: 100%;
  border: none;
}

.form-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(9, 91, 150, 0.08);
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Footer bottom */
.site-footer {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #b2b2b2;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b2b2b2;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

/* SUBPAGE: LOCATIONS SPECIFICS */
.locations-hero {
  padding-top: 150px;
  padding-bottom: 60px;
}

.locations-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.locations-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.locations-intro-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-item-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 1.25rem;
}

.location-item-img-wrapper {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 100%;
}

.location-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-item-info h3 {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.location-item-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* SUBPAGE: KITE REPAIR SPECIFICS */
.repair-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.repair-image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.repair-image {
  width: 100%;
  height: auto;
  display: block;
}

.repair-highlight-box {
  margin-top: 1.5rem;
  padding: 2rem;
}

/* SUBPAGE: GALLERY SPECIFICS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  cursor: pointer;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 91, 150, 0.15);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-expand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-expand-icon {
  transform: translateY(0);
}

/* LIGHTBOX MODAL (Explicitly Dark for Focus isolation) */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 7, 4, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-teal);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-nav:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-slide-up {
  animation: slideUp 0.8s var(--transition-slow) forwards;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1100px) {
  .hero-grid, .about-grid, .why-grid, .contact-grid, .repair-grid, .locations-intro-grid {
    gap: 3rem;
  }
  
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  /* Mobile Menu Toggles */
  .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Sections Grid to Single Column */
  .hero-grid, .about-grid, .why-grid, .contact-grid, .repair-grid, .locations-intro-grid, .locations-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-map-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .why-grid {
    flex-direction: column-reverse;
    display: flex;
  }
  
  .rental-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .rental-image-wrapper {
    height: 250px;
  }
  
  .cta-banner-card {
    flex-direction: column;
    padding: 2.5rem;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-banner-text {
    max-width: 100%;
  }
  
  .locations-intro-images {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .location-item-card {
    grid-template-columns: 1fr;
  }
  
  .location-item-img-wrapper {
    height: 180px;
  }
  
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .lightbox-nav {
    display: none;
  }
  
  .lightbox-close {
    top: -45px;
    right: 10px;
  }
}
