body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
line-height: 1.6;
text-align: center;
background: #F5EFE6;
color: #3B2A1E;
}

/* HERO */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding-top: 60px;
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
url('https://images.unsplash.com/photo-1575052814086-f385e2e2ad1b?auto=format&fit=crop&w=1600&q=80')
center/cover no-repeat;
}

.hero-content {
  backdrop-filter: blur(8px);        /* upgraded from 6px */
  background: rgba(0,0,0,0.5);       /* upgraded from 0.45 */
  border-radius: 16px;               /* keep */
  padding: 30px;                     /* keep */
}

.headline {
font-size: 30px;
font-weight: 700;
margin-bottom: 20px;
color: #fff;
}

.logo {
width: 200px;
background: rgba(255,255,255,0.85);
padding: 8px;
border-radius: 10px;
}

.tagline {
font-size: 18px;
color: #E8DCCB;
margin: 10px 0 30px;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
}

/* BUTTONS */
.btn {
padding: 14px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}

.btn.primary {
background: #C89B3C;
color: white;
}

.btn.primary:hover {
background: #A67C2E;
}

.btn.secondary {
border: 2px solid #C89B3C;
color: #C89B3C;
}

.btn.secondary:hover {
background: #C89B3C;
color: white;
}

/* SECTIONS */
section {
padding: 50px 20px;
}

.section-card {
background: white;
padding: 40px 20px;
margin: 40px auto;
max-width: 1000px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

h2 {
margin-bottom: 15px;
}

.section-subtext {
color: #7A6A5A;
max-width: 600px;
margin: 10px auto 25px;
}

/* GRID SYSTEM (FIXED) */
.class-grid,
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}

/* CARDS */
.class-card,
.testimonial-card {
background: #F5EFE6;
padding: 20px;
border-radius: 12px;
border: 1px solid #E8DCCB;
text-align: left;
transition: 0.3s;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.class-card:hover,
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.class-card h3 {
margin-bottom: 10px;
}

.class-card p {
font-size: 14px;
color: #7A6A5A;
}

/* TESTIMONIAL */
.testimonial-card p {
font-style: italic;
margin-bottom: 10px;
}

.testimonial-card h4 {
color: #C89B3C;
font-size: 14px;
}

/* GALLERY */
.gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 700px;
margin: auto;
}

.gallery-grid img {
width: 100%;
height: 240px;
object-fit: cover;
border-radius: 12px;
}

/* FORM */
form input, form select, form button {
display: block;
margin: 10px auto;
padding: 12px;
width: 80%;
max-width: 320px;
border-radius: 6px;
border: 1px solid #ddd;
}

button {
background: #C89B3C;
color: white;
border: none;
cursor: pointer;
}

/* OFFER */
.offer {
background: #3B2A1E;
color: white;
padding: 60px 20px;
}

.offer-box {
background: #C89B3C;
color: #3B2A1E;
padding: 25px;
border-radius: 12px;
max-width: 400px;
margin: 20px auto;
}

/* LOCATION */
.map-container {
margin: 20px auto;
max-width: 800px;
}

/* PRICING SPECIAL */
#pricing .class-card:nth-child(3) {
border: 2px solid #4CAF50;
transform: scale(1.05);
}

/* FOOTER */
footer {
background: #E8DCCB;
padding: 15px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}
}
#pricing .class-grid {
grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
#pricing .class-grid {
grid-template-columns: 1fr;
}
}
.location-details p {
text-align: center;
line-height: 1.8;
font-size: 15px;
}

.location-details strong {
font-size: 16px;
}

.trust-line {
  margin-top: 12px;
  font-size: 15px;
  color: #f5f5f5; /* brighter */
  opacity: 0.9;
  font-weight: 500;
}


.offer-line {
  margin-top: 10px;
  color: #c49a3a;
  font-weight: 600;
}
/* ===== BUTTON CONVERSION BOOST (SAFE ADD) ===== */

.pulse {
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Slight upgrade (non-breaking) */
.btn.primary {
  background: linear-gradient(135deg, #d4a017, #b8860b);
}