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

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

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 10px;
}

/* Header Styles */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}

.logo h1 {
  font-size: 32px;
  color: #228B22;
  font-weight: 700;
  margin-bottom: 2px;
}

.logo .tagline {
  font-size: 12px;
  color: #2F4F4F;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #FF8400;
  padding: 10px 18px;
  margin: 0 5px;
  border: #ff8400;
  border: 2px solid #FF8400;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background-color: #000000;
  color: #fff;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0px;
  background: #228B22;
  transition: width 0.0s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-number, .service-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2F4F4F;
}

.cta-button {
  background: #FF8400;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: #1a5f1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.cta-button.secondary {
  background: #FF8400;
  color: #FFFFFF;
  border: 2px solid #FF8400;
}

.cta-button.secondary:hover {
  background: #000000;
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* Page Styles */
.page {
  padding-top: 80px;
}

.page-header {
  background: linear-gradient(135deg, #228B22 0%, #2F4F4F 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;

}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-image {
    background-image: url('coverphoto.png');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust height as needed */
    width: 100%;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent; /* optional dark overlay */
}


.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.8) 0%, rgba(47, 79, 79, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #FF8400;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  color: #FF8400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FF8400;
  padding: 16px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* Services Overview */
.services-overview {
  padding: 100px 0;
  background: #f8fafc;
}

.services-overview h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: #228B22;
  background: #f0f9ff;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* Why Choose Us */
.why-choose {
  padding: 100px 0;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #2F4F4F;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit svg {
  color: #228B22;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2F4F4F;
}

.benefit p {
  color: #64748b;
  line-height: 1.6;
}

.why-choose-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #228B22 0%, #2F4F4F 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-contact a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

/* Services Detailed */
.services-detailed {
  padding: 80px 0;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detailed.reverse {
  direction: rtl;
}

.service-detailed.reverse > * {
  direction: ltr;
}

.service-icon-large {
  color: #228B22;
  margin-bottom: 24px;
}

.service-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2F4F4F;
}

.service-text p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-text ul {
  list-style: none;
  margin-bottom: 32px;
}

.service-text li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 24px;
}

.service-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #228B22;
  font-weight: bold;
}

.service-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #228B22;
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Specialty Services */
.specialty-services {
  padding: 80px 0;
  background: #f8fafc;
}

.specialty-services h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.specialty-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.specialty-card svg {
  color: #228B22;
  margin-bottom: 20px;
}

.specialty-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

/* Pricing Tables */
.pricing-tables {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  border: 2px solid #228B22;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #228B22;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.currency {
  font-size: 20px;
  color: #228B22;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: #228B22;
}

.period {
  font-size: 16px;
  color: #64748b;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features svg {
  color: #228B22;
}

/* About Page */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 32px;
  color: #2F4F4F;
}

.about-text p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #228B22;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Values Section */
.values {
  padding: 80px 0;
  background: #f8fafc;
}

.values h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card svg {
  color: #228B22;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

/* Team Section */
.team {
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2F4F4F;
}

.team-member p:nth-child(3) {
  color: #228B22;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2F4F4F;
}

.contact-methods {
  margin-top: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method svg {
  color: #228B22;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-method h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #2F4F4F;
}

.contact-method p {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.contact-method span {
  font-size: 14px;
  color: #64748b;
}

/* Contact Form */
.contact-form {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #2F4F4F;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2F4F4F;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #228B22;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8fafc;
}

.map-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
  color: #2F4F4F;
}

.map-placeholder {
  background: white;
  padding: 80px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder svg {
  color: #228B22;
  margin-bottom: 20px;
}

.map-placeholder h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

/* FAQ Page */
.faq-content {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #2F4F4F;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #228B22;
}

.faq-answer {
  padding: 0 0 24px 0;
  color: #64748b;
  line-height: 1.6;
  display: none;
}

.faq-answer.open {
  display: block;
}

.faq-cta {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.faq-cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #2F4F4F;
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #64748b;
}

.faq-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer */
.footer {
  background: #2F4F4F;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: white;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

.contact-item svg {
  color: #228B22;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #228B22;
}

.review-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 8px;
}

.review-highlight p {
  font-style: italic;
  margin-bottom: 8px;
}

.review-highlight span {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid #475569;
  padding-top: 20px;
  text-align: center;
  color: #cbd5e1;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.floating-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-options.expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #2F4F4F;
  padding: 12px 16px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-option:hover {
  background: #FF8400;
  color: white;
  transform: translateX(-8px);
}

.floating-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FF8400;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-toggle:hover {
  background: #FF8400;
  transform: scale(1.1);
}

/* Apartment Pricing */
.apartment-pricing {
  padding: 80px 0;
  background: #f8fafc;
}

.apartment-pricing h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.apartment-tier {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.apartment-tier h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #2F4F4F;
}

.apartment-tier p {
  color: #64748b;
  margin-bottom: 20px;
}

.apartment-price {
  font-size: 32px;
  font-weight: 700;
  color: #228B22;
  margin-bottom: 24px;
}

.apartment-tier ul {
  list-style: none;
  text-align: left;
}

.apartment-tier li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 24px;
}

.apartment-tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #228B22;
  font-weight: bold;
}

/* Pricing Notes */
.pricing-notes {
  padding: 80px 0;
}

.pricing-notes h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F4F4F;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.note {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
}

.note h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2F4F4F;
}

.note ul {
  list-style: none;
}

.note li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 24px;
}

.note li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #228B22;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.nav-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-actions {
    flex-direction: column;
    gap: 12px;
  }

  .contact-info {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .service-detailed {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detailed.reverse {
    direction: ltr;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .faq-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .floating-contact {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .apartment-grid {
    grid-template-columns: 1fr;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-card,
.value-card,
.pricing-card,
.specialty-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Schema Markup Styles */
.schema-markup {
  display: none;
}