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

 body {
   font-family: "Ubuntu", sans-serif;
   overflow-x: hidden;
 }

 /* Background Section */
 .contact {
   min-height: 100vh;
   background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
     url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920');
   background-size: cover;
   background-attachment: fixed;
   background-position: center;
   padding-bottom: 40px;
 }

 /* Header */
 .header {
   width: 100%;
   height: 70px;
   position: fixed;
   top: 0;
   left: 0;
   padding: 0 5%;
   background: rgba(0, 0, 0, 0.8);
   backdrop-filter: blur(10px);
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 1000;
   transition: all 0.3s ease;
 }

 .logo {
   font-size: clamp(20px, 4vw, 28px);
   color: #00d9ff;
   font-family: "Matemasie", sans-serif;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .logo span {
   color: #ffd700;
   font-size: clamp(24px, 5vw, 32px);
 }

 .logo:hover {
   text-shadow: 0 0 25px #00d9ff;
   transform: scale(1.05);
 }

 .header-right {
   display: flex;
   align-items: center;
   gap: 20px;
 }

 .cart-icon {
   position: relative;
   font-size: 24px;
   color: white;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .cart-icon:hover {
   color: #00d9ff;
   transform: scale(1.1);
 }

 .cart-count {
   position: absolute;
   top: -8px;
   right: -8px;
   background: #00d9ff;
   color: white;
   border-radius: 50%;
   width: 20px;
   height: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   font-weight: bold;
 }

 #nav-toggle {
   font-size: 28px;
   color: white;
   cursor: pointer;
   display: none;
   transition: all 0.3s ease;
 }

 #nav-toggle:hover {
   color: #00d9ff;
   transform: scale(1.1);
 }

 /* Navigation */
 .nav {
   position: relative;
 }

 .nav__menu {
   display: flex;
   align-items: center;
 }

 .nav__list {
   display: flex;
   gap: 30px;
   list-style: none;
   align-items: center;
 }

 .nav__link {
   text-decoration: none;
   color: #fff;
   font-size: 15px;
   text-transform: uppercase;
   padding: 8px 12px;
   transition: all 0.3s ease;
   border-bottom: 3px solid transparent;
   position: relative;
 }

 .nav__link:hover,
 .nav__link.active {
   color: #00d9ff;
   border-bottom: 3px solid #00d9ff;
 }

 #nav-close {
   display: none;
 }

 /* Desktop Navigation - Always Visible */
 @media screen and (min-width: 1025px) {
   .header {
     display: flex;
   }

   .nav {
     position: static;
     background: transparent;
   }

   .nav__menu {
     display: flex;
   }

   .nav__menu>.logo {
     display: none;
   }

   .nav__list {
     display: flex;
   }
 }

 /* Contact Container */
 .container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
   padding: 100px 5% 40px;
   max-width: 1200px;
   margin: 0 auto;
 }

 .panel {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 2px solid rgba(0, 217, 255, 0.3);
   border-radius: 20px;
   padding: 40px 30px;
   transition: all 0.4s ease;
 }

 .panel:hover {
   background: rgba(255, 255, 255, 0.15);
   border-color: #00d9ff;
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
 }

 /* Address Panel */
 .address {
   display: flex;
   flex-direction: column;
   gap: 30px;
 }

 .box {
   text-align: center;
   color: white;
   padding: 20px;
   border-radius: 10px;
   background: rgba(0, 0, 0, 0.3);
   transition: all 0.3s ease;
 }

 .box:hover {
   background: rgba(0, 217, 255, 0.2);
   transform: scale(1.05);
 }

 .box i {
   font-size: 36px;
   color: #00d9ff;
   margin-bottom: 15px;
 }

 .box h1,
 .box h2,
 .box h3,
 .box h4,
 .box h5 {
   margin: 8px 0;
   font-weight: 400;
 }

 .box h1 {
   font-size: 24px;
   color: #ffd700;
   margin-bottom: 10px;
 }

 .box h2 {
   font-size: 16px;
 }

 .box h3,
 .box h4,
 .box h5 {
   font-size: 18px;
   color: #00d9ff;
 }

 /* Contact Form Panel */
 .contactBox h1 {
   text-align: center;
   color: #00d9ff;
   font-size: 32px;
   margin-bottom: 30px;
   text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
 }

 .form-group {
   margin-bottom: 20px;
 }

 .form-group input,
 .form-group textarea {
   width: 100%;
   padding: 15px;
   border: 2px solid rgba(0, 217, 255, 0.3);
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.1);
   color: white;
   font-size: 16px;
   font-family: "Ubuntu", sans-serif;
   transition: all 0.3s ease;
   outline: none;
 }

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

 .form-group input:focus,
 .form-group textarea:focus {
   border-color: #00d9ff;
   background: rgba(255, 255, 255, 0.15);
   box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
 }

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

 /* Remove number input arrows */
 .form-group input[type="number"]::-webkit-inner-spin-button,
 .form-group input[type="number"]::-webkit-outer-spin-button {
   -webkit-appearance: none;
   margin: 0;
 }

 .form-group input[type="number"] {
   -moz-appearance: textfield;
 }

 .btn-sent {
   width: 100%;
   padding: 15px;
   background: linear-gradient(135deg, #00d9ff, #0099cc);
   border: none;
   border-radius: 10px;
   color: white;
   font-size: 18px;
   font-weight: 600;
   text-transform: uppercase;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
 }

 .btn-sent:hover {
   background: linear-gradient(135deg, #0099cc, #00d9ff);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0, 217, 255, 0.5);
 }

 .btn-sent:active {
   transform: translateY(0);
 }

 /* Footer */
 .footer {
   text-align: center;
   color: #fff;
   font-size: 14px;
   padding: 20px;
   background: rgba(0, 0, 0, 0.8);
   margin-top: 40px;
 }

 /* Tablet and Mobile */
 @media screen and (max-width: 1024px) {
   #nav-toggle {
     display: block;
   }

   .nav {
     position: fixed;
     top: 0;
     left: -100%;
     background-color: rgba(0, 0, 0, 0.98);
     width: 100%;
     height: 100vh;
     padding: 2rem 0;
     z-index: 999;
     transition: left 0.4s ease;
   }

   .nav.show {
     left: 0;
   }

   #nav-close {
     display: flex;
     position: absolute;
     right: 1.5rem;
     top: 1.5rem;
     font-size: 24px;
     color: white;
     height: 40px;
     width: 40px;
     align-items: center;
     justify-content: center;
     background-color: #00d9ff;
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s ease;
   }

   #nav-close:hover {
     background-color: #ffd700;
     transform: rotate(90deg);
   }

   .nav__menu {
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 40px;
   }

   .nav__menu>.logo {
     display: block;
   }

   .nav__list {
     flex-direction: column;
     gap: 30px;
     text-align: center;
   }

   .nav__link {
     font-size: 18px;
   }
 }

 /* Mobile Specific */
 @media screen and (max-width: 768px) {
   .container {
     grid-template-columns: 1fr;
     padding: 90px 5% 30px;
     gap: 30px;
   }

   .panel {
     padding: 30px 20px;
   }

   .contactBox h1 {
     font-size: 28px;
   }

   .cart-icon {
     font-size: 22px;
   }
 }

 /* Smooth Scrolling */
 html {
   scroll-behavior: smooth;
 }