/* AYNA Professional Storefront Template */

/* Fonts (Outfit + DM Sans) are loaded in base template */

:root {
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --teal-lighter: #99F6E4;
  --teal-dark: #0F766E;
  --teal-950: #042F2E;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--gray-800); background: var(--white); overflow-x: hidden; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--gray-900); }
img { max-width: 100%; display: block; }
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }
.pro-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Topbar ─── */
.pro-topbar { background: var(--gray-900); color: var(--gray-400); font-size: 0.8125rem; padding: 0.5rem 0; }
.pro-topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.pro-topbar-left, .pro-topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.pro-topbar a { color: var(--gray-400); display: inline-flex; align-items: center; gap: 0.375rem; }
.pro-topbar a:hover { color: var(--teal-light); }
.pro-topbar .material-symbols-outlined { font-size: 0.9375rem; }
.pro-topbar-avail { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--teal-light); font-weight: 500; }
.pro-topbar-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
@media(max-width:700px) { .pro-topbar-left{display:none} }

/* ─── Nav ─── */
.pro-nav { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; background: transparent; transition: all 0.35s; }
.pro-nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); top: 0; }
.pro-nav-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; transition: padding 0.35s; }
.pro-nav.scrolled .pro-nav-inner { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.pro-nav-brand { display: flex; align-items: center; gap: 0.625rem; }
.pro-nav-logo { width: 36px; height: 36px; background: var(--teal); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.pro-nav-logo .material-symbols-outlined { color: white; font-size: 1.25rem; }
.pro-nav-name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--white); transition: color 0.35s; }
.pro-nav.scrolled .pro-nav-name { color: var(--gray-900); }
.pro-nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.pro-nav-links a { font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.8); position: relative; }
.pro-nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal-light); transition: width 0.25s; }
.pro-nav-links a:hover { color: white; }
.pro-nav-links a:hover::after { width: 100%; }
.pro-nav.scrolled .pro-nav-links a { color: var(--gray-500); }
.pro-nav.scrolled .pro-nav-links a:hover { color: var(--teal); }
.pro-nav.scrolled .pro-nav-links a::after { background: var(--teal); }
.pro-nav-cta { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); border: 1.5px solid rgba(255,255,255,0.3); color: white; background: transparent; transition: all 0.25s; }
.pro-nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); color: white; }
.pro-nav.scrolled .pro-nav-cta { background: var(--teal); border-color: var(--teal); color: white; }
.pro-nav.scrolled .pro-nav-cta:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: white; }
.pro-nav-cta .material-symbols-outlined { font-size: 1.125rem; }
.pro-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.pro-nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 1px; }
.pro-nav.scrolled .pro-nav-toggle span { background: var(--gray-800); }
@media(max-width:900px) { .pro-nav-toggle{display:flex} .pro-nav-links{display:none} }

/* ─── Hero with REAL video ─── */
.pro-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: #000; }
.pro-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pro-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.65) 100%); }
.pro-hero-content { position: relative; z-index: 1; padding: 0 0 5rem; width: 100%; }
.pro-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.pro-hero-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.875rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 500; color: var(--teal-lighter); margin-bottom: 1.5rem; }
.pro-hero-badge .material-symbols-outlined { font-size: 1rem; }
.pro-hero-title { font-family: var(--font-display); font-size: clamp(2.75rem, 5.5vw, 4rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 1rem; max-width: 680px; }
.pro-hero-tagline { font-size: 1.1875rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.6; }
.pro-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.pro-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; border: none; border-radius: var(--radius-full); cursor: pointer; transition: all 0.25s; text-decoration: none; }
.pro-btn-primary { padding: 0.9375rem 2.25rem; background: var(--teal); color: white; box-shadow: 0 4px 14px rgba(13,148,136,0.4); }
.pro-btn-primary:hover { background: var(--teal-light); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,0.45); }
.pro-btn-ghost { padding: 0.9375rem 2rem; background: rgba(255,255,255,0.08); color: white; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.pro-btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); color: white; }
.pro-btn .material-symbols-outlined { font-size: 1.125rem; }

