
    /* === Contact Section === */
    .contact {
      background: var(--white);
      position: relative;
      overflow: hidden;
      padding: 150px 0;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c0d5ae' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
      z-index: 1;
    }

    /* Floating background elements for contact section */
    .contact::after {
      content: '';
      position: absolute;
      bottom: -15%;
      left: -5%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(192,213,174,0.06) 0%, transparent 70%);
      border-radius: 50%;
      animation: contactFloat 12s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes contactFloat {
      0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.06; 
      }
      50% { 
        transform: translateY(-40px) rotate(180deg) scale(1.1); 
        opacity: 0.12; 
      }
    }

    /* Contact Section Header */
    .contact .section-title {
      position: relative;
      z-index: 3;
      text-align: center;
      margin-bottom: 100px;
    }

    .contact .section-title h2 {
      font-family: 'EmotiveType', serif;
      font-size: 3.2rem;
      color: var(--rifle-green);
      position: relative;
      display: inline-block;
    }

    .contact .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--light-moss);
    }

    .contact .section-title p {
      margin-top: 25px;
      font-size: 1.1rem;
      color: var(--rifle-green);
      opacity: 0.9;
    }

    /* Contact Container */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Contact Info Container */
    .contact-info-container {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 30px;
      border: 1px solid rgba(192, 213, 174, 0.15);
      padding: 60px 50px;
      position: relative;
      overflow: hidden;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      transform: translateY(60px);
      opacity: 0;
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }

    .contact-info-container.animate {
      transform: translateY(0);
      opacity: 1;
    }

    /* Luxury hover effects for info container */
    .contact-info-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(192, 213, 174, 0.08), transparent);
      transition: left 0.8s ease;
      z-index: 1;
    }

    .contact-info-container:hover::before {
      left: 100%;
    }

    .contact-info-container:hover {
      transform: translateY(-15px);
      box-shadow: 0 40px 80px rgba(0,0,0,0.12);
      border-color: var(--light-moss);
    }

    .contact-info-header {
      position: relative;
      margin-bottom: 50px;
      padding-bottom: 25px;
      z-index: 2;
    }

    .contact-info-header h3 {
      font-family: 'EmotiveType', serif;
      font-size: 2.2rem;
      color: var(--rifle-green);
      margin: 0;
    }

    .contact-info-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--light-moss);
      opacity: 0.6;
    }

    /* Contact Details */
    .contact-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 35px;
      padding: 25px;
      border-radius: 20px;
      transition: all 0.6s ease;
      background: rgba(248,249,245,0.4);
      border: 1px solid rgba(192,213,174,0.1);
      position: relative;
      z-index: 2;
    }

    .contact-detail:hover {
      background: rgba(192,213,174,0.1);
      transform: translateX(10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

    .contact-icon {
      min-width: 70px;
      height: 70px;
      background: var(--light-moss);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
      color: var(--rifle-green);
      font-size: 1.5rem;
      transition: all 0.6s ease;
      box-shadow: 0 8px 25px rgba(192,213,174,0.3);
    }

    .contact-detail:hover .contact-icon {
      background: var(--rifle-green);
      color: var(--white);
      transform: scale(1.1);
    }

    .contact-text h4 {
      color: var(--rifle-green);
      margin-bottom: 8px;
      font-weight: 700;
      font-size: 1.3rem;
      letter-spacing: 0.5px;
    }

    .contact-text p {
      color: var(--rifle-green);
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.7;
      opacity: 0.9;
    }

    /* Premium Map Styling */
    .contact-map {
      margin-top: 50px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      transition: all 0.6s ease;
      height: 300px;
      position: relative;
      z-index: 2;
    }

    .contact-map:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      filter: grayscale(20%) contrast(1.1);
      transition: filter 0.6s ease;
    }

    .contact-map:hover iframe {
      filter: grayscale(0%) contrast(1.2);
    }

    /* Contact Form Container */
    .contact-form-container {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 30px;
      border: 1px solid rgba(192, 213, 174, 0.15);
      padding: 60px 50px;
      position: relative;
      overflow: hidden;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      transform: translateY(60px);
      opacity: 0;
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }

    .contact-form-container.animate {
      transform: translateY(0);
      opacity: 1;
    }

    /* Luxury hover effects for form container */
    .contact-form-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(192, 213, 174, 0.08), transparent);
      transition: left 0.8s ease;
      z-index: 1;
    }

    .contact-form-container:hover::before {
      left: 100%;
    }

    .contact-form-container:hover {
      transform: translateY(-15px);
      box-shadow: 0 40px 80px rgba(0,0,0,0.12);
      border-color: var(--light-moss);
    }

    .contact-form-header {
      position: relative;
      margin-bottom: 50px;
      padding-bottom: 25px;
      z-index: 2;
    }

    .contact-form-header h3 {
      font-family: 'EmotiveType', serif;
      font-size: 2.2rem;
      color: var(--rifle-green);
      margin: 0;
    }

    .contact-form-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--light-moss);
      opacity: 0.6;
    }

    /* Premium Form Styling */
    .form-group {
      margin-bottom: 35px;
      position: relative;
      z-index: 2;
    }

    .form-group label {
      display: block;
      margin-bottom: 12px;
      color: var(--rifle-green);
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .form-control {
      width: 100%;
      padding: 20px 25px;
      border: 2px solid rgba(192,213,174,0.2);
      border-radius: 15px;
      background: rgba(248,249,245,0.3);
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      color: var(--rifle-green);
      transition: all 0.4s ease;
      position: relative;
    }

    .form-control::placeholder {
      color: rgba(72,74,60,0.5);
      font-style: italic;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--light-moss);
      box-shadow: 0 0 0 4px rgba(192, 213, 174, 0.15);
      background: var(--white);
      transform: translateY(-2px);
    }

    .form-control:hover {
      border-color: rgba(192,213,174,0.4);
      background: rgba(248,249,245,0.5);
    }

    textarea.form-control {
      min-height: 200px;
      resize: vertical;
      font-family: 'Montserrat', sans-serif;
    }

    /* Premium Submit Button */
    .submit-btn-wrapper {
      text-align: center;
      margin-top: 40px;
      z-index: 2;
      position: relative;
    }

    .contact-form-container .btn {
      padding: 20px 50px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      box-shadow: 0 15px 35px rgba(72,74,60,0.2);
    }

    .contact-form-container .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--light-moss);
      z-index: -1;
      transform: translateX(-100%);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact-form-container .btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(192,213,174,0.4);
      border-color: var(--light-moss);
    }

    .contact-form-container .btn:hover::before {
      transform: translateX(0);
    }

    .contact-form-container .btn:hover i {
      transform: translateX(8px);
    }

    .form-note {
      text-align: center;
      color: var(--rifle-green);
      font-size: 1rem;
      margin-top: 30px;
      opacity: 0.8;
      font-style: italic;
      z-index: 2;
      position: relative;
    }

    /* Premium Social Links */
    .contact-social {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
      z-index: 2;
      position: relative;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(248,249,245,0.8);
      color: var(--rifle-green);
      font-size: 1.3rem;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      text-decoration: none;
      border: 2px solid rgba(192,213,174,0.2);
    }

    .social-link:hover {
      transform: translateY(-10px) scale(1.1);
      background: var(--light-moss);
      color: var(--rifle-green);
      box-shadow: 0 20px 40px rgba(192,213,174,0.3);
      border-color: var(--light-moss);
      text-decoration: none;
    }

    /* Responsive Design for Contact Section */
    @media (max-width: 1200px) {
      .contact-container {
        gap: 60px;
      }
      
      .contact .section-title h2 {
        font-size: 3.5rem;
      }
    }

    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }
      
      .contact .section-title h2 {
        font-size: 3rem;
      }
    }

    @media (max-width: 768px) {
      .contact {
        padding: 100px 0;
      }
      
      .contact .section-title h2 {
        font-size: 2.5rem;
      }
      
      .contact .section-title {
        margin-bottom: 60px;
      }
      
      .contact-info-container,
      .contact-form-container {
        padding: 40px 30px;
      }
      
      .contact-info-header h3,
      .contact-form-header h3 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 576px) {
      .contact .section-title h2 {
        font-size: 2rem;
      }
      
      .contact-info-container,
      .contact-form-container {
        padding: 30px 25px;
      }
      
      .contact-detail {
        padding: 20px;
      }
      
      .contact-icon {
        min-width: 60px;
        height: 60px;
        font-size: 1.3rem;
      }
    }

    /* === Form Messages === */
    .form-message {
      padding: 15px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      font-weight: 500;
      text-align: center;
      animation: slideDown 0.3s ease-out;
      position: relative;
      z-index: 10;
    }

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

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

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Form loading state */
    .form-control:disabled {
      background-color: #f8f9fa;
      opacity: 0.6;
    }

    button[type="submit"]:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    button[type="submit"]:disabled:hover {
      background: var(--primary-color);
      transform: none;
    }