:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ee2b7b;
  --accent-color: #c91862;
  --bg-color: #0f0f0f;
  --text-color: #e0e0e0;
  --card-bg: rgba(30, 30, 30, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', 'Open Sans', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Typography Utilities */
.text-primary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
  box-sizing: border-box;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

header.sticky {
  background: rgba(17, 17, 17, 0.95);
  padding: 15px 5%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

header.sticky .nav-links a {
  color: var(--text-color);
}

header.sticky .nav-links a:hover, 
header.sticky .nav-links a.active {
  color: var(--secondary-color);
}

header.sticky .hamburger {
  color: var(--text-color);
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(238, 43, 123, 0.4);
}

/* Global Sections */
section {
  padding: 100px 5%;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.slide h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  animation: fadeInUp 1s ease;
}

.slide p {
  font-size: 24px;
  margin-bottom: 40px;
  color: #f8f9fa;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.slide .btn {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dots .dot.active {
  background: var(--secondary-color);
  transform: scale(1.3);
}

/* Static Hero */
.static-hero {
  padding: 180px 5% 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.static-hero.small-hero {
  padding: 120px 5% 60px;
}
.static-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 17, 17, 0.75);
  z-index: 1;
}
.static-hero::after {
  display: none;
}
.static-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.static-hero h1 { font-size: 48px; margin-bottom: 10px; color: #ffffff; }
.static-hero p { font-size: 20px; margin-bottom: 20px; color: #ffffff; }
.breadcrumb { font-size: 14px; color: var(--secondary-color); }

/* Marquee Strip */
.marquee-strip {
  background: linear-gradient(135deg, #bb2a80, #ee2b7a);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.marquee-content span {
  margin: 0 30px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Services Grid (Home) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  text-align: center;
}
.service-card i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.service-card a {
  color: var(--secondary-color);
  margin-top: 15px;
  display: inline-block;
  font-weight: 600;
}
.service-card a:hover {
  color: var(--text-color);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.why-item i {
  font-size: 30px;
  color: var(--accent-color);
}
.why-item h4 {
  font-size: 20px;
}

/* CTA Banner */
.cta-banner {
  background: url('https://placehold.co/1920x600/1A1A1A/D4AF37?text=Diverse+crowd+at+a+high-end+New+Year\'s+Eve+party+with+LED+lights,+confetti+falling,+laughing+and+dancing+people,+warm+golden+and+purple+lighting,+4K') no-repeat center/cover;
  position: relative;
  text-align: center;
  padding: 100px 5%;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(187, 42, 128, 0.85), rgba(238, 43, 122, 0.85));
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Footer */
footer {
  background: #f1f1f1;
  padding: 60px 5% 20px;
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--secondary-color);
}
footer .logo img {
  border-radius: 12px;
}
.footer-col p, .footer-col ul li {
  margin-bottom: 15px;
  color: #aaaaaa;
}
.footer-col ul li a:hover {
  color: var(--secondary-color);
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--secondary-color);
  color: #000;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: #666;
}

/* About Page Specific */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 50px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  z-index: 1;
}
.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 30%;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border: 4px solid var(--bg-color);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.philosophy {
  display: flex;
  align-items: center;
  gap: 50px;
}
.philosophy-gradient-card {
  background: linear-gradient(135deg, #bb2a80, #ee2b7a);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(238, 43, 123, 0.2);
  color: #ffffff;
}
.philosophy-gradient-card .philosophy-img img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.philosophy-text {
  flex: 1;
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  font-weight: 600;
}
.philosophy-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.philosophy-img img {
  width: 100%;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
}
.team-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, #bb2a80, #ee2b7a);
  padding: 50px 5%;
  text-align: center;
  color: #ffffff;
}
.number-item h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Services Page - Trending Showcase Layout */
.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.service-showcase:last-child {
  margin-bottom: 0;
}
.service-showcase.alternate .showcase-image {
  order: 2;
}
.service-showcase.alternate .showcase-content {
  order: 1;
}
.showcase-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: block;
}
.showcase-content h3 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.showcase-content h3 i {
  color: var(--secondary-color);
  margin-right: 15px;
}
.showcase-content p {
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 30px;
  line-height: 1.8;
}
.showcase-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.showcase-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.showcase-content ul li i {
  color: var(--secondary-color);
  margin-top: 3px;
}

/* Testimonials Page - Google Reviews Style */
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff; /* Forced white background */
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 12px 24px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.google-rating-badge .google-logo {
  font-size: 22px;
  font-weight: 700;
  color: #4285f4;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
}
.google-rating-badge .google-logo span:nth-child(1) { color: #4285f4; }
.google-rating-badge .google-logo span:nth-child(2) { color: #ea4335; }
.google-rating-badge .google-logo span:nth-child(3) { color: #fbbc04; }
.google-rating-badge .google-logo span:nth-child(4) { color: #4285f4; }
.google-rating-badge .google-logo span:nth-child(5) { color: #34a853; }
.google-rating-badge .google-logo span:nth-child(6) { color: #ea4335; }
.google-rating-badge .rating-num {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.google-rating-badge .stars-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.google-rating-badge .stars-row {
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: 2px;
}
.google-rating-badge .reviews-count {
  font-size: 13px;
  color: #5f6368;
}

/* Sort / Filter Tags */
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 20px;
  font-size: 13px;
  color: #5f6368;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card-bg);
}
.review-tag:hover {
  background: var(--bg-color);
  border-color: #4285f4;
  color: #4285f4;
}
.review-tag .tag-count {
  background: #f1f3f4;
  padding: 1px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: #5f6368;
}

/* Testimonial Carousel Layout */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* Google-style Review Card */
.google-review {
  flex: 0 0 calc(33.333% - 20px);
  margin-right: 20px;
  box-sizing: border-box;
  background: var(--card-bg);
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.google-review:hover {
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
}
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary-color);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  top: 100%;
  left: 0;
  z-index: 1001;
}
.nav-links .dropdown:hover .dropdown-content {
  display: block;
}
.nav-links .dropdown-content a {
  color: #ffffff !important;
  padding: 12px 20px;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: normal;
}
.nav-links .dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}
.nav-links .dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* Zodiac Events Unique Sections */
.ze-hero {
  padding: 180px 5% 100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.ze-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 17, 17, 0.75);
  z-index: 1;
}
.ze-hero::after {
  display: none;
}
.ze-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.ze-hero h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
}
.ze-hero h1 span {
  color: var(--secondary-color);
}
.ze-hero p {
  font-size: 20px;
  line-height: 1.8;
  color: #e0e0e0;
}

.ze-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ze-expertise-card {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 0 8px 8px 0;
}
.ze-expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(238, 43, 123, 0.15);
  border-left-color: var(--secondary-color);
}
.ze-expertise-card i {
  font-size: 28px;
  color: var(--secondary-color);
}
.ze-expertise-card h4 {
  font-size: 18px;
  margin: 0;
  color: var(--text-color);
}
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8e8e8;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-meta .review-name {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.review-meta .review-name .local-guide {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: #5f6368;
  font-weight: 400;
  background: #f1f3f4;
  padding: 2px 8px;
  border-radius: 12px;
}
.review-meta .review-name .local-guide i {
  color: #34a853;
  font-size: 12px;
}
.review-meta .review-stats {
  font-size: 12px;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.review-meta .review-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.review-meta .review-date {
  font-size: 12px;
  color: #5f6368;
  margin-top: 2px;
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3c4043;
  margin-bottom: 12px;
}
.review-text .more-toggle {
  color: #1a73e8;
  cursor: pointer;
  font-weight: 500;
}
.review-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid #f1f3f4;
}
.review-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5f6368;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
  background: none;
  border: none;
}
.review-action-btn:hover {
  background: #f1f3f4;
  color: #1a73e8;
}
.review-action-btn i {
  font-size: 16px;
}

/* Owner Response */
.owner-response {
  margin-top: 14px;
  margin-left: 58px;
  padding: 14px 16px;
  background: var(--bg-color);
  border-radius: 8px;
  border-left: 3px solid #4285f4;
}
.owner-response .response-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.owner-response .response-label i {
  font-size: 14px;
}
.owner-response .response-text {
  font-size: 13px;
  color: #3c4043;
  line-height: 1.5;
}

/* Photos row */
.review-photos {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.review-photo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #f1f3f4;
  border: 1px solid #e8eaed;
  object-fit: cover;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #9aa0a6;
}

/* The Cue Unique Sections */
.cue-hero {
  padding: 180px 5% 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.cue-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 17, 17, 0.75);
  z-index: 1;
}
.cue-hero::after {
  display: none;
}
.cue-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}
.cue-hero-content h1 {
  font-size: 56px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.cue-hero-content p {
  font-size: 22px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.cue-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 5%;
  background: #fdfbf7;
}
.cue-about-text h2 {
  font-size: 36px;
  color: #2c3e2d;
  margin-bottom: 25px;
}
.cue-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #aaaaaa;
  margin-bottom: 15px;
}
.cue-about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cue-highlights {
  padding: 80px 5%;
  background: var(--card-bg);
}
.cue-highlights-header {
  text-align: center;
  margin-bottom: 50px;
}
.cue-highlights-header h2 {
  font-size: 36px;
  color: #2c3e2d;
}
.cue-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.cue-highlight-card {
  background: var(--card-bg);
  border: 1px solid #eaeaea;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}
.cue-highlight-card:hover {
  box-shadow: 0 10px 20px rgba(44, 62, 45, 0.1);
  border-color: #2c3e2d;
  transform: translateY(-5px);
}
.cue-highlight-card i {
  font-size: 32px;
  color: #8c9c82;
  margin-bottom: 15px;
}
.cue-highlight-card h4 {
  font-size: 16px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
}

/* Ryders Inn Unique Sections */
.ri-hero {
  padding: 180px 5% 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.ri-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 17, 17, 0.75);
  z-index: 1;
}
.ri-hero::after {
  display: none;
}
.ri-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}
.ri-hero-content h1 {
  font-size: 56px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.ri-hero-content p {
  font-size: 22px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.ri-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 100px 5%;
  background: var(--card-bg);
  align-items: center;
}
.ri-about-text h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}
.ri-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #aaaaaa;
  margin-bottom: 15px;
}
.ri-about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ri-offer-grid, .ri-specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ri-card {
  background: var(--card-bg);
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.ri-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(238, 43, 123, 0.2);
}
.ri-card i {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.ri-why-choose {
  background: rgba(238, 43, 123, 0.05);
  padding: 80px 5%;
}
.ri-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 800px;
  margin: 40px auto 0;
}
.ri-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.ri-why-list li i {
  color: #388e3c;
  font-size: 20px;
}

