:root {
  --container: 960px;
  --bg: #ffffff;
  --ink: #000000;
  --muted: #6b7280;
  --surface: #f5f5f5;
  --radius-10: 10px;
  --radius-20: 20px;
}

* { box-sizing: border-box; }
html, body { 
  margin: 0; 
  padding: 0; 
  background: linear-gradient(-45deg, #fafafa, #f5f5f5, #f8f9fa, #f0f0f0);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: var(--ink); 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

/* Global link styles */
a { text-decoration: none; color: inherit; }
a:hover, a:active, a:focus { text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }

.site-nav { position: sticky; top: 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 10; }
.nav-inner { display: flex; align-items: center; gap: 16px; height: 64px; position: relative; }
.logo { width: 51px; height: 17px; display: grid; place-items: center; font-weight: 700; letter-spacing: 1px; }
.logo-faint { opacity: 0.15; }
.logo-header { width: auto; height: 32px; display: inline-flex; align-items: center; }
.logo-img { height: 100px; width: auto; display: block; }

/* Ensure brand image does not shrink or overflow */
.brand { 
  display: inline-flex; 
  align-items: center; 
  min-width: 120px; 
  margin-left: 60px; /* Space for hamburger menu */
}
.brand .logo-img { object-fit: contain; object-position: left center; transform: translateY(8px); }
.spacer { flex: 1; }
.spacer-100 { height: 100px; }

.phone-link { 
  color: #111; 
  text-decoration: none; 
  font-family: 'Arial Black', 'Helvetica', sans-serif;
  font-weight: 900; 
  font-size: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.2s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.phone-link:hover, .phone-link:active, .phone-link:focus { 
  color: #333;
  text-decoration: none;
}

/* Mobile phone banner - hidden on desktop */
.mobile-phone-banner {
  display: none;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: -100%;
  width: 250px;
  height: calc(100vh - 64px);
  background: #fff;
  border-right: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transition: left 0.3s ease;
  z-index: 15;
  box-shadow: 4px 0 12px rgba(0,0,0,0.1);
}


.mobile-nav.active {
  left: 0;
}

.mobile-nav .btn {
  width: 100%;
  justify-content: flex-start;
  height: 40px;
  padding: 0 16px;
}

.nav-links { display: flex; gap: 16px; }
.nav-links a { color: #111; text-decoration: none; font-weight: 500; }
.nav-links a:hover, .nav-links a:active, .nav-links a:focus { text-decoration: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 16px; border-radius: 100px; text-decoration: none; font-weight: 600; }
.btn-primary { 
  background: #000; 
  color: #fff; 
  height: 40px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-right: 16px; /* Balance with hamburger menu spacing */
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

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

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-ghost { background: #f0f0f0; color: #111; }
.btn-ghost:hover { background: #e9e9e9; }

.section { padding: 48px 0; }
.hero { 
  padding-top: 32px; 
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

.hero-inner { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 24px; 
  align-items: center; 
  position: relative;
  z-index: 1;
}
.hero-copy { display: grid; gap: 4px; }
.heading-xl { font-size: clamp(32px, 6vw, 56px); line-height: 1.05; font-weight: 700; }
.subheading { font-size: clamp(18px, 3vw, 28px); font-weight: 400; color: #111; }
.cta-row { margin-top: 8px; }
.hero-media .media-placeholder { background: var(--surface); height: min(600px, 65vh); border-radius: var(--radius-20); position: relative; }
.media-overlay-logo { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 32px; font-weight: 700; mix-blend-mode: overlay; }

.features .feature-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  align-items: center; 
  margin-bottom: 24px; 
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-20);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.features .feature-row:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.features .feature-row.reverse { direction: rtl; }
.features .feature-row.reverse > * { direction: ltr; }
.feature-text { 
  max-width: 320px; 
  transition: all 0.3s ease;
}

.feature-text:hover {
  transform: translateX(4px);
}
.heading-md { font-size: clamp(26px, 4vw, 38px); line-height: 1.2; font-weight: 700; }
.heading-lg { font-size: clamp(26px, 4vw, 40px); line-height: 1.2; font-weight: 700; }
.body { font-size: 18px; line-height: 1.6; }
.muted { color: var(--muted); }
.media-square { background: var(--surface); padding-top: 100%; border-radius: var(--radius-20); }
.radius-20 { border-radius: var(--radius-20); }
.radius-10 { border-radius: var(--radius-10); }

.gallery .gallery-header { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; margin-bottom: 32px; }
.avatar { width: 40px; height: 40px; border-radius: 100px; overflow: hidden; }

/* Portfolio Sections */
.portfolio-section { margin-bottom: 48px; }
.section-header { 
  font-size: clamp(24px, 4vw, 32px); 
  font-weight: 700; 
  margin-bottom: 24px; 
  color: #111;
  text-align: center;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #000, #666);
  border-radius: 2px;
}

.grid-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.grid-item { background: var(--surface); padding-top: 100%; position: relative; overflow: hidden; }
.grid-item.wide { grid-column: span 2; padding-top: 50%; }

/* Before and After Labels */
.before-after-label-wrapper {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.before-after-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

/* Placeholder Images */
.placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  transition: all 0.3s ease;
}

.placeholder-image:hover {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border-color: #999;
}

.placeholder-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  line-height: 1.4;
}

.rights { display: flex; gap: 12px; justify-content: flex-start; margin-top: 16px; }

.cta .cta-inner { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; background: #fff; text-align: center; padding: 48px 24px; border-radius: var(--radius-20); }
.cta .btn-primary { justify-self: center; }

.about .about-inner { display: grid; gap: 12px; max-width: 600px; }

.site-footer { padding: 32px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-inner { display: block; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; justify-content: space-between; }
.footer-title { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: #111; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; color: #111; }
.footer-col a { color: #111; text-decoration: none; }
.footer-col a:hover, .footer-col a:active, .footer-col a:focus { text-decoration: none; }
.footer-copyright { 
  margin-top: 32px; 
  padding-top: 24px; 
  border-top: 1px solid rgba(0,0,0,0.08); 
  text-align: center; 
}
.footer-copyright p { 
  color: #6b7280; 
  font-size: 14px; 
  margin: 0; 
}

/* Tablet */
@media (max-width: 1024px) {
  :root { --container: 810px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media .media-placeholder { height: 420px; }
  .features .feature-row { grid-template-columns: 1fr; }
  .grid-portfolio { grid-template-columns: repeat(2, 1fr); }
  .portfolio-section { margin-bottom: 32px; }
  .section-header { margin-bottom: 16px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --container: 390px; }
  
  /* Mobile header layout - simplified and clean */
  .site-nav {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
  }
  
  .nav-inner { 
    height: 56px; /* Reduced height for mobile */
    padding: 0 12px;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Hide phone number in header on mobile - will show in banner below */
  .phone-link {
    display: none;
  }
  
  .hamburger-menu {
    width: 28px;
    height: 28px;
    position: static;
    transform: none;
    flex-shrink: 0;
  }
  
  .mobile-nav {
    width: 220px;
    top: 56px; /* Match the reduced header height */
    height: calc(100vh - 56px);
  }
  
  .brand {
    margin-left: 0; /* Remove margin since hamburger is now static */
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0; /* Allow shrinking */
  }
  
  .logo-img { 
    height: 80px; /* Much smaller for mobile */
    width: auto; 
    max-width: 100%;
  }
  
  .btn-primary {
    margin-right: 0;
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .btn-primary p {
    font-size: 14px;
    white-space: nowrap;
  }
  
  .spacer {
    display: none; /* Not needed in mobile layout */
  }
  
  /* Mobile phone banner below header */
  .mobile-phone-banner {
    display: block;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px 16px;
    text-align: center;
  }
  
  .mobile-phone-banner .phone-link {
    display: inline-block;
    font-size: 16px;
    padding: 4px 8px;
    position: static;
    transform: none;
    color: #111;
    text-decoration: none;
    font-weight: 700;
  }
  
  .nav-links { 
    gap: 8px; 
    flex-shrink: 0;
    display: flex;
  }
  .nav-links .btn { 
    height: 32px; 
    padding: 0 12px;
    font-size: 12px;
    min-width: fit-content;
  }
  .nav-links .btn p {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .btn { 
    height: 32px; 
    padding: 0 12px;
    font-size: 12px;
    min-width: fit-content;
  }
  .btn p {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .section { padding: 32px 0; }
  .grid-portfolio { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .grid-item.wide { grid-column: auto; padding-top: 100%; }
  .portfolio-section { margin-bottom: 24px; }
  .section-header { margin-bottom: 12px; }
  .placeholder-text { font-size: 12px; padding: 12px; }
  
  /* Reorder landscape before/after photos on mobile - pairs at top */
  #landscape .grid-portfolio .grid-item { order: 100; } /* Default order for all items */
  #landscape .grid-portfolio .landscape-before-1 { order: 1 !important; }
  #landscape .grid-portfolio .landscape-after-1 { order: 2 !important; }
  #landscape .grid-portfolio .landscape-before-2 { order: 3 !important; }
  #landscape .grid-portfolio .landscape-after-2 { order: 4 !important; }
  
  /* Reorder hardscape before/after photos on mobile - pair at top */
  #hardscape .grid-portfolio .grid-item { order: 100; } /* Default order for all items */
  #hardscape .grid-portfolio .hardscape-before { order: 1 !important; }
  #hardscape .grid-portfolio .hardscape-after { order: 2 !important; }
  #hardscape .grid-portfolio .hardscape-other-1 { order: 3 !important; }
  
  .footer-inner { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-copyright p { font-size: 12px; }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .nav-inner { 
    padding: 0 8px;
    gap: 6px;
  }
  
  .hamburger-menu {
    width: 26px;
    height: 26px;
  }
  
  .mobile-nav {
    width: 200px;
  }
  
  .logo-img { 
    height: 70px; /* Even smaller for extra small screens */
  }
  
  .btn-primary {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }
  
  .btn-primary p {
    font-size: 13px;
  }
  
  .mobile-phone-banner .phone-link {
    font-size: 15px;
    padding: 6px 8px;
  }
  
  .nav-links { 
    gap: 6px; 
  }
  .nav-links .btn { 
    height: 28px; 
    padding: 0 10px;
    font-size: 11px;
  }
  .nav-links .btn p {
    font-size: 11px;
  }
  .btn { 
    height: 28px; 
    padding: 0 10px;
    font-size: 11px;
  }
  .btn p {
    font-size: 11px;
  }
}


/* About page */
.about-hero { padding-top: 24px; }
.about-layout { display: grid; grid-template-columns: minmax(200px, 420px) 1fr; gap: 24px; align-items: start; }
.about-portrait { width: 100%; aspect-ratio: 1 / 1; background: var(--surface); border-radius: 75px; margin-top: 140px; }
.about-content { display: grid; gap: 2px; }
.about-name-role { display: grid; gap: 0px; }
.about-name-role .body { margin-top: -8px; }
.about-text { display: grid; gap: 2px; max-width: 600px; }
.about-text .body { font-size: 16px; line-height: 1.6; }
.about-ctas { display: flex; gap: 12px; }
.btn-secondary { background: #eee; color: #000; }
.about-values { display: flex; gap: 12px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px; border-radius: 100px; background: #f0f0f0; }
.chip-icon { width: 16px; height: 24px; display: inline-block; background: #d9d9d9; border-radius: 4px; }
.about-social { display: flex; gap: 24px; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; height: 40px; padding: 0 14px; border-radius: 999px; background: #f0f0f0; color: #000; }
.social-btn:hover { background: #e9e9e9; }
.social-icon { width: 18px; height: 18px; }
.rights.center { justify-content: center; }

@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; margin: 0 auto; }
  .about-content { justify-items: start; }
}

@media (max-width: 600px) {
  .about-portrait { max-width: 320px; }
  .about-values { gap: 8px; }
}

/* Schedule page */
.schedule-hero { padding-top: 48px; }
.schedule-header { text-align: center; margin-bottom: 32px; }
.schedule-header h1 { margin-bottom: 12px; }
.calendly-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-bottom: 48px; }

.contact-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.hours-section, .contact-section { background: #f8f9fa; padding: 24px; border-radius: 12px; height: fit-content; }
.hours-grid { display: grid; gap: 8px; margin-top: 16px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #e9ecef; }
.hours-row:last-child { border-bottom: none; }
.day { font-weight: 600; color: #111; }
.time { color: #6b7280; }
.contact-section h3 { margin-bottom: 16px; }
.contact-section a { color: #000; text-decoration: none; }
.contact-section a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact-hours { grid-template-columns: 1fr; gap: 24px; }
}

/* Button Animation Styles */
/* From Uiverse.io by alshahwan */
.btn {
  background-color: #fff;
  border: 1px solid #333;
  padding: 0 16px;
  position: relative;
  height: 30px;
  transition: 0.5s;
  font-size: 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
}

.btn p {
  margin: 0;
  padding: 0;
  transition: .5s;
  color: #333;
  font-weight: 600;
}

.btn:hover p {
  color: #fff;
}

.btn:hover {
  background-color: #333;
  border-color: #333;
}

/* Primary button specific styles */
.btn-primary {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  height: 40px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
}

.btn-primary p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary:hover p {
  color: #fff;
}

/* Ghost button specific styles */
.btn-ghost {
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
  color: #111;
}

.btn-ghost p {
  color: #111;
}

.btn-ghost:hover {
  background-color: #333;
  border-color: #333;
}

.btn-ghost:hover p {
  color: #fff;
}

/* Secondary button specific styles */
.btn-secondary {
  background-color: #eee;
  border: 1px solid #eee;
  color: #000;
}

.btn-secondary p {
  color: #000;
}

.btn-secondary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-secondary:hover p {
  color: #fff;
}

/* Social button specific styles */
.social-btn {
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
  color: #000;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.5s;
}

.social-btn p {
  color: #000;
  margin: 0;
  padding: 0;
  transition: .5s;
}

.social-btn:hover {
  background-color: #333;
  border-color: #333;
}

.social-btn:hover p {
  color: #fff;
}

/* Social button icon hover effect */
.social-btn:hover .social-icon {
  filter: brightness(0) invert(1);
}

/* Image styles for uploaded photos */
.hero-image {
  width: 100%;
  height: min(600px, 65vh);
  object-fit: cover;
  object-position: center;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 90px;
}

/* Ensure grid items maintain aspect ratio with images */
.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Feature media containers */
.feature-media {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* Creates smaller square aspect ratio */
  border-radius: var(--radius-20);
  max-width: 300px; /* Limit maximum width */
}

.feature-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Hero media container */
.hero-media {
  position: relative;
  overflow: hidden;
}

/* About portrait container */
.about-portrait {
  position: relative;
  overflow: hidden;
}

/* Clickable feature styles */
.clickable-feature {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-20);
  padding: 24px;
  margin-bottom: 24px;
}

.clickable-feature:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.clickable-feature:hover .feature-text {
  transform: translateX(6px);
}

.clickable-feature:hover .feature-image {
  transform: scale(1.05);
}

.clickable-feature .feature-image {
  transition: transform 0.3s ease;
}

/* Reviews Carousel Styles */
.reviews {
  background: #fff;
  padding: 64px 0;
}

.reviews-carousel {
  max-width: 800px;
  margin: 32px auto 0;
  position: relative;
}

.reviews-container {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.review-card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  text-align: center;
  padding: 32px 24px;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-card.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease-in-out;
}

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

.review-stars {
  color: #f5a623;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-text {
  font-size: 18px;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-author {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.nav-btn {
  background: #fff;
  border: 2px solid #e9ecef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  line-height: 1;
}

.nav-btn:hover {
  background: #333;
  border-color: #333;
  color: #fff;
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #333;
  transform: scale(1.2);
}

.dot:hover {
  background: #666;
  transform: scale(1.15);
}

/* Mobile responsive adjustments for reviews */
@media (max-width: 600px) {
  .reviews {
    padding: 48px 0;
  }
  
  .review-card {
    padding: 24px 16px;
    min-height: 200px;
  }
  
  .review-stars {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  
  .review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .review-author {
    font-size: 14px;
  }
  
  .carousel-nav {
    gap: 16px;
    margin-top: 24px;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .nav-dots {
    gap: 8px;
  }
}

