/* ==========================================================================
   ONYX AUTOMOTIVE - DESIGN SYSTEM & STYLESHEET
   Location: Nerang, Gold Coast, QLD
   ========================================================================== */

/* --- Custom Properties & Tokens --- */
:root {
  /* Brand Colors */
  --gold: #ff6f00;
  --gold-rgb: 255, 111, 0;
  --gold-dark: #d45c00;
  --gold-light: #ff8f40;
  --black: #070707;
  --black-sec: #0c0c0c;
  --black-alt: #0a0a0a;
  
  /* Interface Colors */
  --bg: #070707;
  --bg-section: #0c0c0c;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 111, 0, 0.15);
  --border-gold-hover: rgba(255, 111, 0, 0.4);
  
  /* Typography */
  --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Status & Text Colors */
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.45);
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 90px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Glassmorphism */
  --glass-bg: rgba(7, 7, 7, 0.88);
  --glass-blur: blur(12px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #030303;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* --- Layout Utility Containers --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-border-y {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-dark {
  background-color: var(--black-sec);
}

.section-darker {
  background-color: #050505;
}

.section-alt {
  background-color: var(--black-alt);
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 12px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.section-title-alt {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-text {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.8;
  margin-top: 20px;
}

.max-2 {
  max-width: 720px;
}

/* --- Custom UI Buttons --- */
.btn-solid,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 111, 0, 0.25);
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 111, 0, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 10px 22px;
  font-size: 16px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.15);
}

.btn-ghost {
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.01);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 111, 0, 0.05);
}

/* --- Header & Navigation Bar --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.header-scrolled {
  height: 72px;
  background-color: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-scrolled .brand-logo {
  height: 44px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 111, 0, 0.3));
  transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 20px;
}

.brand-subtitle {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  margin-top: 5px;
}

/* Desktop Menu Links */
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
}

.nav a:hover {
  color: var(--gold-light);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger mobile menu button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 110;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 4px;
  transition: var(--transition-fast);
}

/* Hamburger Animation classes when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--gold);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.98);
  backdrop-filter: var(--glass-blur);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 0 40px;
}

.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-btn {
  width: 100%;
  max-width: 320px;
  margin-top: 15px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 111, 0, 0.08), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 111, 0, 0.05), transparent 45%),
    var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  padding: 100px 0 120px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-logo {
  height: 260px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(255, 111, 0, 0.25));
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-brand-title {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.18em;
}

.hero-brand-subtitle {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  margin-top: 6px;
}

.pill {
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(255, 111, 0, 0.18);
  background-color: rgba(255, 111, 0, 0.06);
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-head);
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.highlights {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 500;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 111, 0, 0.4));
}

/* Hero Dashboard Card Styling */
.hero-card-wrap {
  border: 1px solid rgba(255, 111, 0, 0.12);
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.85), rgba(8, 8, 8, 0.95));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.hero-card {
  border: var(--glass-border);
  border-radius: 26px;
  background-color: rgba(5, 5, 5, 0.9);
  padding: 32px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.card-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
}

.card-title {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tag {
  border: 1px solid rgba(255, 111, 0, 0.2);
  background-color: rgba(255, 111, 0, 0.05);
  color: var(--gold);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  gap: 16px;
}

.mini-card {
  border: var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 20px;
  transition: var(--transition-smooth);
}

.mini-card:hover {
  border-color: rgba(255, 111, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.mini-card h3 {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.mini-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* --- Services Grid Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  border: var(--glass-border);
  background-color: var(--bg-card);
  border-radius: 28px;
  padding: 36px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 1px solid rgba(255, 167, 38, 0.2);
  background-color: rgba(255, 111, 0, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
  background-color: rgba(255, 111, 0, 0.15);
  color: var(--gold);
  transform: scale(1.1) translateY(-6px);
  filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.8));
  animation: icon-pulse-gold 2s infinite ease-in-out;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-icon svg {
  transform: scale(1.05) rotate(3deg);
}

@keyframes icon-pulse-gold {
  0% {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 111, 0, 0.35);
    border-color: rgba(255, 167, 38, 0.5);
  }
  50% {
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 111, 0, 0.65);
    border-color: rgba(255, 167, 38, 0.9);
  }
  100% {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 111, 0, 0.35);
    border-color: rgba(255, 167, 38, 0.5);
  }
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* --- About Onyx Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.85;
}

