/* ===== Variables ===== */
:root {
  --color-primary: #2c4a6e;
  --color-primary-dark: #1c3350;
  --color-gold: #4a6b57;
  --color-gold-dark: #364e40;
  --color-gold-bright: #8fb39c;
  --color-silver: #c7cbd2;
  --color-silver-dark: #8b8f99;
  --color-ink: #10181f;
  --color-dark: #1a2733;
  --color-text: #303a44;
  --color-muted: #64707a;
  --color-bg: #f7f8fa;
  --color-bg-alt: #eef1f4;
  --color-border: #dde2e7;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 24, 31, 0.1);
  --shadow-lg: 0 24px 60px rgba(16, 24, 31, 0.22), 0 8px 20px rgba(16, 24, 31, 0.12);
  --glow-primary: 0 0 0 1px rgba(44, 74, 110, 0.2), 0 0 18px rgba(44, 74, 110, 0.32);
  --glow-gold: 0 0 14px rgba(74, 107, 87, 0.32);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
}

section[id] { scroll-margin-top: 90px; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-gold);
}

.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  position: relative;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(44, 74, 110, 0.22);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 130%; }

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.btn-outline {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  overflow: visible;
}

.logo-card-back {
  fill: #fff;
  stroke: var(--color-silver-dark);
  stroke-width: 1.5;
}

.logo-card-mid {
  fill: #fff;
  stroke: var(--color-gold);
  stroke-width: 1.5;
}

.logo-card-front {
  fill: var(--color-silver);
  stroke: var(--color-silver-dark);
  stroke-width: 1;
}

.logo-pip-corner {
  fill: var(--color-gold-dark);
  font-size: 7px;
  font-weight: 700;
}

.logo-pip-center {
  fill: var(--color-gold-dark);
  font-size: 13px;
  opacity: 0.95;
}

.logo-sparkle {
  fill: var(--color-gold);
}

.logo-sparkle-sm { opacity: 0.7; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.nav-list {
  display: flex;
  gap: 22px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

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

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

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

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-phone {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-dark);
  white-space: nowrap;
  margin-left: 16px;
  transition: color var(--transition);
}

.header-phone:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 74, 110, 0.5), transparent 55%),
    linear-gradient(180deg, rgba(16, 24, 31, 0.88) 0%, rgba(16, 24, 31, 0.94) 100%),
    url('https://images.weserv.nl/?url=upload.wikimedia.org/wikipedia/commons/9/91/Caesars_Palace_at_Night.jpg&w=1600&h=1000&fit=cover');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    radial-gradient(rgba(74, 107, 87, 0.25) 1px, transparent 1px);
  background-size: 70px 70px, 110px 110px;
  background-position: 0 0, 35px 45px;
  animation: twinkle 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

@keyframes twinkle {
  from { opacity: 0.65; }
  to { opacity: 0.9; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  margin-bottom: 20px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-gold-bright);
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #fff 40%, var(--color-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--color-ink);
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; align-items: flex-start; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-bright);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 140px;
}

.hero-captions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.hero-captions li {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-cue:hover { border-color: var(--color-gold-bright); color: var(--color-gold-bright); }

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

.hero-contact-card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  padding: 36px 34px;
}

.hero-contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.hero-contact-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.hero-contact-phone:hover { color: var(--color-primary-dark); }

.hero-contact-sub {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.hero-contact-card .contact-form {
  background: none;
  padding: 0;
  box-shadow: none;
}

.hero-contact-card .form-row { margin-bottom: 16px; }

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark) 70%, var(--color-ink));
  padding: 48px 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.cta-banner-inner p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-heading);
  max-width: 560px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--color-bg-alt);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(74, 107, 87, 0.4);
  overflow: hidden;
}

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

.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 20px; }

.about-content p { color: var(--color-muted); margin-bottom: 28px; line-height: 1.75; }

.about-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== Services ===== */
.services { background: var(--color-bg-alt); position: relative; overflow: hidden; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.card {
  background: #fff;
  padding: 44px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: var(--glow-primary);
}

.card h3 { font-size: 1.15rem; margin-bottom: 12px; }

.card p { color: var(--color-muted); font-size: 0.95rem; line-height: 1.65; }

/* ===== Las Vegas ===== */
.vegas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.vegas-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(74, 107, 87, 0.4);
  overflow: hidden;
}

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

.vegas-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 8px 0 20px; }

.vegas-content p {
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.vegas-subheading {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.vegas-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-muted);
  font-size: 1.05rem;
  background: #fff;
  padding: 32px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--color-gold);
}

.vegas-copy + .vegas-copy { margin-top: 24px; }

/* ===== Lead Generation ===== */
.leads { background: var(--color-bg-alt); }

.leads-table-wrap {
  max-width: 780px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.leads-table th,
.leads-table td {
  padding: 18px 26px;
  text-align: left;
  font-size: 0.92rem;
}

.leads-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.leads-table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.leads-table td {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-gold);
}

.photo-credit {
  margin-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.photo-credit a { color: var(--color-primary); text-decoration: underline; }

/* ===== Testimonials ===== */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 70s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.t-card {
  flex: 0 0 320px;
  background: #fff;
  padding: 34px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.quote::before {
  content: '\201C';
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.author {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-top: 8px;
}

.contact-lead {
  color: var(--color-muted);
  margin: 20px 0 24px;
}

.contact-details { margin: 28px 0 36px; }

.contact-details li { margin-bottom: 16px; color: var(--color-muted); }

.contact-details strong { color: var(--color-dark); }

.map {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 28px; font-size: 1.3rem; }

.form-row { margin-bottom: 24px; display: flex; flex-direction: column; }

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-row.error input,
.form-row.error textarea { border-color: #c0392b; }

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 1em;
}

.form-submit { width: 100%; }

.form-success {
  margin-top: 16px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-logo .logo-text { color: #fff; }

.footer-socials { display: flex; gap: 24px; }

.footer-socials a { transition: color var(--transition); }

.footer-socials a:hover { color: var(--color-gold); }

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover { background: var(--color-primary-dark); }

/* ===== Mobile Booking Bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-dark);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-cta-bar .btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
}

.mobile-cta-bar .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .vegas-grid,
  .hero-inner { grid-template-columns: 1fr; }

  .about-image,
  .vegas-image { order: -1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero h1 { margin: 0 auto 24px; max-width: 600px; }

  .hero-sub { margin: 0 auto 36px; max-width: 600px; }

  .hero-actions,
  .hero-stats,
  .hero-captions { justify-content: center; }

  .stat { align-items: center; }

  .hero-contact-card { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 1240px) {
  .nav,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav.open .nav-list li { border-bottom: 1px solid var(--color-border); }

  .nav.open .nav-link {
    display: block;
    padding: 18px 24px;
  }
}

@media (max-width: 760px) {
  .hero { padding: 140px 0 72px; }

  .hero-stats { gap: 36px; }

  .section { padding: 72px 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  body { padding-bottom: 72px; }

  .mobile-cta-bar { display: flex; }

  .scroll-top { bottom: 88px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: stretch; }
}