/* ─── Stats ─── */
.pro-stats { background: var(--white); border-bottom: 1px solid var(--gray-100); position: relative; z-index: 2; }
.pro-stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4,1fr); }
.pro-stat { padding: 1.75rem 1rem; text-align: center; position: relative; }
.pro-stat:not(:last-child)::after { content:''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 40px; width: 1px; background: var(--gray-200); }
.pro-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gray-900); line-height: 1; margin-bottom: 0.25rem; }
.pro-stat-value .accent { color: var(--teal); }
.pro-stat-label { font-size: 0.8125rem; color: var(--gray-500); font-weight: 500; }
.pro-stat-stars { display: inline-flex; gap: 1px; margin-bottom: 0.25rem; }
.pro-stat-stars .material-symbols-outlined { font-size: 1.25rem; color: var(--amber); font-variation-settings: 'FILL' 1; }
@media(max-width:600px) { .pro-stats-inner{grid-template-columns:repeat(2,1fr)} .pro-stat:nth-child(2)::after{display:none} }

/* ─── Capabilities strip — SKILLS SHOWCASE ─── */
.pro-capabilities { padding: 4rem 0; background: var(--gray-900); }
.pro-cap-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.pro-cap-title { text-align: center; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 2.5rem; }
.pro-cap-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; }
.pro-cap-item { text-align: center; min-width: 100px; }
.pro-cap-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: var(--radius-md); background: rgba(13,148,136,0.1); border: 1px solid rgba(13,148,136,0.15); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; }
.pro-cap-item:hover .pro-cap-icon { transform: translateY(-4px); background: rgba(13,148,136,0.18); }
.pro-cap-icon .material-symbols-outlined { font-size: 1.75rem; color: var(--teal-light); }
.pro-cap-label { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--white); margin-bottom: 0.25rem; }
.pro-cap-sub { font-size: 0.75rem; color: var(--gray-500); }

/* ─── Section ─── */
.pro-section { padding: 5rem 0; }
.pro-section-header { text-align: center; margin-bottom: 3rem; }
.pro-section-tag { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.pro-section-tag .material-symbols-outlined { font-size: 1rem; }
.pro-section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.pro-section-subtitle { font-size: 1.0625rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ─── About ─── */
.pro-about-block { display: flex; align-items: flex-start; gap: 2rem; max-width: 700px; margin: 0 auto; }
.pro-about-logo { max-height: 100px; max-width: 200px; width: auto; height: auto; object-fit: contain; flex-shrink: 0; }
.pro-about-text { flex: 1; }
.pro-about-bio { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.8; margin: 0; }
@media(max-width:600px) { .pro-about-block { flex-direction: column; align-items: center; text-align: center; } }

/* ─── Services with IMAGES ─── */
.pro-services { background: var(--gray-50); }
.pro-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pro-service-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.pro-service-card:hover { box-shadow: var(--shadow-xl); border-color: transparent; transform: translateY(-4px); }
.pro-service-img { width: 100%; height: 200px; object-fit: cover; }
.pro-service-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.pro-service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.pro-service-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.pro-service-turnaround { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.625rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-full); font-size: 0.6875rem; font-weight: 600; color: var(--gray-600); white-space: nowrap; }
.pro-service-turnaround .material-symbols-outlined { font-size: 0.875rem; color: var(--teal); }
.pro-service-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.pro-service-price { font-size: 1.5rem; font-weight: 700; color: var(--teal); font-family: var(--font-display); }
.pro-service-unit { font-size: 0.8125rem; color: var(--gray-400); }
.pro-service-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }
.pro-service-includes { list-style: none; margin-bottom: 1.25rem; flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; }
.pro-service-includes li { display: flex; align-items: flex-start; gap: 0.375rem; font-size: 0.8125rem; color: var(--gray-600); line-height: 1.4; }
.pro-service-includes .material-symbols-outlined { font-size: 0.9375rem; color: var(--teal); flex-shrink: 0; margin-top: 1px; font-variation-settings: 'FILL' 1; }
.pro-service-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.pro-service-book { padding: 0.625rem 1.25rem; background: var(--teal); color: white; border: none; border-radius: var(--radius-full); font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.375rem; }
.pro-service-book:hover { background: var(--teal-dark); }
.pro-service-book .material-symbols-outlined { font-size: 1rem; }
.pro-service-samples { padding: 0.625rem 1.25rem; background: transparent; color: var(--teal); border: 1.5px solid var(--gray-200); border-radius: var(--radius-full); font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pro-service-samples:hover { border-color: var(--teal); }
@media(max-width:700px) { .pro-services-grid{grid-template-columns:1fr} .pro-service-includes{grid-template-columns:1fr} }

/* ─── Showreel section ─── */
.pro-showreel { padding: 5rem 0; background: var(--gray-900); }
.pro-showreel-inner { max-width: 900px; margin: 0 auto; }
.pro-showreel-header { text-align: center; margin-bottom: 2rem; }
.pro-showreel-header .pro-section-tag { color: var(--teal-light); }
.pro-showreel-header .pro-section-title { color: white; }
.pro-showreel-header .pro-section-subtitle { color: var(--gray-400); }
.pro-showreel-player { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; background: #000; box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.pro-showreel-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─── Portfolio with REAL images ─── */
.pro-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 0.75rem; }
.pro-portfolio-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.pro-portfolio-item:nth-child(1) { grid-row: span 2; }
.pro-portfolio-item:nth-child(4) { grid-column: span 2; }
.pro-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pro-portfolio-item:hover img { transform: scale(1.06); }
.pro-portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.35s; }
.pro-portfolio-item:hover .pro-portfolio-overlay { opacity: 1; }
.pro-portfolio-title { font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: white; margin-bottom: 0.25rem; }
.pro-portfolio-tag { font-size: 0.75rem; color: var(--teal-lighter); font-weight: 500; }
@media(max-width:768px) {
  .pro-portfolio-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .pro-portfolio-item:nth-child(1) { grid-row: span 1; }
  .pro-portfolio-item:nth-child(4) { grid-column: span 1; }
}

