:root {
  --primary: #e26a2c;
  --primary-dark: #c8561c;
  --secondary: #4d2c1d;
  --accent: #f67280;
  --light-bg: #fffaf5;
  --text: #333;
  --text-light: #fcebdc;
  --gold: #d4af37;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --primary-gradient: linear-gradient(135deg, #e26a2c, #f67280);
  --gold-gradient: linear-gradient(to right, #d4af37, #f9d423);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--light-bg);
  scroll-behavior: smooth;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(226,106,44,0.1) 0%, rgba(226,106,44,0) 70%);
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
  z-index: -1;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

header {
  background-image: url('images/header-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(226, 106, 44, 0.8), rgba(77, 44, 29, 0.9));
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}


header h1, 
header p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.typing-text {
  border-right: 3px solid var(--gold);
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 30px;
  font-size: 1.5rem;
  animation: typing 3s steps(40) 1s 1 normal both,
             blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--gold) }
}

.cta-button {
  background-color: var(--secondary);
  color: white;
  padding: 18px 36px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

nav {
  background-color: var(--secondary);
  padding: 0 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.logo {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.logo i {
  color: var(--gold);
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 20px 15px;
  position: relative;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--gold);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

nav a:hover::after {
  width: 70%;
}

.container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 50px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 12px 12px 0 0;
}

h2 {
  color: var(--primary-dark);
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.3rem;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text);
}

/* Services Section */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.menu-box {
  border-radius: 20px;
  padding: 0;
  flex: 1;
  min-width: 320px;
  max-width: 360px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.menu-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.menu-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.menu-box:hover::before {
  opacity: 0.1;
}

.menu-box-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.menu-box-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.menu-icon {
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-box-content {
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  background: white;
}

.menu-box h3 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  color: white;
  position: relative;
  z-index: 2;
}

.menu-box ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.menu-box li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

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

.price-tag {
  background: white;
  color: var(--text);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  box-shadow: 0 3px 10px rgba(226, 106, 44, 0.3);
  border: 1px solid rgba(226, 106, 44, 0.2);
}

/* Process Section */
.how-we-work-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.how-step {
  background: white;
  border-radius: 20px;
  flex: 1 1 30%;
  min-width: 300px;
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(210, 180, 140, 0.2);
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.how-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.how-step:hover::before {
  opacity: 0.05;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(226, 106, 44, 0.05);
  font-family: 'Playfair Display', serif;
}

.how-step i {
  font-size: 2.5rem;
  margin-top: 5px;
  min-width: 40px;
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-step div {
  flex: 1;
}

.how-step h4 {
  margin: 0 0 15px;
  color: var(--secondary);
  font-size: 1.3rem;
}

/* Enhanced Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-text p, .contact-text a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-gradient);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

label {
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
}

input, textarea, select {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 1em;
  transition: var(--transition);
  background: #fafafa;
  font-family: 'Montserrat', sans-serif;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(226, 106, 44, 0.2);
}

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

button {
  background-color: var(--primary);
  color: white;
  padding: 18px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 106, 44, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--secondary);
  color: var(--text-light);
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold-gradient);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo i {
  color: var(--gold);
  margin-right: 10px;
}

.footer-description {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

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

.social-links a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.footer-contact {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.copyright {
  margin-top: 40px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 99;
  border: 2px solid white;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.1);
}

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

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 1s ease-in-out;
}

.animate-up {
  animation: slideUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .how-step {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }

  header .header-content {
    padding: 80px 20px;
  }

  .typing-text {
    font-size: 1.2rem;
  }

  .nav-container {
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    justify-content: center;
  }

  nav a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .container {
    padding: 40px 25px;
    margin: 40px auto;
  }

  h2 {
    font-size: 1.8rem;
  }

  .menu-box {
    min-width: 100%;
  }

  .how-step {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 60px 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  .header-content {
    padding: 60px 20px;
  }

  .container {
    padding: 30px 20px;
  }

  .menu-box-content {
    padding: 25px 20px;
  }

  .how-step {
    padding: 25px 20px;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
/* ---- Project Planner Styles ---- */
.project-hero {
  background: linear-gradient(135deg, rgba(226, 106, 44, 0.9), rgba(77, 44, 29, 0.9)), 
              url('../images/project-bg.jpg') center/cover no-repeat;
  min-height: 60vh;
}

.project-planner {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.planner-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.planner-step.active {
  display: block;
}

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

.mood-option {
  border: 2px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.mood-option:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.mood-option img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mood-option h3 {
  padding: 15px;
  text-align: center;
  color: var(--secondary);
}

.timeline-slider {
  margin: 40px 0;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--text);
}

/* Confirmation Animation */
.confirmation {
  text-align: center;
  padding: 60px;
  display: none;
}

.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/confetti.gif') center/cover;
  opacity: 0.3;
  z-index: -1;
}