/* =========================
   Global Variables & Resets
=========================== */
:root {
  --primary: #FF6B6B;
  --secondary: #FFD93D;
  --accent: #6BCB77;
  --dark: #2D3436;
  --light: #ffffff;
  --gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  --transition: 0.3s ease;
  --max-width: 1200px;
  /* Turkish brand colors - can be customized */
  --brand-primary: #e63946;
  --brand-secondary: #f4a261;
  --success: #2a9d8f;
  --warning: #e9c46a;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   Base Styles
=========================== */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* =========================
   Header & Navigation
=========================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(45, 52, 54, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 0.125rem 0.9375rem rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 7.5rem;
  height: auto;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.auth-btn.secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.auth-btn.secondary:hover {
  background: var(--secondary);
  color: var(--dark);
}

.auth-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

/* =========================
   Content Container
=========================== */
.content-container {
  max-width: var(--max-width);
  margin: 1rem auto;
  padding: 0 2rem;
}

/* =========================
   Hero Section
=========================== */
.hero {
  position: relative;
  background: url('media/hero-bg.webp') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-weight: bold;
  text-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.4em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

/* =========================
   Call-to-Action Buttons
=========================== */
.button-container {
  text-align: center;
  margin: 1.5rem 0;
}

.cta-button {
  background: var(--gradient);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--light);
  display: inline-block;
  margin: 0.5rem;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1.5625rem rgba(255,107,107,0.4);
}

.cta-button.primary {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
  box-shadow: 0 0.5rem 1.5625rem rgba(40, 167, 69, 0.4);
}

.cta-button.secondary {
  background: var(--secondary);
  color: var(--dark);
}

/* Pulse Animation for Important CTAs */
.cta-button.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* =========================
   Cards & Section Blocks
=========================== */
.card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin: 1rem 0;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

/* Highlight Card - for important sections like Güncel Giriş */
.highlight-card {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(244, 162, 97, 0.15) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.highlight-card h2 {
  color: var(--secondary);
}

/* =========================
   Güncel Giriş Section (Turkish Specific)
=========================== */
.access-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.current-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.link-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.link-url {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(255, 217, 61, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: 1px dashed var(--secondary);
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-badge.online {
  background: rgba(42, 157, 143, 0.2);
  color: #2a9d8f;
  border: 1px solid #2a9d8f;
}

.status-badge.offline {
  background: rgba(230, 57, 70, 0.2);
  color: #e63946;
  border: 1px solid #e63946;
}

.update-info {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.access-tips {
  margin-top: 1.5rem;
  text-align: left;
}

.access-tips h3 {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.access-tips ul {
  list-style: none;
  padding: 0;
}

.access-tips li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-tips li:last-child {
  border-bottom: none;
}

.access-tips li i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

/* =========================
   Deneme Bonusu Section (Turkish Specific)
=========================== */
.bonus-highlight {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.bonus-box {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(32, 201, 151, 0.2) 100%);
  border: 2px solid var(--accent);
  border-radius: 15px;
  padding: 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-box::before {
  content: "🎁";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 3rem;
  opacity: 0.3;
}

.bonus-amount {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.bonus-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--light);
}

.bonus-note {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* =========================
   Info List (for Para Çekme rules etc.)
=========================== */
.info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.info-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.info-list li:last-child {
  border-bottom: none;
}

/* =========================
   Tables
=========================== */
.tech-specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.tech-specs th,
.tech-specs td {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-specs th {
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.tech-specs thead th {
  background: rgba(255, 255, 255, 0.15);
}

.tech-specs tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* =========================
   Payment Section
=========================== */
.payment-block {
  background: rgba(255, 255, 255, 0.05);
}

.two-columns {
  display: flex;
  gap: 2rem;
}

.left-col,
.right-col {
  flex: 1;
  padding: 1rem;
}

.payments-intro {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
  font-size: 1rem;
  text-align: left;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.payment-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.payment-card img {
  display: block;
  height: 35px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.payment-card:hover img {
  filter: grayscale(0%);
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.payment-table th,
.payment-table td {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.payment-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.payment-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* =========================
   Promo / Bonus Section
=========================== */
.promo-section {
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 900px;
  color: #ffffff;
}

.promo-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.promo-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 750px;
}

.promo-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.promo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.promo-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-right: 1rem;
  flex-shrink: 0;
}

.promo-text {
  font-size: 1rem;
  color: #ffffff;
}

/* =========================
   Step Guide (Registration, etc.)
=========================== */
.step-guide {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: transparent;
  color: var(--light);
}

.guide-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.guide-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.step-list::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.5;
  z-index: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3.5rem;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--light);
  text-align: left;
}

.step-item p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

/* Registration Steps Emoji */
.registration-steps .step-item:nth-child(1)::before { content: "📝"; }
.registration-steps .step-item:nth-child(2)::before { content: "✅"; }
.registration-steps .step-item:nth-child(3)::before { content: "💰"; }
.registration-steps .step-item:nth-child(4)::before { content: "🎮"; }

/* =========================
   Fancy Card (Login, Mobile sections)
=========================== */
.fancy-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 1.5rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.fancy-card-body p {
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.troubleshoot-list {
  list-style: none;
  padding: 0;
}

.troubleshoot-list li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--light);
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.troubleshoot-list li i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

/* =========================
   System Requirements (Mobile section)
=========================== */
.system-requirements {
  margin: 1.5rem 0;
}

.system-requirements h3 {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.system-requirements ul {
  list-style: none;
  padding: 0;
}

.system-requirements li {
  font-size: 0.95rem;
  color: var(--light);
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.system-requirements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* =========================
   Benefits / Trust Section
=========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* =========================
   Providers Grid
=========================== */
.providers-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
  padding: 1rem 0;
}

.providers-grid img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.providers-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* =========================
   Game Carousel / Swiper
=========================== */
.live-games-carousel {
  margin: 1.5rem 0;
  padding: 1rem 0;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.02);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary);
}

.swiper-pagination-bullet-active {
  background-color: var(--accent);
}

/* =========================
   FAQ Section
=========================== */
#sss .faq-item details {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#sss .faq-item details:hover {
  background: rgba(255, 255, 255, 0.12);
}

#sss .faq-item details[open] {
  background: rgba(255, 255, 255, 0.1);
}

#sss .faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sss .faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

#sss .faq-item details[open] summary::after {
  transform: rotate(45deg);
}

#sss .faq-item p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   Footer
=========================== */
.site-footer {
  padding: 3rem 2rem;
  background-color: #181818;
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
}

.footer-disclaimer {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo-social {
  margin-bottom: 1rem;
}

.footer-logo-social img.logo-icon {
  width: 150px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
}

.footer-links {
  margin: 1.5rem 0;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  opacity: 0.8;
}

.trust-badges img {
  height: 40px;
  width: auto;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.trust-badges img:hover {
  filter: grayscale(0%);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* =========================
   Utility Classes
=========================== */
.spacer {
  height: 15px;
}

.text-center {
  text-align: center;
}

.support-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.8;
  text-align: center;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* Links */
a:not(.cta-button):not(.auth-btn) {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:not(.cta-button):not(.auth-btn):hover {
  color: var(--accent);
  text-decoration: underline;
}

/* =========================
   Responsive Adjustments
=========================== */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .auth-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .two-columns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .left-col,
  .right-col {
    padding: 0.5rem;
  }
  
  .current-link {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .link-url {
    font-size: 1.2rem;
  }
  
  .bonus-amount {
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-table {
    display: block;
    overflow-x: auto;
  }
  
  .tech-specs {
    display: block;
    overflow-x: auto;
  }
  
  .site-footer {
    padding: 2rem 1rem;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .trust-badges img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 0 1rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
  }
  
  .button-container .cta-button {
    display: block;
  }
  
  .promo-item {
    flex-direction: column;
    text-align: center;
  }
  
  .promo-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .step-item {
    padding-left: 3rem;
  }
  
  .step-item::before {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* =========================
   Testimonials Section
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-rating {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--secondary);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Print Styles
=========================== */
@media print {
  header,
  .cta-button,
  .button-container,
  .swiper-button-next,
  .swiper-button-prev,
  .social-links {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    background: white;
    border: 1px solid #ddd;
  }
}