/* ─── Fleet / Equipment ─── */
.pro-fleet { background: var(--gray-50); }
.pro-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pro-fleet-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.pro-fleet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pro-fleet-img { width: 100%; height: 180px; object-fit: cover; background: var(--gray-100); }
.pro-fleet-info { padding: 1.25rem; }
.pro-fleet-name { font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; margin-bottom: 0.25rem; }
.pro-fleet-role { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.pro-fleet-specs { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.pro-fleet-spec { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.5rem; font-size: 0.6875rem; font-weight: 600; border-radius: var(--radius-full); background: var(--gray-50); color: var(--gray-600); border: 1px solid var(--gray-200); }
.pro-fleet-spec .material-symbols-outlined { font-size: 0.75rem; color: var(--teal); }
@media(max-width:700px) { .pro-fleet-grid{grid-template-columns:1fr} }

/* ─── Testimonials ─── */
.pro-testimonials { background: var(--white); }
.pro-testimonials-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pro-testimonial { background: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--gray-100); display: flex; flex-direction: column; }
.pro-testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.pro-testimonial-stars .material-symbols-outlined { font-size: 1.125rem; color: var(--amber); font-variation-settings: 'FILL' 1; }
.pro-testimonial-text { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.pro-testimonial-service { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 500; color: var(--teal-dark); background: rgba(13,148,136,0.06); padding: 0.25rem 0.625rem; border-radius: var(--radius-full); margin-bottom: 1rem; width: fit-content; }
.pro-testimonial-service .material-symbols-outlined { font-size: 0.875rem; }
.pro-testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.pro-testimonial-avatar { width: 40px; height: 40px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem; color: white; flex-shrink: 0; }
.pro-testimonial-name { font-weight: 600; font-size: 0.9375rem; color: var(--gray-900); }
.pro-testimonial-role { font-size: 0.8125rem; color: var(--gray-400); }
@media(max-width:900px) { .pro-testimonials-track{grid-template-columns:1fr; max-width: 560px; margin: 0 auto;} }

/* ─── Service Area ─── */
.pro-area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pro-area-map { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.pro-area-map img { width: 100%; height: 100%; object-fit: cover; }
.pro-area-map-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.pro-area-map-radius { width: 180px; height: 180px; border-radius: 50%; border: 3px solid var(--teal); background: rgba(13,148,136,0.1); position: relative; }
.pro-area-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; background: var(--teal); border-radius: 50%; border: 3px solid white; box-shadow: var(--shadow-md); }
.pro-area-map-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 0.375rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; color: var(--gray-700); box-shadow: var(--shadow-sm); }
.pro-area-details h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.pro-area-details > p { color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.7; }
.pro-area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.pro-area-list li { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--gray-700); }
.pro-area-list .material-symbols-outlined { font-size: 1.125rem; color: var(--teal); font-variation-settings: 'FILL' 1; }
@media(max-width:768px) { .pro-area-content{grid-template-columns:1fr} .pro-area-map{max-width:450px;margin:0 auto} }

