:root {
  --luxury-gold: #a08c5b;
  --luxury-brown: #8B7B4A;
  --luxury-bg: #f8f5ef;
  --luxury-white: #fff;
  --luxury-accent: #B8860B;
}

    * { 
      box-sizing: border-box; 
      margin: 0;
      padding: 0;
    }
    
    body { 
      font-family: 'Georgia', serif;
      line-height: 1.6;
      color: var(--luxury-brown);
      background: var(--luxury-bg);
    }
    
    .modal {
      display: flex; 
      position: fixed; 
      z-index: 1000;
      left: 0; 
      top: 0; 
      width: 70%; 
      height: 80%;
      background: rgba(0, 0, 0, 0.7); 
      backdrop-filter: blur(5px);
      justify-content: center; 
      align-items: center;
      animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .modal-content {
      background: var(--luxury-white);
      width: 70%; 
      max-width: 550px; 
      padding: 2.5rem;
      border-radius: 20px; 
      box-shadow: 0 25px 60px rgba(0,0,0,0.2);
      max-height: 90vh; 
      overflow-y: auto;
      position: relative;
      animation: slideUp 0.4s ease-out;
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(30px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .form-header {
      text-align: center;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--luxury-gold);
      padding-bottom: 1.5rem;
    }
    
    .form-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--luxury-gold);
      background: none;
      margin-bottom: 0.5rem;
    }
    
    .form-header p {
      color: var(--luxury-brown);
      font-size: 1.1rem;
    }
    
    .progress-bar {
      width: 100%;
      height: 6px;
      background: #e0e0e0;
      border-radius: 3px;
      margin-bottom: 2rem;
      overflow: hidden;
    }
    
    .progress-fill {
      height: 100%;
      background: var(--luxury-gold);
      border-radius: 3px;
      transition: width 0.3s ease;
    }
    
    .form-page { 
      display: none;
      animation: fadeInUp 0.4s ease-out;
    }
    
    .form-page.active { 
      display: block; 
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    span { 
      display: block; 
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--luxury-brown);
      font-size: 1rem;
    }
    
    input[type="text"], 
    input[type="tel"], 
    input[type="email"] {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: var(--luxury-white);
      color: var(--luxury-brown);
    }
    
    input[type="text"]:focus, 
    input[type="tel"]:focus, 
    input[type="email"]:focus {
      outline: none;
      border-color: var(--luxury-gold);
      box-shadow: 0 0 0 3px rgba(160, 140, 91, 0.1);
      transform: translateY(-2px);
    }
    
    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-top: 0.5rem;
    }
    
    .radio-option {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: var(--luxury-white);
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .radio-option:hover {
      border-color: var(--luxury-gold);
      background: #fdfbf7;
      transform: translateY(-2px);
    }
    
    .radio-option input[type="radio"] {
      margin-right: 12px;
      width: 20px;
      height: 20px;
      accent-color: var(--luxury-gold);
    }
    
    .radio-option.selected {
      border-color: var(--luxury-gold);
      background: #fdfbf7;
      box-shadow: 0 5px 15px rgba(160, 140, 91, 0.08);
    }
    
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--luxury-white);
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }
    
    .checkbox-group:hover {
      border-color: var(--luxury-gold);
      background: #fdfbf7;
    }
    
    .checkbox-group input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: var(--luxury-gold);
      margin-top: 2px;
    }
    
    .checkbox-group.checked {
      border-color: var(--luxury-gold);
      background: #fdfbf7;
      box-shadow: 0 5px 15px rgba(160, 140, 91, 0.08);
    }
    
    .buttons { 
      display: flex; 
      justify-content: space-between; 
      margin-top: 2.5rem;
      gap: 1rem;
    }
    
    button { 
      padding: 14px 28px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 120px;
    }
    
    .btn-primary {
      background: var(--luxury-gold);
      color: var(--luxury-white);
    }
    
    .btn-primary:hover {
      background: var(--luxury-brown);
      color: var(--luxury-white);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--luxury-gold);
      border: 2px solid var(--luxury-gold);
    }
    
    .btn-secondary:hover {
      background: var(--luxury-gold);
      color: var(--luxury-white);
      transform: translateY(-3px);
    }
    
    button:disabled { 
      background: #ccc;
      color: #666;
      cursor: not-allowed;
      transform: none;
    }
    
    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #999;
      cursor: pointer;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .close-btn:hover {
      background: #f0f0f0;
      color: #333;
    }
    
    .page-indicator {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #666;
      font-size: 0.9rem;
    }
    
    .page-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 1.5rem;
    }
    
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e0e0e0;
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: #D4AF37;
      transform: scale(1.2);
    }
    
    #thankYouMessage {
      text-align: center;
      padding: 3rem 2rem;
      background: linear-gradient(135deg, #fff, #fdfbf7);
      border-radius: 20px;
      animation: fadeInUp 0.6s ease-out;
    }
    
    #thankYouMessage h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #8B4513, #B8860B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    #thankYouMessage p {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 2rem;
    }
    
    .success-icon {
      width: 80px;
      height: 80px;
      background: var(--luxury-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      color: var(--luxury-white);
      animation: bounce 0.6s ease-out;
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }
    
    .consultation-form-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 0;
      width: 100%;
    }

    .consultation-form-content {
      width: 70vw;
      max-width: none;
      margin: 0 auto;
      background: var(--luxury-white);
      border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.08);
      padding: 1.2rem 1.5rem;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10px;
      }
      
      .form-header h2 {
        font-size: 1.8rem;
      }
      
      .buttons {
        flex-direction: column;
        gap: 1rem;
      }
      
      button {
        width: 100%;
      }
      
      .radio-group {
        gap: 0.6rem;
      }
      
      .radio-option {
        padding: 10px 12px;
      }
    }
    
    @media (max-width: 480px) {
      .modal-content {
        width: 98%;
        padding: 1.5rem;
      }
      
      .form-header h2 {
        font-size: 1.6rem;
      }
      
      .form-header p {
        font-size: 1rem;
      }
      
      input[type="text"], 
      input[type="tel"], 
      input[type="email"] {
        padding: 12px 14px;
      }
      
      .radio-option {
        padding: 8px 10px;
      }
      
      button {
        padding: 12px 24px;
        font-size: 0.9rem;
      }
    }