.ri-info-strip {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px 5%;
  background: linear-gradient(135deg, #bb2a80, #ee2b7a);
  color: #fff;
  flex-wrap: wrap;
  text-align: center;
}
.ri-info-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}
.ri-info-item p {
  font-size: 18px;
  margin: 0;
}

/* Carousel Responsive */
@media (max-width: 1024px) {
  .google-review { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 768px) {
  .google-review { flex: 0 0 100%; margin-right: 0; }
  .carousel-wrapper { flex-direction: column; }
  .carousel-btn { display: none; }
}

/* Responsive */
@media (max-width: 768px) {
  .google-rating-badge {
    flex-wrap: wrap;
    justify-content: center;
  }
  .owner-response {
    margin-left: 0;
  }
}

/* Contact Page */
.contact-container {
  display: flex;
  gap: 50px;
}
.contact-form {
  flex: 1;
}
.contact-info-panel {
  flex: 1;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--card-bg);
  border: 1px solid #ccc;
  border-radius: 5px;
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}
.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-detail-item i {
  font-size: 24px;
  color: var(--secondary-color);
}
.contact-detail-item h4 {
  margin-bottom: 5px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #e9ecef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  color: #666;
}
.map-placeholder i {
  font-size: 40px;
  color: #aaaaaa;
  margin-bottom: 10px;
}

