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

   body {
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background: #faf9f7;
       color: #333;
   }
   /* Header */

   header {
       background: white;
       box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
       position: sticky;
       top: 0;
       z-index: 1000;
   }

   nav {
       max-width: 1400px;
       margin: 0 auto;
       padding: 0 2rem;
       height: 80px;
       position: relative;
       display: flex;
       align-items: center;
       justify-content: flex-end;
   }

   .logo {
       position: absolute;
       left: 2rem;
       top: 50%;
       transform: translateY(-50%);
       height: 120px;
       display: flex;
       align-items: center;
   }

   .logo img {
       height: 120px;
       object-fit: contain;
   }

   .nav-links {
       display: flex;
       gap: 2.5rem;
       list-style: none;
   }

   .nav-links a {
       text-decoration: none;
       color: #333;
       font-weight: 600;
       transition: all 0.3s;
       position: relative;
   }

   .nav-links a:after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 3px;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       transition: width 0.3s;
   }

   .nav-links a:hover:after {
       width: 100%;
   }

   .mobile-menu {
       display: none;
       font-size: 1.5rem;
       cursor: pointer;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }
   /* Hero Section */

   .contact-hero {
       background: linear-gradient(135deg, rgba(254, 160, 24, 0.4) 0%, rgba(178, 19, 24, 0.4) 100%), url('/assets/img/back2.jpg');
       background-size: cover;
       background-position: center;
       padding: 5rem 2rem;
       text-align: center;
       color: white;
   }

   .contact-hero h1 {
       font-size: 3.5rem;
       font-weight: 800;
       margin-bottom: 1rem;
       text-transform: uppercase;
   }

   .contact-hero p {
       font-size: 1.3rem;
       opacity: 0.95;
       max-width: 700px;
       margin: 0 auto;
   }
   /* Main Contact Section */

   .contact-main {
       max-width: 1400px;
       margin: -80px auto 0;
       padding: 0 2rem 6rem;
       position: relative;
       z-index: 10;
   }

   .contact-container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 3rem;
       background: white;
       border-radius: 20px;
       box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
       overflow: hidden;
   }
   /* Contact Form */

   .contact-form-section {
       padding: 3rem;
   }

   .contact-form-section h2 {
       font-size: 2.5rem;
       margin-bottom: 1rem;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .contact-form-section p {
       color: #666;
       margin-bottom: 2rem;
       line-height: 1.6;
   }

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

   .form-group label {
       display: block;
       margin-bottom: 0.5rem;
       font-weight: 600;
       color: #333;
   }

   .form-group input,
   .form-group select,
   .form-group textarea {
       width: 100%;
       padding: 1rem;
       border: 2px solid #e0e0e0;
       border-radius: 10px;
       font-size: 1rem;
       font-family: inherit;
       transition: all 0.3s;
   }

   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #fea018;
       box-shadow: 0 0 0 3px rgba(254, 160, 24, 0.1);
   }

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

   .submit-btn {
       width: 100%;
       padding: 1.2rem;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       color: white;
       border: none;
       border-radius: 10px;
       font-size: 1.1rem;
       font-weight: 700;
       cursor: pointer;
       transition: all 0.3s;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
   }

   .submit-btn:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 30px rgba(254, 160, 24, 0.4);
   }
   /* Contact Info */

   .contact-info-section {
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       padding: 3rem;
       color: white;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .contact-info-section h3 {
       font-size: 2rem;
       margin-bottom: 2rem;
   }

   .info-item {
       display: flex;
       align-items: flex-start;
       gap: 1.5rem;
       margin-bottom: 2rem;
       padding: 1.5rem;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 15px;
       backdrop-filter: blur(10px);
       transition: all 0.3s;
   }

   .info-item:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateX(10px);
   }

   .info-icon {
       width: 50px;
       height: 50px;
       background: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
   }

   .info-icon i {
       font-size: 1.5rem;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .info-content h4 {
       font-size: 1.2rem;
       margin-bottom: 0.5rem;
   }

   .info-content p {
       opacity: 0.95;
       line-height: 1.6;
   }

   .info-content a {
       color: white;
       text-decoration: none;
       transition: opacity 0.3s;
   }

   .info-content a:hover {
       opacity: 0.8;
   }
   /* Social Links */

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

   .social-btn {
       width: 50px;
       height: 50px;
       background: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       text-decoration: none;
       transition: all 0.3s;
   }

   .social-btn i {
       font-size: 1.3rem;
       background: linear-gradient(135deg, #fea018 0%, #b21318 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .social-btn:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }
   /* Map Section */

   .map-section {
       max-width: 1400px;
       margin: 4rem auto 0;
       padding: 0 2rem;
   }

   .map-container {
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
       height: 450px;
       background: #e0e0e0;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .map-placeholder {
       text-align: center;
       color: #666;
   }

   .map-placeholder i {
       font-size: 4rem;
       margin-bottom: 1rem;
       color: #b21318;
   }
   /* Footer */

   footer {
       background: #1a1a1a;
       color: white;
       padding: 3rem 2rem 1rem;
       margin-top: 6rem;
   }

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

   .footer-section h3 {
       margin-bottom: 1rem;
       color: #fea018;
   }

   .footer-section p,
   .footer-section a {
       color: #ccc;
       text-decoration: none;
       line-height: 2;
   }

   .footer-bottom {
       text-align: center;
       padding-top: 2rem;
       border-top: 1px solid #333;
       color: #888;
   }
   /* Floating WhatsApp Button */

   .whatsapp-float {
       position: fixed;
       bottom: 2rem;
       right: 2rem;
       width: 60px;
       height: 60px;
       background: #25D366;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.8rem;
       box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
       cursor: pointer;
       z-index: 1000;
       transition: all 0.3s;
       text-decoration: none;
   }

   .whatsapp-float:hover {
       transform: scale(1.1);
       box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
   }
   /* Responsive */

   @media (max-width: 968px) {
       .contact-container {
           grid-template-columns: 1fr;
       }
       .contact-hero h1 {
           font-size: 2.5rem;
       }
       .nav-links {
           display: none;
           flex-direction: column;
           background-color: white;
           position: absolute;
           top: 100%;
           left: 0;
           width: 100%;
           padding: 1rem 2rem;
           box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
       }
       .nav-links.active {
           display: flex;
       }
       .mobile-menu {
           display: block;
       }
       .contact-form-section,
       .contact-info-section {
           padding: 2rem;
       }
       .whatsapp-float {
           bottom: 1rem;
           right: 1rem;
       }
   }

   @media (max-width: 480px) {
       .contact-hero h1 {
           font-size: 2rem;
       }
       .contact-hero p {
           font-size: 1.1rem;
       }
       .contact-form-section h2 {
           font-size: 2rem;
       }
       .map-container {
           height: 300px;
       }
   }
