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

   body {
       font-family: 'Inter', sans-serif;
       background: #0a0a0a;
       color: #fff;
       overflow-x: hidden;
   }

   h1,
   h2,
   h3 {
       font-family: 'Playfair Display', serif;
   }

   /* Navigation */
   nav {
       position: fixed;
       top: 0;
       width: 100%;
       z-index: 1000;
       padding: 1.5rem 5%;
       background: rgba(10, 10, 10, 0.95);
       backdrop-filter: blur(20px);
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

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

   .logo {
       font-size: 1.8rem;
       font-weight: 700;
       background: linear-gradient(135deg, #d4af37 0%, #f8e08e 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       letter-spacing: 2px;
       text-decoration: none;
   }

   /* Hero Section */
   .contact-hero {
       padding: 12rem 5% 5rem;
       background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
       text-align: center;
       position: relative;
   }

   .contact-hero::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
   }

   .contact-hero-content {
       position: relative;
       z-index: 1;
   }

   .contact-icon {
       font-size: 5rem;
       animation: pulse 2s ease-in-out infinite;
       margin-bottom: 1rem;
   }

   @keyframes pulse {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.1);
       }
   }

   .contact-hero-title {
       font-size: 4.5rem;
       font-weight: 700;
       margin-bottom: 1.5rem;
       background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       animation: fadeInUp 0.8s ease;
   }

   .contact-hero-subtitle {
       font-size: 1.3rem;
       color: rgba(255, 255, 255, 0.7);
       animation: fadeInUp 1s ease;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Contact Section */
   .contact-section {
       padding: 5rem 5%;
       max-width: 1400px;
       margin: 0 auto;
   }

   .contact-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       margin-bottom: 5rem;
   }

   /* Contact Form */
   .contact-form-container {
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 20px;
       padding: 3rem;
   }

   .form-title {
       font-size: 2.5rem;
       color: #d4af37;
       margin-bottom: 2rem;
   }

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

   .form-group label {
       display: block;
       margin-bottom: 0.8rem;
       font-weight: 600;
       color: #d4af37;
       font-size: 0.95rem;
       text-transform: uppercase;
       letter-spacing: 1px;
   }

   .form-group input,
   .form-group select,
   .form-group textarea {
       width: 100%;
       padding: 1.2rem;
       border-radius: 10px;
       border: 1px solid rgba(255, 255, 255, 0.2);
       background: rgba(255, 255, 255, 0.05);
       color: #fff;

       font-size: 1rem;
       transition: all 0.3s ease;
       font-family: 'Inter', sans-serif;
   }

     .form-group select option {
        background-color: #1e1e1e;
        /* Dark dropdown background */
        color: #fff;
        /* White text */
    }
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #d4af37;
       background: rgba(255, 255, 255, 0.08);
       box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
   }

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

   .form-group input::placeholder,
   .form-group textarea::placeholder {
       color: rgba(255, 255, 255, 0.4);
   }

   .btn {
       padding: 1.2rem 3rem;
       border: none;
       border-radius: 50px;
       font-size: 1.1rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 0.8rem;
   }

   .btn-primary {
       background: linear-gradient(135deg, #d4af37 0%, #f8e08e 100%);
       color: #0a0a0a;
       box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
       width: 100%;
   }

   .btn-primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
   }

   /* Contact Info */
   .contact-info-container {
       display: flex;
       flex-direction: column;
       gap: 2rem;
   }

   .info-card {
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 20px;
       padding: 2.5rem;
       transition: all 0.3s ease;
   }

   .info-card:hover {
       transform: translateY(-5px);
       border-color: #d4af37;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
   }

   .info-card-header {
       display: flex;
       align-items: center;
       gap: 1.5rem;
       margin-bottom: 1.5rem;
   }

   .info-icon {
       font-size: 3rem;
       width: 70px;
       height: 70px;
       background: rgba(212, 175, 55, 0.1);
       border: 2px solid #d4af37;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .info-card h3 {
       color: #d4af37;
       font-size: 1.8rem;
   }

   .info-card p {
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.8;
       font-size: 1.05rem;
   }

   .info-card a {
       color: #d4af37;
       text-decoration: none;
       transition: all 0.3s ease;
   }

   .info-card a:hover {
       color: #f8e08e;
       text-decoration: underline;
   }

   /* Quick Contact Buttons */
   .quick-contact {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       margin-top: 3rem;
   }

   .quick-btn {
       background: rgba(255, 255, 255, 0.03);
       border: 2px solid rgba(255, 255, 255, 0.1);
       border-radius: 15px;
       padding: 2rem;
       text-align: center;
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 1rem;
   }

   .quick-btn:hover {
       border-color: #d4af37;
       background: rgba(212, 175, 55, 0.1);
       transform: translateY(-5px);
   }

   .quick-btn .icon {
       font-size: 3rem;
   }

   .quick-btn h4 {
       color: #d4af37;
       font-size: 1.3rem;
   }

   .quick-btn p {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.95rem;
   }

   /* Map Section */
   .map-section {
       padding: 5rem 5%;
       background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
   }

   .map-container {
       max-width: 1400px;
       margin: 0 auto;
   }

   .section-title {
       font-size: 3rem;
       text-align: center;
       margin-bottom: 1rem;
       background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .section-subtitle {
       text-align: center;
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1rem;
       margin-bottom: 3rem;
   }

   .map-placeholder {
       width: 100%;
       height: 500px;
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 20px;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 1.5rem;
   }

   .map-placeholder .icon {
       font-size: 5rem;
       color: #d4af37;
   }

   .map-placeholder h3 {
       color: #d4af37;
       font-size: 2rem;
   }

   .map-placeholder p {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1rem;
   }

   /* FAQ Section */
   .faq-section {
       padding: 5rem 5%;
       max-width: 1000px;
       margin: 0 auto;
   }

   .faq-item {
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 15px;
       padding: 2rem;
       margin-bottom: 1.5rem;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .faq-item:hover {
       border-color: #d4af37;
       background: rgba(212, 175, 55, 0.05);
   }

   .faq-question {
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 1rem;
   }

   .faq-question h3 {
       color: #d4af37;
       font-size: 1.3rem;
   }

   .faq-toggle {
       font-size: 1.5rem;
       color: #d4af37;
       transition: transform 0.3s ease;
   }

   .faq-item.active .faq-toggle {
       transform: rotate(180deg);
   }

   .faq-answer {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease;
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.8;
   }

   .faq-item.active .faq-answer {
       max-height: 500px;
       margin-top: 1rem;
       padding-top: 1rem;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
   }

   /* Success Modal */
   .modal {
       display: none;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.9);
       z-index: 2000;
       align-items: center;
       justify-content: center;
   }

   .modal.active {
       display: flex;
   }

   .modal-content {
       background: #1a1a2e;
       padding: 3rem;
       border-radius: 20px;
       max-width: 500px;
       width: 90%;
       text-align: center;
       border: 1px solid #d4af37;
       animation: zoomIn 0.3s ease;
   }

   @keyframes zoomIn {
       from {
           transform: scale(0.8);
           opacity: 0;
       }

       to {
           transform: scale(1);
           opacity: 1;
       }
   }

   .modal-icon {
       font-size: 5rem;
       margin-bottom: 1rem;
   }

   .modal-content h2 {
       color: #d4af37;
       font-size: 2rem;
       margin-bottom: 1rem;
   }

   .modal-content p {
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.6;
       margin-bottom: 2rem;
   }

   /* Footer */
   footer {
       background: #0a0a0a;
       padding: 3rem 5%;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       text-align: center;
       color: rgba(255, 255, 255, 0.5);
   }

   /* Responsive */
   @media (max-width: 1024px) {
       .contact-grid {
           grid-template-columns: 1fr;
           gap: 3rem;
       }
   }

   @media (max-width: 768px) {
       .contact-hero-title {
           font-size: 2.5rem;
       }

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

       .contact-form-container {
           padding: 2rem;
       }

       .quick-contact {
           grid-template-columns: 1fr;
       }

       .map-placeholder {
           height: 350px;
       }
   }