.faq-item {
  margin-bottom: 20px;
}
.faq-question {
  background: var(--primary-color);
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}
.faq-item.active .faq-question {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* About Preview Section */
.about-preview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.about-preview-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview-text .subheading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.about-preview-text h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-color);
}

.about-preview-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #aaaaaa;
  margin-bottom: 15px;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-in-section, section, footer {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible, section.is-visible, footer.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .slide h1 { font-size: 48px; }
  .philosophy { flex-direction: column; }
  .about-preview-container { grid-template-columns: 1fr; text-align: center; }
  .about-preview-image { margin-top: 30px; }
  
  .service-showcase { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .service-showcase.alternate .showcase-image, .service-showcase.alternate .showcase-content { order: unset; }
  .showcase-content h3 { font-size: 28px; }
  .showcase-content ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo img {
    max-height: 45px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111111;
    padding: 20px 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  }
  
  header.sticky .nav-links a,
  .nav-links a {
    color: #ffffff !important;
  }
  
  header.sticky .nav-links a:hover,
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--secondary-color) !important;
  }
  
  .nav-links .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger { display: block; }
  
  .why-grid, .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-container {
    flex-direction: column;
  }
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  .timeline::before {
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
  }
  .timeline-item {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  .timeline-dot {
    margin: 0 0 10px -29px;
  }
  
  .numbers-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide h1 { font-size: 36px; }
  .static-hero h1 { font-size: 36px; }
  .static-hero p { font-size: 16px; }
  .showcase-content ul { grid-template-columns: 1fr; }
  .philosophy-gradient-card { padding: 30px; }
  .philosophy-text { font-size: 24px; }
  .section-title { font-size: 28px; }
  .about-preview-text h2 { font-size: 28px; }
  
  .cue-about {
    grid-template-columns: 1fr;
  }
  .cue-hero-content h1 {
    font-size: 40px;
  }
  
  .ri-about {
    grid-template-columns: 1fr;
  }
  .ri-hero-content h1 {
    font-size: 40px;
  }
  .ri-why-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .numbers-strip { grid-template-columns: 1fr; }
  .slide h1 { font-size: 28px; }
  .slide p { font-size: 16px; }
  .static-hero h1 { font-size: 26px; }
  .static-hero p { font-size: 14px; }
  .google-rating-badge { flex-direction: column; padding: 16px; }
  .review-tag { font-size: 11px; padding: 6px 12px; }
  .google-review { padding: 16px; }
}

/* Logo Marquee */
.logo-marquee-strip {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
  white-space: nowrap;
}
.logo-marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.logo-marquee-content img {
  height: 180px;
  margin: 0 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo-marquee-content img:hover {
  transform: scale(1.1);
}

/* Responsive Logo Marquee */
@media (max-width: 1024px) {
  .logo-marquee-content img {
    height: 150px;
    margin: 0 50px;
  }
}
@media (max-width: 768px) {
  .logo-marquee-content img {
    height: 110px;
    margin: 0 40px;
  }
}
@media (max-width: 480px) {
  .logo-marquee-content img {
    height: 80px;
    margin: 0 25px;
  }
}

/* Addresses Grid */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 5%;
}
.address-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.address-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}
.address-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.address-card h3 {
  color: var(--secondary-color);
  font-size: 24px;
  margin-bottom: 15px;
}
.address-card p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
}
.address-card i.location-icon {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: inline-block;
}
