* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background: linear-gradient(180deg, #291259, #8146ff); color: #333; overflow-x: hidden; }

/* Header */
header { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; }
.header-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://weddingdj.jasonbrain.com/images/mixer-board.jpg') no-repeat center/cover; background-attachment: fixed; z-index: -3; }
.header-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(3, 3, 130, 0.12) 0%, rgba(41, 18, 89, 0.76) 100%); z-index: -1; }
.lights { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; mix-blend-mode: overlay; }
.header-content { position: relative; z-index: 1; }
header h1 { font-size: 3.5rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
header p { font-size: 1.5rem; margin: 1rem 0; }

/* CTA Button */
.cta-button { padding: 1rem 2rem; font-size: 1.2rem; background: #ff6f61; color: white; border: none; border-radius: 25px; cursor: pointer; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; pointer-events: auto; }
.cta-button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent); transform: translate(-50%, -50%) scale(0); transition: transform 0.5s ease; }
.cta-button:hover::before { transform: translate(-50%, -50%) scale(1); }
.cta-button:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 111, 97, 0.7); }

/* Main Container */
.container { max-width: 1200px; margin: 2rem auto; padding: 2rem; background: white; border-radius: 20px; display: flex; flex-direction: column; gap: 3rem; }

/* Section Headings */
.about, .venues, .gallery, .contact, .blog { text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #291259; padding: 0.5rem 0; width: 100%; }
hr { display: block; border: 0; height: 3px; background: linear-gradient(to right, #ff6f61, #8146ff); margin: 2rem auto; width: 100%; }

/* Venues Section */
.venues { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.venue-card { background: #f9f1f1; border-radius: 10px; padding: 1rem; width: 200px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.venue-card:hover { transform: translateY(-5px); }
.venue-card img { width: 100%; border-radius: 5px; border: 2px solid #291259; }

/* Gallery Section */
.gallery { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.gallery img { width: 100%; max-width: 300px; border-radius: 10px; border: 2px solid #291259; transition: transform 0.3s ease; }
.gallery img:hover { transform: scale(1.05); }

/* Mix Player Section */
.mix-player { margin: 2rem auto; text-align: center; }
.mix-player iframe { width: 100%; border: 2px solid #291259; border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.mix-player p { margin-top: 1rem; }
.mix-player .mixcloud-link { color: #ff6f61; text-decoration: none; font-weight: bold; }
.mix-player .mixcloud-link:hover { text-decoration: underline; }

/* Scroll to Top Button */
.scroll-to-top { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: #ff6f61; color: white; border: none; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: none; z-index: 10; transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0.8; }
.scroll-to-top:hover { opacity: 1; transform: scale(1.1); box-shadow: 0 0 10px rgba(255, 111, 97, 0.7); }

/* Footer */
footer { background: #291259; color: white; text-align: center; padding: 1rem; }
footer a { color: #ff6f61; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  header h1 { font-size: 2rem; }
  header p { font-size: 1rem; }
  .container { padding: 1rem; gap: 2rem; }
  h2 { font-size: 1.8rem; }
  .venue-card { width: 150px; }
  hr { width: 80%; }
  .scroll-to-top { width: 40px; height: 40px; font-size: 1.2rem; }
  .visual-production .visual-grid {
    grid-template-columns: 1fr !important; /* Override inline grid for mobile */
    display: block !important; /* Ensure block display for single column */
  }
  .visual-production .visual-grid > div:first-child {
    margin-bottom: 2rem;
  }
}

/* Google Maps iframe specific styles */
iframe[src*="google.com/maps"] {
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
iframe[src*="google.com/maps"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Contact Section */
.contact-intro-box {
  background: #f8f4ff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-align: center;
  border-left: 4px solid #8146ff;
}
.contact-intro-box h3 {
  color: #291259;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.contact-intro-box p {
  margin-bottom: 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.contact-info {
  flex: 1 1 220px;
  text-align: left;
  line-height: 1.6;
}
.contact-info p {
  margin-bottom: 1rem;
}
.contact-info a {
  color: #ff6f61;
  font-weight: 600;
}
.contact-map {
  flex: 0 0 300px;
}
.contact-cta {
  margin-top: 2rem;
  font-size: 1.1rem;
}
.extras {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.contact-form-container,
.contact-map-container {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
}

.contact-map-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-map-container h4 {
  color: #291259;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
}
.contact-map-container iframe {
  border:0;
  border-radius:15px;
  aspect-ratio:1/1;
  max-width:300px;
}
.map-info-box {
  margin-top: 1.5rem;
  text-align: center;
  color: #666;
}
.map-info-box p {
  margin-bottom: 0.5rem;
}
.map-info-box strong {
  color: #291259;
}
.map-info-box .small-text {
  font-size: 0.9rem;
  color: #888;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group label {
  display: block;
  color: #291259;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #8146ff;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  background: #fff;
}
.form-textarea {
  height: 150px;
  resize: vertical;
}
.form-submit-button {
  background: linear-gradient(135deg, #8146ff, #ff6f61);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(129, 70, 255, 0.3);
}
.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(129, 70, 255, 0.5);
}
.noscript-message {
  color: #ff6f61;
  font-style: italic;
  margin-top: 1rem;
}

/* About Section Specifics */
.about-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.about-image-container {
  flex: 1;
  min-width: 300px;
}
.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  border: 3px solid #291259;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-text-content {
  flex: 2;
  min-width: 300px;
  text-align: left;
}
.about-text-content p {
  margin-bottom: 1rem;
  color: #444; /* Default text color for paragraphs in this section */
}
.about-text-content .intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.why-choose-box {
  background: #f8f4ff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #8146ff;
  margin: 1.5rem 0;
}
.why-choose-box h4 {
  color: #291259;
  margin-bottom: 0.5rem;
}
.why-choose-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-left: 1rem;
  line-height: 1.8;
}
.why-choose-list-item {
  padding: 0.25rem 0; /* Reduced padding for tighter lines */
  display: flex;
  align-items: center;
}
.why-choose-list-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.why-choose-list-item .checkmark {
  color: #8146ff;
  margin-right: 0.5rem;
  font-weight: bold;
}
.about-quote-text {
  font-style: italic;
  color: #666;
  border-top: 2px solid #eee;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

/* Investment Section */
.investment-box {
  background: linear-gradient(135deg, #291259, #8146ff);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 2rem 0;
}
.investment-box h3 {
  color: white;
  margin-bottom: 1rem;
}
.investment-box .price-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.investment-box .small-info-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Mix Player Section */
.mix-item {
  margin-bottom: 2rem;
}
.mix-item h4 {
  color: #8146ff;
  margin-bottom: 0.5rem;
}
.mix-item iframe {
  border-radius: 10px;
}
.mix-item .mix-description {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}
.mix-summary-box {
  background: #f8f4ff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #8146ff;
  margin-top: 2rem;
}
.mix-summary-box p {
  margin: 0;
  font-style: italic;
  color: #666;
  text-align: center;
}
.mix-summary-box strong {
  color: #291259;
}

/* Fund the Vibes Section */
.fund-vibes-section {
  margin: 4rem 0;
  background: linear-gradient(135deg, #ff6f61, #ff9472);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fund-vibes-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 1;
}
.fund-vibes-content {
  position: relative;
  z-index: 2;
}
.fund-vibes-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}
.fund-vibes-badge .emoji {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.fund-vibes-badge .text {
  font-weight: bold;
  font-size: 1.1rem;
}
.fund-vibes-badge .emoji-right {
  font-size: 2rem;
  margin-left: 0.5rem;
}
.fund-vibes-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.fund-vibes-section .intro-paragraph {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.fund-vibes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.fund-vibes-grid-item {
  background: rgba(255,255,255,0.15);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}
.fund-vibes-grid-item .emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.fund-vibes-grid-item .title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.fund-vibes-grid-item .description {
  font-size: 0.9rem;
  opacity: 0.9;
}
.paypal-box {
  background: rgba(255,255,255,0.2);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
}
.paypal-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.paypal-button {
  display: inline-block;
  background: #0070ba;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,112,186,0.4);
  border: 2px solid transparent;
}
.paypal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,112,186,0.6);
}
.paypal-button .icon-left {
  margin-right: 0.5rem;
}
.paypal-button .icon-right {
  margin-left: 0.5rem;
}
.fund-vibes-footer-box {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
}
.fund-vibes-footer-box p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
}
.fund-vibes-footer-box strong {
  color: white; /* Changed to white */
}

/* Packages Section */
.packages {
  margin: 3rem 0;
}
.packages .intro-paragraph {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.package-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
  position: relative;
}
.package-card.popular {
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border: 3px solid #8146ff;
  transform: scale(1.05);
}
.package-badge {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
}
.package-badge.essential {
  background: #8146ff;
}
.package-badge.popular {
  background: linear-gradient(135deg, #ff6f61, #8146ff);
}
.package-badge.luxury {
  background: #291259;
}
.package-card h3 {
  color: #291259;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.package-price {
  font-size: 2rem;
  font-weight: bold;
  color: #291259;
  margin-bottom: 1rem;
}
.package-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.package-features-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.package-feature-item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}
.package-feature-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.package-feature-item .checkmark {
  color: #8146ff;
  margin-right: 0.5rem;
  font-weight: bold;
}
.trusted-vendors-box {
  background: #f8f4ff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 2rem 0;
  border-left: 4px solid #8146ff;
}
.trusted-vendors-box h4 {
  color: #291259;
  margin-bottom: 1rem;
}
.trusted-vendors-box p {
  margin-bottom: 1rem;
  color: #666;
}
.trusted-vendors-box .small-italic {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}
.all-packages-info {
  text-align: center;
  margin: 2rem 0;
}
.all-packages-info .main-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}
.all-packages-info .small-text {
  font-size: 0.95rem;
  color: #666;
}

/* Visual Production Section */
.visual-production-section {
  margin: 4rem 0;
  background: linear-gradient(135deg, #1a0033, #330066);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.visual-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  opacity: 0.3;
  z-index: 1;
}
.visual-content {
  position: relative;
  z-index: 2;
}
.visual-production-section h2 {
  color: white;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.visual-production-section .intro-paragraph {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.visual-image-container {
  position: relative;
}
.visual-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.2);
}
.visual-image-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: rgba(255,111,97,0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
}
.visual-features-content h3 {
  color: #00ffff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.visual-features-content .sub-section {
  margin-bottom: 2rem;
}
.visual-features-content h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.visual-features-list {
  list-style: none;
  padding: 0;
}
.visual-feature-item {
  padding: 0.7rem 0;
  display: flex;
  align-items: flex-start;
}
.visual-feature-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.visual-feature-item .bullet {
  color: #00ffff;
  margin-right: 0.8rem;
  font-weight: bold;
  margin-top: 0.1rem;
}
.visual-quote-box {
  background: rgba(0,255,255,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #00ffff;
}
.visual-quote-box p {
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}
.equipment-capabilities-box {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
}
.equipment-capabilities-box h4 {
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.capability-item .title {
  color: #00ffff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.capability-item .description {
  font-size: 0.9rem;
  opacity: 0.8;
}
.visual-add-on-box {
  text-align: center;
  background: rgba(255,111,97,0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255,111,97,0.3);
}
.visual-add-on-box h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.visual-add-on-box .price {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6f61;
  margin-bottom: 1rem;
}
.visual-add-on-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.visual-add-on-box .small-italic {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

/* Testimonials Section */
.testimonials {
  margin: 3rem 0;
  text-align: center;
}

.testimonials .intro-paragraph {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Special styling for vendor testimonials */
.testimonial-card.vendor-testimonial {
  border-left: 4px solid #8146ff;
  background: #f8f4ff;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-quote p {
  font-style: italic;
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  position: relative;
}

/* Add quotation marks */
.testimonial-quote p::before {
  content: '"';
  font-size: 2em;
  color: #8146ff;
  position: absolute;
  left: -0.5em;
  top: -0.2em;
  font-family: serif;
}

.testimonial-quote p::after {
  content: '"';
  font-size: 2em;
  color: #8146ff;
  font-family: serif;
}

.testimonial-author {
  border-top: 2px solid #f0f0f0;
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #291259;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* Testimonials CTA Box */
.testimonials-cta-box {
  background: linear-gradient(135deg, #291259, #8146ff);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem auto 2rem auto;
  max-width: 600px;
  text-align: center;
}

.testimonials-cta-box h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonials-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.testimonials-cta-button {
  background: #ff6f61;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.testimonials-cta-button:hover {
  background: #ff5a4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 97, 0.6);
}

/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonials-cta-box {
    padding: 2rem;
    margin: 2rem auto 1rem auto;
  }
  
  .testimonials-cta-box h4 {
    font-size: 1.3rem;
  }
}

/* Footer specific style */
.footer-italic-text {
  font-size:0.95rem;
  color:#888;
  font-style:italic;
}

@media (max-width: 600px) {
  .contact-card {
    padding: 1.5rem;
  }
}
