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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 25%, #fd79a8 50%, #a29bfe 75%, #fdcb6e 100%);
  background-attachment: fixed;
}

/* Header e Navigation */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000; transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  font-size: 2rem; font-weight: bold;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s ease; position: relative; }
.nav-menu a:hover { color: #667eea; }

.nav-buttons { display: flex; gap: 1rem; }

.btn-nav {
  padding: 0.7rem 1.5rem; border: none; border-radius: 25px; text-decoration: none;
  font-weight: 600; transition: all 0.3s ease; cursor: pointer; font-size: 0.9rem;
}
.btn-nav.primary { background: linear-gradient(45deg, #667eea, #764ba2); color: white; }
.btn-nav.secondary { background: transparent; color: #667eea; border: 2px solid #667eea; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 0 2rem; position: relative;
}
.hero-content {
  max-width: 900px; background: rgba(255, 255, 255, 0.9); padding: 4rem 3rem;
  border-radius: 20px; backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero h1 {
  font-size: 4rem; margin-bottom: 1.5rem; font-weight: 800; animation: fadeInUp 1s ease;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.4rem; margin-bottom: 2.5rem; color: #555; animation: fadeInUp 1s ease 0.3s both; }

.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeInUp 1s ease 0.6s both; }

.btn {
  padding: 1.2rem 2.5rem; border: none; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem;
  transition: all 0.3s ease; cursor: pointer; display: inline-block;
}
.btn-primary { background: linear-gradient(45deg, #667eea, #764ba2); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4); }
.btn-secondary { background: transparent; color: #667eea; border: 2px solid #667eea; }
.btn-secondary:hover { background: #667eea; color: white; transform: translateY(-3px); }

/* Stats in hero */
.hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; animation: fadeInUp 1s ease 0.9s both; }
.stat-item { text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: bold; color: #667eea; display: block; }
.stat-text { font-size: 0.9rem; color: #666; margin-top: 0.5rem; }

/* Why Choose Us */
.why-choose { padding: 6rem 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 {
  font-size: 3rem; color: #333; margin-bottom: 1rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-title p { font-size: 1.2rem; color: #666; max-width: 600px; margin: 0 auto; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; }
.benefit-card {
  background: white; padding: 3rem 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center; transition: transform 0.3s ease;
}
.benefit-card:hover { transform: translateY(-10px); }
.benefit-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.benefit-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }
.benefit-card p { color: #666; line-height: 1.7; }

/* Services */
.services { padding: 6rem 0; background: rgba(255, 255, 255, 0.8); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card {
  background: white; padding: 2.5rem 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); text-align: center;
  transition: all 0.3s ease; border: 1px solid rgba(102, 126, 234, 0.1); cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); border-color: #667eea; }
.service-emoji { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: #333; font-weight: 600; }
.service-details { color: #666; font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
.service-count { background: linear-gradient(45deg, #667eea, #764ba2); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; display: inline-block; margin-bottom: 1rem; }

/* Category Headers */
.category-header {
  background: linear-gradient(45deg, #667eea, #764ba2); color: white; padding: 1rem 2rem; border-radius: 10px;
  margin: 3rem 0 2rem 0; text-align: center; font-size: 1.3rem; font-weight: 600;
}

/* Appointment Section */
.appointment-section { padding: 6rem 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); }
.appointment-content {
  max-width: 800px; margin: 0 auto; background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-container { margin-bottom: 3rem; }
.progress-bar {
  display: flex; justify-content: space-between; align-items: center; position: relative; margin-bottom: 2rem;
}
.progress-bar::before {
  content: ''; position: absolute; top: 20px; left: 20px; right: 20px; height: 2px; background: #e0e0e0; z-index: 1;
}
.progress-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%; background: #e0e0e0; color: #666; display: flex; align-items: center; justify-content: center;
  font-weight: bold; margin-bottom: 0.5rem; transition: all 0.3s ease;
}
.progress-step.active .step-number { background: linear-gradient(45deg, #667eea, #764ba2); color: white; }
.progress-step.completed .step-number { background: #28a745; color: white; }
.step-label { font-size: 0.85rem; color: #666; font-weight: 500; }
.progress-step.active .step-label { color: #667eea; font-weight: 600; }

/* Form Steps */
.form-step { display: none; animation: fadeInUp 0.5s ease; }
.form-step.active { display: block; }
.form-step h3 { color: #333; margin-bottom: 2rem; text-align: center; font-size: 1.5rem; }

.appointment-form { display: grid; gap: 1.5rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group label { font-weight: 600; color: #333; margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
  padding: 1rem; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; transition: all 0.3s ease; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #667eea; background: white; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form Navigation */
.form-navigation { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.prev-btn, .next-btn, .submit-btn {
  padding: 1rem 2rem; border: none; border-radius: 10px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; min-width: 120px;
}
.prev-btn { background: #6c757d; color: white; }
.prev-btn:hover { background: #5a6268; transform: translateY(-2px); }
.next-btn, .submit-btn { background: linear-gradient(45deg, #667eea, #764ba2); color: white; margin-left: auto; }
.next-btn:hover, .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4); }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

/* Success/Error Messages */
.message { padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; font-weight: 600; text-align: center; display: none; }
.message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Stats Section */
.stats-section { padding: 5rem 0; background: rgba(255, 255, 255, 0.95); text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-top: 3rem; }
.stat-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }
.stat-card .number {
  font-size: 2.5rem; font-weight: bold; background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-card .label { color: #666; margin-top: 0.5rem; }

/* CTA Section */
.cta-section { padding: 5rem 0; background: rgba(255, 255, 255, 0.9); text-align: center; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Page Header */
.page-header {
  padding: 8rem 0 4rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Active Navigation */
.nav-menu a.active {
  color: #667eea;
  font-weight: 600;
}

/* Services Preview */
.services-preview {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.9);
}
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.preview-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.preview-card:hover {
  transform: translateY(-5px);
}
.preview-card .service-emoji {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.preview-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}
.preview-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Portfolio Styles */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: #667eea;
  background: #667eea;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-5px);
}
.portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}
.portfolio-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.portfolio-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.portfolio-category {
  background: #667eea;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.95);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.testimonial-content {
  margin-bottom: 1.5rem;
}
.testimonial-content p {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}
.testimonial-author h4 {
  color: #333;
  margin-bottom: 0.3rem;
}
.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.95);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question h3 {
  color: #333;
  font-size: 1.1rem;
  margin: 0;
}
.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}
.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.faq-answer ul,
.faq-answer ol {
  color: #666;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Process Timeline */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}
.timeline-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.timeline-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  text-align: center;
  padding: 2rem;
}
.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.process-step h3 {
  color: #333;
  margin-bottom: 1rem;
}
.process-step p {
  color: #666;
  line-height: 1.6;
}

/* Contact Styles */
.contact-info-main {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.95);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-details {
  margin-top: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-text h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.contact-text p {
  color: #666;
  margin-bottom: 0.3rem;
}
.contact-text small {
  color: #999;
  font-size: 0.85rem;
}
.contact-image img {
  width: 100%;
  border-radius: 15px;
}

/* Contact Form */
.contact-form-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.9);
}
.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.checkbox-group {
  margin-top: 1rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #666;
}
.checkbox-label input[type="checkbox"] {
  margin: 0;
}

/* Quick Contact */
.quick-contact {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.8);
}
.quick-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.quick-contact-method {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.quick-contact-method:hover {
  transform: translateY(-5px);
  color: #333;
}
.quick-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.quick-contact-method h3 {
  margin-bottom: 0.5rem;
  color: #667eea;
}
.quick-contact-method p {
  color: #666;
  font-size: 0.9rem;
}

/* Business Hours */
.business-hours {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.95);
}
.business-hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hours-schedule {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}
.hours-day {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.hours-day:last-child {
  border-bottom: none;
}
.day {
  font-weight: 600;
  color: #333;
}
.time {
  color: #667eea;
  font-weight: 500;
}
.emergency-contact {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}
.emergency-contact h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.emergency-contact p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}
.hours-image img {
  width: 100%;
  border-radius: 15px;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.9);
}
.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.location-features {
  margin-top: 2rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.feature-icon {
  font-size: 1.2rem;
}
.map-placeholder {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}
.map-info h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.map-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.coordinates {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Support Section */
.support-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.9);
}
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.support-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.support-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.support-card h3 {
  color: #333;
  margin-bottom: 1rem;
}
.support-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Knowledge Base */
.knowledge-base {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.8);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-5px);
}
.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.resource-card h3 {
  color: #333;
  margin-bottom: 1rem;
}
.resource-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.contact-method .contact-icon {
  font-size: 2.5rem;
  width: auto;
  height: auto;
  background: none;
  margin-bottom: 1rem;
  display: block;
}
.contact-method h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.contact-method p {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-method small {
  color: #999;
  font-size: 0.85rem;
}

/* Newsletter */
.newsletter {
  background: rgba(51, 51, 51, 0.9); color: white; padding: 4rem 0; text-align: center; backdrop-filter: blur(10px);
}
.newsletter h3 { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter p { margin-bottom: 2.5rem; opacity: 0.9; font-size: 1.1rem; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 1rem; }
.newsletter-form input {
  flex: 1; padding: 1.2rem; border: none; border-radius: 25px; font-size: 1rem;
}
.newsletter-form button {
  padding: 1.2rem 2rem; background: linear-gradient(45deg, #667eea, #764ba2); color: white; border: none;
  border-radius: 25px; font-weight: bold; cursor: pointer; transition: all 0.3s ease;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4); }

/* Footer */
.footer { background: rgba(34, 34, 34, 0.95); color: white; padding: 4rem 0 2rem; backdrop-filter: blur(10px); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h4 {
  font-size: 1.3rem; margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-section p, .footer-section a { color: #ccc; text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
.footer-section a:hover { color: #667eea; }
.footer-bottom { border-top: 1px solid #444; padding-top: 2rem; text-align: center; color: #999; }
.footer-slogan { font-style: italic; color: #667eea; margin-bottom: 1rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .nav-container { padding: 1rem; }
  .container { padding: 0 1rem; }
  .hero-content { padding: 2rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .nav-buttons { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .appointment-content { padding: 2rem 1.5rem; }
  .progress-bar { flex-direction: column; gap: 1rem; }
  .progress-bar::before { display: none; }
  .form-navigation { flex-direction: column; }
  .form-navigation .next-btn, .form-navigation .submit-btn { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title h2 { font-size: 2rem; }
}

/* New Hero Section Styles */
.new-hero-section {
  padding: 8rem 0 6rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.new-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.new-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #667eea;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.new-hero-text p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.new-hero-text strong {
  color: #f5576c;
  font-weight: 800;
}

.new-hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.new-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.new-hero-image img:hover {
  transform: scale(1.05);
}

/* Company About Section Styles */
.company-about-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.company-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.company-about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.company-about-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  background: linear-gradient(45deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-about-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.company-about-buttons {
  margin-top: 2rem;
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
  .new-hero-content,
  .company-about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .new-hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .company-about-text h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .new-hero-buttons {
    justify-content: center;
  }
  
  .company-about-buttons {
    text-align: center;
  }

  /* Mobile responsive for new sections */
  .page-header h1 { font-size: 2.2rem; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .business-hours-content { grid-template-columns: 1fr; }
  .location-info { grid-template-columns: 1fr; }
  .quick-contact-methods { grid-template-columns: repeat(2, 1fr); }
  .support-options { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { flex-direction: column; text-align: center; }
  .contact-form-container { padding: 2rem; }
  .process-timeline .timeline-item { gap: 1rem; }
  .timeline-icon { margin: 0 auto; }
}