/* Base Styles & Variables */
:root {
  --primary-color: #9e5a38; /* Earthy terracotta */
  --secondary-color: #d4b483; /* Warm beige */
  --accent-color: #6b8e23; /* Olive green */
  --dark-color: #3a2d1f; /* Dark brown */
  --light-color: #f5f0e6; /* Cream */
  --text-color: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
  --section-padding: 80px 0;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #8a4d2f;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: #c5a06d;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--primary-color);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Featured Services */
.featured-services {
  padding: var(--section-padding);
  background-color: var(--white);
}

.featured-services h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding: 30px;
}

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

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

/* About Company */
.about-company {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.about-company .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-content p {
  margin-bottom: 20px;
}

/* Portfolio Showcase */
.portfolio-showcase {
  padding: var(--section-padding);
  background-color: var(--white);
}

.portfolio-showcase h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* Design Process */
.design-process {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.design-process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 40px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.client-info {
  margin-top: 20px;
}

.client-info h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.prev-testimonial,
.next-testimonial {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-question h3 {
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--white);
}

.cta-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-image {
  flex: none !important;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 0;
}

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

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact address p {
  margin-bottom: 10px;
}

.footer-contact a {
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.legal-links a {
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--secondary-color);
}

/* About Page Styles */
.about-hero {
  padding: 180px 0 100px;
  background-color: var(--light-color);
}

.about-hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-hero-content {
  flex: 1;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.about-hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-message {
  padding: var(--section-padding);
  background-color: var(--white);
}

.founder-message .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-content {
  flex: 1;
}

.founder-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.founder-content blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.founder-content p {
  font-weight: 600;
  color: var(--primary-color);
}

.signature {
  margin-top: 20px;
  width: 150px;
}

.timeline-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 60px);
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.team-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.position {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.bio {
  color: var(--text-light);
  margin-bottom: 15px;
}

.craftsmanship-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.craftsmanship-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.craftsmanship-content {
  flex: 1;
}

.craftsmanship-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.craftsmanship-content p {
  margin-bottom: 20px;
}

.craft-list {
  margin-bottom: 30px;
}

.craft-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.craft-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.craftsmanship-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.philosophy-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.philosophy-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.philosophy-card {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-10px);
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-icon img {
  width: 40px;
  height: 40px;
}

.philosophy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.awards-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.awards-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.awards-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.award {
  display: none;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.award.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.award-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.award-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.awards-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.award-dots {
  display: flex;
  gap: 10px;
}

.award-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
}

.award-dots .dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.prev-award,
.next-award {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
}

.prev-award:hover,
.next-award:hover {
  color: var(--primary-color);
}

.about-cta {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Page Styles */
.pricing-hero {
  padding: 180px 0 100px;
  text-align: center;
  background-color: var(--light-color);
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.pricing-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-tabs-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-btn:hover:not(.active) {
  color: var(--dark-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.pricing-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-features ul {
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.sale-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.sale-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.sale-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.sale-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 1;
}

.sale-content {
  padding: 30px;
}

.sale-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.sale-description {
  margin-bottom: 20px;
  color: var(--text-light);
}

.price-container {
  margin-bottom: 20px;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 10px;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.sale-features {
  margin-bottom: 25px;
}

.sale-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.sale-features li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--primary-color);
}

.btn-sale {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-sale:hover {
  background-color: #5a7a1d;
  transform: translateY(-3px);
}

.materials-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.materials-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.material-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.material-card:hover {
  transform: translateY(-10px);
}

.material-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.material-card:hover .material-image img {
  transform: scale(1.1);
}

.material-info {
  padding: 20px;
}

.material-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.material-info p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.price-range {
  font-weight: 600;
  color: var(--primary-color);
}

.cost-factors {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.cost-factors .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.cost-content {
  flex: 1;
}

.cost-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.cost-content p {
  margin-bottom: 20px;
}

.factor-list {
  margin-bottom: 30px;
}

.factor-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.factor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.cost-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.payment-plans {
  padding: var(--section-padding);
  background-color: var(--white);
}

.payment-plans h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.plan-card {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-icon img {
  width: 40px;
  height: 40px;
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.plan-card ul {
  text-align: left;
  margin-bottom: 20px;
}

.plan-card li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.plan-card li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--primary-color);
}

.consultation-cta {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--white);
}

.consultation-cta .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Services Page Styles */
.services-hero {
  padding: 180px 0 100px;
  background-color: var(--light-color);
}

.services-hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.services-nav {
  padding: 20px 0;
  background-color: var(--white);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.service-link {
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 30px;
  background-color: var(--light-color);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.service-link:hover,
.service-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-section {
  padding: var(--section-padding);
}

.service-section.alt {
  background-color: var(--light-color);
}

.service-section .container {
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
}
.img-logo {
  height: 45px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.service-details {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.service-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-content {
  flex: 1;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature p {
  color: var(--text-light);
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item p {
  padding: 15px;
  text-align: center;
  background-color: var(--white);
  font-weight: 500;
}

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

.type-card {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.type-card:hover {
  transform: translateY(-10px);
}

.type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.type-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.type-card p {
  color: var(--text-light);
}

.service-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.example-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.example-card img {
  width: 150px;
  height: 100%;
  object-fit: cover;
}

.example-content {
  padding: 20px;
  flex: 1;
}

.example-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.example-content p {
  color: var(--text-light);
}

.renovation-process {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.renovation-process h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

.renovation-process ol {
  max-width: 600px;
  margin: 0 auto;
}

.renovation-process li {
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.renovation-process li::before {
  content: attr(value);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

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

.option-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-10px);
}

.option-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.option-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-process {
  padding: var(--section-padding);
  background-color: var(--white);
}

.service-process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-visual {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.process-stage {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.process-arrow {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 40px;
}

.stage-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.stage-icon img {
  width: 50px;
  height: 50px;
}

.process-stage h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.process-stage p {
  color: var(--text-light);
}

.service-cta {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--white);
}

.service-cta .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Contact Page Styles */
.contact-hero {
  padding: 180px 0 100px;
  background-color: var(--light-color);
}

.contact-hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-methods {
  padding: var(--section-padding);
  background-color: var(--white);
}

.contact-methods .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-card a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-form-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.contact-form-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.form-container {
  flex: 1;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(158, 90, 56, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox {
  margin-right: 10px;
}

.privacy {
  font-size: 0.9rem;
}

.privacy a {
  color: var(--primary-color);
  font-weight: 500;
}

.form-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.studio-tour {
  padding: var(--section-padding);
  background-color: var(--white);
}

.studio-tour h2 {
  text-align: center;
  margin-bottom: 60px;
}

.tour-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.tour-video {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-info {
  flex: 1;
}

.tour-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.tour-info p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.tour-info ul {
  margin-bottom: 30px;
}

.tour-info li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.tour-info li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--primary-color);
}

.contact-faq {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
}
.faq-question::after {
  content: '▼';
  position: absolute;
  right: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: white;
}

.faq-question h3 {
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.map-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 400px;
}

.map-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.map-overlay address {
  margin-bottom: 20px;
  font-style: normal;
}

.team-contact {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.team-contact h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-info .position {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.member-info p {
  margin-bottom: 10px;
}

.member-info a {
  color: var(--primary-color);
  font-weight: 500;
}

/* Privacy Policy & Terms Pages */
.privacy-hero,
.terms-hero {
  padding: 180px 0 100px;
  text-align: center;
  background-color: var(--light-color);
}

.privacy-hero h1,
.terms-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.privacy-hero p,
.terms-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.privacy-content,
.terms-content {
  padding: var(--section-padding);
  background-color: var(--white);
}

.privacy-section,
.terms-section {
  margin-bottom: 60px;
}

.privacy-section h2,
.terms-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.privacy-section h2::after,
.terms-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.privacy-section p,
.terms-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.privacy-section ul,
.terms-section ul,
.privacy-section ol,
.terms-section ol {
  margin-bottom: 20px;
  padding-left: 40px;
}

.privacy-section li,
.terms-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy-section address,
.terms-section address {
  font-style: normal;
  margin-top: 30px;
}

.privacy-section address p,
.terms-section address p {
  margin-bottom: 10px;
}

/* Thanks Page */
.thanks-hero {
  padding: 180px 0 100px;
  text-align: center;
  background-color: var(--light-color);
}

.thanks-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.thanks-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
  padding: var(--section-padding);
  background-color: var(--white);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.wait-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.wait-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.wait-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.wait-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wait-options {
  flex: 1;
}

.wait-options h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.wait-options p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.wait-options ul {
  margin-bottom: 30px;
}

.wait-options li {
  margin-bottom: 15px;
}

.wait-options a {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.wait-options a:hover {
  padding-left: 5px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
}

.urgent-section {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.urgent-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.urgent-phone {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.urgent-phone a {
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-content h1,
  .about-hero-content h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-year {
    margin-bottom: 20px;
    font-size: 14px;
    height: 40px;
    width: 60px;
  }

  .timeline-content {
    width: 100%;
    margin-left: 60px;
  }
}

@media (max-width: 768px) {
  .tabs-header {
    flex-direction: column;
  }
  .service-links {
    display: none;
  }
  .about-hero .container {
    flex-direction: column;
  }
  .cta-section .container {
    flex-direction: column;
  }
  :root {
    --section-padding: 50px 0;
    --header-height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1000;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .burger-menu {
    display: flex;
  }

  .hero .container,
  .about-company .container,
  .founder-message .container,
  .craftsmanship-section .container,
  .cost-factors .container,
  .consultation-cta .container,
  .services-hero .container,
  .service-details,
  .contact-hero .container,
  .contact-form-section .container,
  .tour-content,
  .wait-content {
    flex-direction: column;
  }

  .hero-content,
  .about-content,
  .founder-content,
  .craftsmanship-content,
  .cost-content,
  .cta-content,
  .service-content,
  .tour-info,
  .wait-options {
    padding-right: 0;
    margin-bottom: 40px;
  }

  /* .hero-image,
  .about-image,
  .founder-image,
  .craftsmanship-gallery,
  .cost-image,
  .cta-image,
  .service-image,
  .tour-video,
  .wait-image {
    width: 100%;
  } */

  .service-features {
    grid-template-columns: 1fr;
  }

  .process-visual {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1,
  .about-hero-content h1,
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 40px 0;
  }

  .btn {
    padding: 10px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-title::after {
    width: 40px;
    height: 3px;
  }

  .hero-content h1,
  .about-hero-content h1,
  .contact-hero h1 {
    font-size: 1.8rem;
  }

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

  .featured-badge {
    top: 10px;
    right: 10px;
  }

  .example-card {
    flex-direction: column;
  }

  .example-card img {
    width: 100%;
    height: 200px;
  }

  .map-overlay {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

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

.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;
}

.hidden {
  display: none;
}

.service-icon,
.philosophy-icon {
  font-size: 50px;
}

.bb {
  border: 1px white solid;
}
