/* CSS Variables */
:root {
  --primary-color: #8B6F47;
  --primary-dark: #6B5139;
  --primary-light: #A68B5B;
  --secondary-color: #2D2D2D;
  --accent-color: #D4A574;
  --text-color: #2D2D2D;
  --text-light: #666;
  --text-lighter: #999;
  --bg-color: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-alt: #F5F5F5;
  --border-color: #E5E5E5;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 2rem;
  --font-4xl: 2.5rem;
  --font-5xl: 3rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: var(--font-base);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 { font-size: var(--font-4xl); }
h2 { font-size: var(--font-3xl); }
h3 { font-size: var(--font-2xl); }
h4 { font-size: var(--font-xl); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* 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 var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-text h1 {
  font-size: var(--font-5xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: var(--font-xl);
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--font-base);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  top: 10%;
  right: 20%;
  animation: float 6s ease-in-out infinite 2s;
}

.floating-card:nth-child(3) {
  bottom: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite 4s;
}

.card-content h3 {
  font-size: var(--font-3xl);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-light);
  font-size: var(--font-sm);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

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

.section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-lead {
  text-align: center;
  font-size: var(--font-lg);
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Modern Cards */
.modern-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.modern-card.clickable-service {
  cursor: pointer;
}

.modern-card.clickable-service:hover {
  border-color: var(--primary-color);
}

.modern-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.modern-card-header h3 {
  margin: 0;
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-color);
}

.modern-card-price {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: var(--font-xs);
  white-space: nowrap;
}

.modern-card-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.action-text {
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--font-sm);
}

.btn-pay {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-sm);
}

.btn-pay:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.card-icon {
  font-size: var(--font-2xl);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-note {
  font-size: var(--font-xs);
  color: var(--text-lighter);
  margin-top: 1rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-heavy);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  margin: 0;
  color: var(--text-color);
  font-size: var(--font-2xl);
}

.modal-close {
  background: none;
  border: none;
  font-size: var(--font-3xl);
  color: var(--text-lighter);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-color);
}

.modal-body {
  padding: 2rem;
}

.service-detail {
  margin-bottom: 2rem;
}

.service-price {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: var(--font-lg);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-description,
.service-features,
.service-duration,
.service-deliverables {
  margin-bottom: 1.5rem;
}

.service-features h4,
.service-duration h4,
.service-deliverables h4 {
  color: var(--text-color);
  font-size: var(--font-lg);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-features ul,
.service-deliverables ul {
  list-style: none;
  padding: 0;
}

.service-features li,
.service-deliverables li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

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

.service-note {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.service-note em {
  color: var(--text-light);
  font-style: normal;
}

.calendly-container h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: var(--font-xl);
}

.calendly-placeholder {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.calendly-placeholder p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.calendly-placeholder strong {
  color: var(--text-color);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.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: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .navbar-nav {
    gap: 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: var(--font-3xl);
  }
  
  .hero .lead {
    font-size: var(--font-lg);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    max-width: 300px;
  }
  
  h2 {
    font-size: var(--font-3xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .modern-card {
    padding: 2rem;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 2rem;
    width: 95%;
  }
  
  .floating-card {
    padding: 1.5rem;
  }
  
  .floating-card .card-content h3 {
    font-size: var(--font-2xl);
  }
}

/* Contact Form Styles */
.contact-form-container {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-form-container h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: var(--font-xl);
}

.interest-form {
  max-width: 600px;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
  font-size: var(--font-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-base);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

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

.form-actions {
  margin-top: 1.5rem;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-size: var(--font-sm);
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding-top: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
}


/* Payment button styling */
.btn-payment {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.btn-payment:hover {
    background: #218838;
}

.btn-payment:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .btn-payment {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}