/* ─── Booking form ─── */
.pro-booking { background: var(--gray-50); }
.pro-booking-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.pro-booking-info h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.pro-booking-info > p { color: var(--gray-500); margin-bottom: 2rem; line-height: 1.7; }
.pro-booking-perks { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pro-booking-perk { display: flex; gap: 0.75rem; align-items: flex-start; }
.pro-booking-perk-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(13,148,136,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pro-booking-perk-icon .material-symbols-outlined { font-size: 1.25rem; color: var(--teal); }
.pro-booking-perk-text strong { display: block; font-size: 0.9375rem; color: var(--gray-900); margin-bottom: 0.125rem; }
.pro-booking-perk-text span { font-size: 0.8125rem; color: var(--gray-500); }
.pro-booking-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
.pro-booking-form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.pro-booking-form-sub { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.pro-form-group { margin-bottom: 1rem; }
.pro-form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; }
.pro-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pro-form-input, .pro-form-select, .pro-form-textarea { width: 100%; padding: 0.75rem 0.875rem; font-family: var(--font-body); font-size: 0.9375rem; color: var(--gray-800); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.pro-form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239CA3AF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.25rem; padding-right: 2.5rem; }
.pro-form-textarea { resize: vertical; min-height: 80px; }
.pro-form-input::placeholder, .pro-form-textarea::placeholder { color: var(--gray-400); }
.pro-form-input:focus, .pro-form-select:focus, .pro-form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); background: var(--white); }
.pro-form-submit { width: 100%; padding: 0.9375rem; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: white; background: var(--teal); border: none; border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.pro-form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,148,136,0.35); }
.pro-form-submit .material-symbols-outlined { font-size: 1.125rem; }
.pro-form-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.75rem; }
@media(max-width:900px) { .pro-booking-layout{grid-template-columns:1fr} }

/* ─── Footer ─── */
.pro-footer { background: var(--gray-900); padding: 4rem 0 1.5rem; color: var(--gray-400); }
.pro-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.pro-footer-desc { font-size: 0.875rem; line-height: 1.7; color: var(--gray-400); max-width: 280px; }
.pro-footer-heading { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: white; margin-bottom: 1rem; }
.pro-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pro-footer-links a { color: var(--gray-400); font-size: 0.875rem; }
.pro-footer-links a:hover { color: var(--teal-light); }
.pro-footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.pro-footer-contact-item .material-symbols-outlined { font-size: 1.125rem; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.pro-footer-social { display: flex; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.pro-footer-social a { color: var(--gray-500); transition: color 0.2s; }
.pro-footer-social a:hover { color: var(--teal-light); }
.pro-footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; }
.pro-footer-powered a { color: var(--gray-500); }
.pro-footer-powered a:hover { color: var(--teal-light); }
@media(max-width:768px) { .pro-footer-grid{grid-template-columns:1fr 1fr} }
@media(max-width:480px) { .pro-footer-grid{grid-template-columns:1fr} .pro-footer-bottom{flex-direction:column;gap:0.5rem;text-align:center} }

/* ─── Mobile CTA ─── */
.pro-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; padding: 0.75rem 1rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--gray-100); }
.pro-mobile-cta-inner { display: flex; align-items: center; gap: 0.75rem; max-width: 1200px; margin: 0 auto; }
.pro-mobile-cta-info { flex: 1; }
.pro-mobile-cta-price { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--gray-900); }
.pro-mobile-cta-sub { font-size: 0.75rem; color: var(--gray-500); }
.pro-mobile-cta-btn { padding: 0.75rem 1.5rem; background: var(--teal); color: white; border: none; border-radius: var(--radius-full); font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
@media(max-width:900px) { .pro-mobile-cta{display:block} .pro-footer{padding-bottom:5rem} }

/* ─── Animations ─── */
.pro-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.pro-reveal.visible { opacity: 1; transform: translateY(0); }
.pro-reveal-delay-1 { transition-delay: 0.1s; }
.pro-reveal-delay-2 { transition-delay: 0.2s; }
.pro-reveal-delay-3 { transition-delay: 0.3s; }
.pro-reveal-delay-4 { transition-delay: 0.4s; }
