  * {margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif;}

    body, html {
      height: 100%;
      scroll-behavior: smooth;
      background: #f5f5f5;
    }

    /* Navbar Glass Effect */
    nav {
      position: sticky;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.15);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    nav img {
      height: 50px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: #ff6600;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav ul li a:hover { color: #ffcc00; }

    /* Hero Section */
    .hero {
      height: 50vh;
      background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .hero h1 {
      font-size: 48px;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    }

    /* Contact Section */
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: -80px auto 50px auto;
      padding: 20px;
    }

    .contact-form, .contact-info {
      flex: 1 1 400px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      color: #333;
    }

    .contact-form h2, .contact-info h2 {
      margin-bottom: 20px;
      color: #222;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: none;
      border-radius: 10px;
      outline: none;
    }

    .btn {
      margin-top: 10px;
      padding: 12px 25px;
      background: #ff6600;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn:hover { background: #ff4500; }

    .contact-info p {
      margin: 10px 0;
      font-size: 16px;
    }

    /* Google Map */
    .map {
      width: 100%;
      height: 400px;
      margin: 30px 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    /* Popup Message */
    #formMessage {
      position: fixed;
      top: 20px;
      right: 20px;
      min-width: 250px;
      padding: 15px 20px;
      border-radius: 12px;
      font-weight: bold;
      text-align: center;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,0.2);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      display: none;
      z-index: 2000;
      animation: fadeIn 0.5s ease-in-out;
    }

    #formMessage.success {
      color: #0f5132;
      background: rgba(212, 237, 218, 0.4);
      border: 1px solid #badbcc;
    }
    #formMessage.error {
      color: #842029;
      background: rgba(248, 215, 218, 0.4);
      border: 1px solid #f5c2c7;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    
    
    
    /* Footer */
    .footer {
      background: #111; color: #fff; padding: 50px 20px 20px;
    }
    .footer-container {
      display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 30px;
      max-width: 1200px; margin: auto;
    }
    .footer-logo { width: 150px; margin-bottom: 15px; }
    .footer-col h3 { margin-bottom: 15px; color: #ff9800; }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { text-decoration: none; color: #fff; transition: 0.3s; }
    .footer-col ul li a:hover { color: #ff9800; }
    .social-icons a { margin-right: 10px; font-size: 18px; color: #fff; }
    .social-icons a:hover { color: #ff9800; }
    .footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 15px; font-size: 0.9rem; }