/* --- Booking Integration Section --- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.booking-panel {
  border: var(--glass-border);
  background-color: var(--bg-card);
  border-radius: 32px;
  padding: 40px;
}

.iframe-wrap {
  margin-top: 32px;
  border-radius: 24px;
  border: var(--glass-border);
  background-color: rgba(5, 5, 5, 0.5);
  padding: 12px;
  overflow: hidden;
}

.iframe-label {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 12px 14px;
}

.iframe-box {
  height: 680px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background-color: #000000;
}

.iframe-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Booking Side Panel */
.side-panel {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.95));
  border: var(--glass-border);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.side-panel .about-text p {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
}

.side-panel .about-text p::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.quick-card {
  border: 1px solid rgba(255, 111, 0, 0.2);
  background-color: rgba(255, 111, 0, 0.04);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.small-heading {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
}

.quick-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.quick-actions a {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
}

.gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.gold-outline:hover {
  background-color: var(--gold);
  color: var(--black);
}

.white-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}
.white-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  border: var(--glass-border);
  background-color: var(--bg-card);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.03);
}

.stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 17.5px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-label {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

/* --- Contact & Location Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  border: var(--glass-border);
  background-color: var(--bg-card);
  border-radius: 24px;
  padding: 28px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--border-gold-hover);
  background-color: rgba(255, 255, 255, 0.04);
}

.contact-card-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
}

.contact-card-value,
.contact-card a {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
  font-family: var(--font-head);
}

.contact-card a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 111, 0, 0.3);
  background-color: rgba(21, 18, 10, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(255, 111, 0, 0.35);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-dim);
  font-size: 13.5px;
  padding: 36px 24px;
  background-color: #030303;
}

/* --- Animation Classes (Scroll Reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.18s; }
.delay-4 { transition-delay: 0.24s; }
.delay-5 { transition-delay: 0.3s; }
.delay-6 { transition-delay: 0.36s; }

/* --- Responsive Media Queries --- */

/* Tablet & Smaller Devices */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 54px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .nav {
    display: none; /* Hide desktop nav */
  }
  
  .hamburger-btn {
    display: flex; /* Show hamburger button */
  }
  
  .btn-outline {
    display: none; /* Hide direct action button in header in tablet */
  }
  
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-grid {
    padding: 40px 0 60px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p,
  .section-text {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-title-alt {
    font-size: 28px;
  }
  
  .services-grid,
  .reviews-grid,
  .contact-cards {
    grid-template-columns: 1fr !important;
  }
  
  .service-card,
  .review-card,
  .contact-card,
  .booking-panel,
  .side-panel {
    padding: 24px;
    border-radius: 20px;
  }
  
  .hero-card-wrap {
    padding: 10px;
    border-radius: 24px;
  }
  
  .hero-card {
    padding: 20px;
    border-radius: 18px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .contact-card-value,
  .contact-card a {
    font-size: 18px;
  }
  
  .iframe-box {
    height: 580px;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 20px;
    bottom: 20px;
  }
}

/* Reduce Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .service-card,
  .mini-card,
  .contact-card,
  .btn-solid,
  .btn-outline,
  .btn-ghost,
  .whatsapp-float {
    transition: none !important;
    transform: none !important;
  }
}

/* --- Added Image Container Styles for Premium Photos --- */
.hero-image-wrap {
  border: 1.5px solid rgba(255, 111, 0, 0.18);
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.65), rgba(8, 8, 8, 0.85));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}
.hero-image-wrap:hover {
  border-color: rgba(255, 111, 0, 0.4);
  box-shadow: 0 35px 70px rgba(255, 111, 0, 0.15);
  transform: translateY(-2px);
}
.hero-image {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.side-panel-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: var(--transition-smooth);
}
.side-panel-image-wrap:hover {
  border-color: rgba(255, 111, 0, 0.35);
  transform: scale(1.01);
}
.side-panel-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1025px) {
  .side-panel-image-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .side-panel-image {
    height: 100%;
  }
}




@media (max-width: 768px) {
  .hero-image {
    height: 320px;
  }
  .hero-logo {
    height: 140px;
  }
  .brand-logo {
    height: 45px;
  }
  .header {
    height: 76px;
  }
  .header-scrolled {
    height: 64px;
  }
  .header-scrolled .brand-logo {
    height: 38px;
  }
}
