/* ============================================
   TARTAK DARUL — Global Styles
   Mobile-first responsive design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-brown-dark: #5C3D2E;
  --color-brown-medium: #8B6914;
  --color-brown-light: #D4A559;
  --color-green: #2D5016;
  --color-green-light: #3a6b1e;
  --color-bg: #FAF6F0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0d5c7;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: var(--color-brown-medium);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-green);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brown-dark);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

p {
  margin-bottom: 1em;
}

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

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brown-dark);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo span {
  color: var(--color-green);
}

/* --- Navigation --- */
.main-nav ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.main-nav ul.active {
  display: flex;
}

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

.main-nav a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-bg);
  color: var(--color-green);
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-brown-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Header CTA (phone link) */
.header-cta {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 2px solid var(--color-green);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  background: transparent;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--color-green);
  color: var(--color-white);
}

/* --- Hero Section --- */
.hero {
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-brown-dark) 0%, #3e2518 50%, var(--color-green) 100%);
  color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 0.3em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
  opacity: 0.9;
  line-height: 1.5;
}

.hero .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
  background: var(--color-brown-light);
  color: var(--color-brown-dark);
}

.btn-primary:hover {
  background: #c4953f;
  color: var(--color-brown-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-brown-dark);
}

.btn-cta {
  background: var(--color-green);
  color: var(--color-white);
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn-cta:hover {
  background: var(--color-green-light);
  color: var(--color-white);
}

/* --- Sections --- */
.section {
  padding: 50px 0;
}

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

.section-dark {
  background: var(--color-brown-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-brown-light);
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-brown-light);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
}

.card h3 {
  margin-bottom: 0.5em;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1em;
}

.card .btn {
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* --- Advantages / Why Us --- */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.advantage-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.advantage-item h3 {
  color: var(--color-brown-light);
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}

.advantage-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brown-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-bg);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-brown-light);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-brown-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 50px 20px;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 1.5em;
  font-size: 1.1rem;
}

.cta-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-brown-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1em;
}

.cta-phone:hover {
  color: var(--color-white);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  margin-top: var(--header-height);
  padding: 15px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumbs li::after {
  content: '›';
  margin-left: 8px;
  color: var(--color-border);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-green);
}

/* --- Page Header (subpages) --- */
.page-header {
  background: linear-gradient(135deg, var(--color-brown-dark), #3e2518);
  color: var(--color-white);
  padding: 40px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-header p {
  opacity: 0.9;
  max-width: 700px;
  margin: 0.5em auto 0;
}

/* --- Content Section --- */
.content-section {
  padding: 40px 0;
}

.content-section h2 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.content-section h3 {
  margin-top: 1.2em;
  margin-bottom: 0.4em;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5em;
}

.content-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.content-section .highlight-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-brown-light);
  padding: 20px 24px;
  margin: 1.5em 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-section .highlight-box h3 {
  margin-top: 0;
}

/* --- Services List --- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 1.5em 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.service-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3em;
  margin-top: 0;
}

.service-item p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-brown-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.contact-info-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
}

.contact-info-card h3 {
  margin-bottom: 1em;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  color: var(--color-brown-dark);
  margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-brown-dark);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-brown-dark);
  font-size: 0.93rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-brown-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Footer --- */
.site-footer {
  background: #2c1e14;
  color: rgba(255,255,255,0.8);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-col h4 {
  color: var(--color-brown-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-brown-light);
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--color-brown-light);
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Inline CTA strip --- */
.cta-strip {
  background: var(--color-green);
  color: var(--color-white);
  text-align: center;
  padding: 14px 20px;
  font-size: 1rem;
}

.cta-strip a {
  color: var(--color-brown-light);
  font-weight: 700;
}

.cta-strip a:hover {
  color: var(--color-white);
}

/* --- Internal links --- */
.internal-links {
  background: var(--color-bg);
  padding: 30px;
  border-radius: 10px;
  margin-top: 2em;
  border: 1px solid var(--color-border);
}

.internal-links h3 {
  margin-bottom: 0.8em;
}

.internal-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-links ul li::before {
  display: none;
}

.internal-links ul li {
  padding-left: 0;
}

.internal-links a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.internal-links a:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

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

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

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

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

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

  .section {
    padding: 60px 0;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 { font-size: 2.6rem; }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero {
    padding: 100px 20px;
  }

  /* Desktop nav */
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
    gap: 2px;
    justify-content: center;
  }

  .main-nav li {
    border-bottom: none;
  }

  .main-nav a {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 80px 0;
  }
}

/* ============================================
   RESPONSIVE — Large Desktop (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.6rem;
  }

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

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
.mb-1 { margin-bottom: 1em; }
.mb-2 { margin-bottom: 2em; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-brown-dark);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* --- Form Status Messages --- */
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  display: none;
}
.form-status-success {
  display: block !important;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status-error {
  display: block !important;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-field-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  min-height: 250px;
}
.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.review-stars {
  color: #f5a623;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.review-source {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3rem;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--primary-dark);
}
.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active {
  background: var(--primary);
}
@media (max-width: 600px) {
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .review-card { padding: 1.5rem 2.5rem; }
}
