/* Flawless Finish Ceramic Coating - Professional Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Hero Section */
.hero {
  background: #000000;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.logo-section {
  margin-bottom: 30px;
}

.logo {
  max-width: 500px;
  height: auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button.primary {
  background: #007bff;
  color: white;
}

.button.primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.button.secondary {
  background: #6c757d;
  color: white;
  border: 2px solid #6c757d;
}

.button.secondary:hover {
  background: #5a6268;
  border-color: #5a6268;
  color: white;
}

/* Card Styles */
.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card h2 {
  color: white;
  margin-bottom: 15px;
}

.card .sub {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
}

.card li {
  padding: 8px 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 20px;
}

.card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

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

.section.light {
  background: white;
}

.section.dark {
  background: #1a1a1a;
  color: white;
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.section.dark h2 {
  color: white;
}

.sub {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.section.dark .sub {
  color: #e0e0e0;
}

/* Gallery Styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  font-weight: 600;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Before & After Gallery */
.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.before-after-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.before-after-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
}

.before-after-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.before-after-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.before-after-caption {
  text-align: center;
  font-weight: 600;
  color: #e0e0e0;
}

.before-after-cta {
  text-align: center;
  margin-top: 40px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-text .lead {
  font-size: 1.4rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 30px;
}

.highlight {
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #007bff;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  margin: 30px 0;
}

.credentials {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.credential {
  text-align: center;
}

.credential .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
}

.credential .label {
  font-size: 0.9rem;
  color: #666;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #666;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testi h3 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.testi p {
  margin-bottom: 20px;
  color: #666;
}

.testi .by {
  font-weight: 600;
  color: #333;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #007bff;
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: #007bff;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 20px;
}

.pricing-card .description {
  color: #666;
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.pricing-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.pricing-note p {
  margin-bottom: 10px;
  color: #666;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer h3 {
  margin-bottom: 15px;
  color: white;
}

footer p {
  margin-bottom: 10px;
  color: #e0e0e0;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Calendar Styles */
.calendar-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.calendar-month h4 {
  text-align: center;
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.calendar-day-headers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.day-header {
  text-align: center;
  font-weight: 600;
  color: #666;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.calendar-day.available {
  background: #e8f5e8;
  border-color: #28a745;
  color: #155724;
}

.calendar-day.available:hover {
  background: #d4edda;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.calendar-day.selected {
  background: #007bff;
  border-color: #0056b3;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.4);
}

.calendar-day.unavailable {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
}

.calendar-day.past {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
}

.selected-date-display {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem;
  background: #e3f2fd;
  border-radius: 8px;
  color: #1976d2;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .credentials {
    flex-direction: column;
    gap: 20px;
  }
  
  .before-after-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .payment-options {
    flex-direction: column;
  }
  
  .payment-options button {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container,
  .wrap {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .badges {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-row {
    flex-direction: column;
    align-items: center;
  }
  
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-container {
    padding: 20px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

/* Process Section */
.process-section {
    background-color: var(--color-light);
    color: var(--color-text-dark);
    text-align: center;
}

body.dark .process-section {
    background-color: #222;
    color: var(--color-text-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark .process-step {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

body.dark .process-step h3 {
    color: var(--color-light);
}

.process-step p {
    color: var(--color-secondary);
    line-height: 1.6;
}

body.dark .process-step p {
    color: #bbb;
}

/* How to Book Section */
.how-to-book-section {
    background-color: var(--color-light);
    padding: 4rem 0;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.how-to-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #FFA500, #FFD700);
    z-index: 0;
    display: none; /* Hide on mobile */
}

@media (min-width: 768px) {
    .how-to-steps::before {
        display: block;
    }
}

.step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0f1a;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

.step h3 {
    color: #0a0f1a;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

body.dark .step {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: #444;
}

body.dark .step:hover {
    border-color: #FFD700;
}

body.dark .step h3 {
    color: #fff;
}

body.dark .step p {
    color: #ccc;
}

/* Booking Section Header */
.booking-section {
    padding: 4rem 0;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #FFD700;
}

.booking-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0f1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

body.dark .booking-header {
    border-bottom-color: #FFD700;
}

body.dark .booking-header h2 {
    color: #fff;
}

body.dark .booking-subtitle {
    color: #ccc;
}

/* Booking Form Styles */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0f1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0a0f1a;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #0a0f1a;
    font-family: inherit;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.next-available {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
    padding: 0.5rem 0;
}

.payment-section {
    margin-top: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #FFD700;
}

.payment-description {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-options button {
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.payment-options .button.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0f1a;
}

.payment-options .button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.payment-options .button.secondary {
    background: #fff;
    color: #0a0f1a;
    border: 2px solid #0a0f1a;
}

.payment-options .button.secondary:hover {
    background: #0a0f1a;
    color: #fff;
    transform: translateY(-2px);
}

body.dark .booking-container {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark .form-section {
    border-bottom-color: #333;
}

body.dark .form-section-title {
    color: #fff;
    border-bottom-color: #FFD700;
}

body.dark .form-group label {
    color: #fff;
}

body.dark .form-group input,
body.dark .form-group select {
    background: #2a2a2a;
    border-color: #444;
    color: #fff;
}

body.dark .form-group input:focus,
body.dark .form-group select:focus {
    border-color: #FFD700;
}

body.dark .payment-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-color: #FFD700;
}

body.dark .payment-description {
    color: #ccc;
}

body.dark .payment-options .button.secondary {
    background: #2a2a2a;
    color: #fff;
    border-color: #444;
}

body.dark .payment-options .button.secondary:hover {
    background: #0a0f1a;
    border-color: #FFD700;
}

@media (max-width: 768px) {
    .booking-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .form-section-title {
        font-size: 1.25rem;
    }
}
