   
.whatsapp-button {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.whatsapp-button:hover {
  background-color: #1ebe5d; /* darker green on hover */
  transform: scale (1.5);
}

.whatsapp-button i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}


    :root {
	--primary: #c9f31d;
    --green-11: #14967f;
    --secondary: #2c2c2c;
    --black: #000;
	--green-12: #609d08;
    --black-2: #121212;
    --black-3: #555;
    --black-4: #1d1d1d;
    --black-5: #343434;
    --black-6: #262626;
    --black-7: #555555;
    --black-13: #666;
    --white: #fff;
    --white-2: #efefef;
    --white-3: #e9e9e9;
    --white-4: #f0f0f0;
    --white-5: #fbfbfb;
    --white-6: #d7d7d7;
    --white-7: #F5F5F5;
    --gray: #c2c2c2;
    --gray-2: #999;
    --gray-3: #a8a8a8;
    --gray-4: #f6f6f6;
    --gray-5: #bbb;
    --gray-6: #2b2b2b;
    --gray-7: #b9b9b9;
    --gray-8: #8E8E8E;
    --gray-9: #aaa;
    --gray-10: #7c7c7c;
    --gray-11: #D9D9D9;
    --gray-12: #383838;
    --gray-13: #ccc;
    --gray-14: #dfdfdf;
    --gray-15: #C0C0C0;
    --gray-16: #939393;
    --pink: #FAEDE9;
    --pink-2: #FF9776;
    --pink-12 : #fec195;
    --pink-3: #F3ECEC;
    --pink-4: #FFFAF0;
    --pink-5: #E0E3CC;
    --bg-line: #1e1e1e;
    --d-gray: #6A6A6A;
    --d-black: #1A1A1A;
    --d-black-2: #171717;
    --d-black-3: #1A1A1A;
    --red-1-1 : #ff4655;
      --bg: #05070f;
      --bg-soft: #0d1223;
      --text: #edf1ff;
      --muted: #a8b7d8;
      --line: rgba(255, 255, 255, 0.16);
      --accent: #24d9a9;
      --accent-2: #f4be5d;
      --card: rgba(255, 255, 255, 0.05);
	  --card3: rgba(255, 55, 15, 0.75);
      --blueish: #0ff;
    }
    
    

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background: radial-gradient(circle at 12% 0%, #163559 0, transparent 34%),
                  radial-gradient(circle at 92% 82%, #0a4d46 0, transparent 30%),
                  linear-gradient(140deg, var(--bg), var(--bg-soft));
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 3px 3px;
      opacity: 0.16;
      z-index: -1;
    }

    .container {
      width: min(1120px, 92vw);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(4px);
      background: rgba(19, 19, 19, 0.158);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      text-decoration: none;
      color: var(--text);
      display: flex;
      align-items: baseline;
      gap: 0.55rem;
      font-family: "Outfit", sans-serif;
      font-weight: 200;
      letter-spacing: 0.02em;
      font-size: 2.4rem;
    }
    .logo2 {
      text-decoration: none;
      color: var(--text);
      display: flex;
      align-items: baseline;
      gap: 1rem;
      font-family: "Londrina Shadow";
      font-weight: 600;
      letter-spacing: 0.08em;
      font-size: 1.4rem;
      animation: logo2Pulse 3s infinite ease-in-out;
      
    }
     @keyframes logo2Pulse {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
     }

    .logo .brand {
      font-family: "Streetbrush", "Brush Script MT", cursive;
      color: var(--text);
      font-size: 4rem;
      line-height: 1;
      padding:5px;
      transform: translateY(3px);
      animation: logoPulse 3s infinite ease-in-out;
    }
         
      

        @keyframes logoPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.1; }
      
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.92rem;
      transition: color 180ms ease;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .menu-btn {
      display: none;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
      border-radius: 10px;
      width: 44px;
      height: 44px;
      cursor: pointer;
    }

    .hero {
      min-height: calc(100vh - 76px);
      display: grid;
      align-items: center;
      padding: 2.8rem 0 2rem;
      position: relative;
      animation: fadeInUp 5s ease forwards;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(1rem, 3vw, 2rem);
      align-items: center;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.45rem 0.8rem;
      color: var(--muted);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500px;
    }

    .hero h1 {
      font-family: "Outfit", sans-serif;
      margin-top: 0.9rem;
      font-size: clamp(2rem, 6vw, 4.3rem);
      line-height: 1.05;
      max-width: 14ch;
    }

    .hero h1 .paint {
      font-family: "Streetbrush";
      color: var(--accent-2);
      font-size: 1.5em;
      margin-left: 0.12rem;
      text-shadow: 0 4px 6px rgba(93, 133, 244, 0.849);
      font-weight:10;
      
  
    
    
    }

    .hero p {
      margin-top: 1.1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 56ch;
    }

    .cta {
      margin-top: 1.45rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .btn {
      text-decoration: none;
      border-radius: 12px;
      padding: 0.86rem 1.15rem;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .btn.primary {
      color: #081416;
      background: linear-gradient(135deg, var(--accent), #8ff8d6);
      box-shadow: 0 10px 24px rgba(36, 217, 169, 0.35);
    }

    .btn.secondary {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
    }

    .btn:hover {
      transform: translateY(-2px);
}
	

    .hero-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.35rem;
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
      transform: perspective(900px) rotateY(-8deg);
      animation: drift 7s ease-in-out infinite;
    }

    .hero-card h2 {
      font-family: "Outfit", sans-serif;
      font-size: 1.55rem;
      margin-bottom: 0.9rem;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--card);
      padding: 0.85rem;
    }

    .stat strong {
      display: block;
      font-size: 1.2rem;
      font-family: "Outfit", sans-serif;
    }

    .section {
      padding: 4.2rem 0;
    }

    .section h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      margin-bottom: 0.7rem;
    }

    .section p.lead {
      color: var(--muted);
      max-width: 68ch;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--card);
      padding: 1.1rem;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .card i {
      font-size: 1.25rem;
      margin-bottom: 0.6rem;
      color: var(--accent);
    }

    .card h3 {
      font-family: "Outfit", sans-serif;
      margin-bottom: 0.45rem;
    }

    .card p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .social-row a {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      text-decoration: none;
      color: var(--text);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
      font-size: 1.8rem;
      box-shadow: 0 0 12px rgba(0, 234, 255, 0.3);
      animation: glowPulse 2.8s infinite ease-in-out;
    }

    .social-row a:hover {
      transform: translateY(-2px) scale(1.1);
      border-color: rgba(0, 234, 255, 0.6);
      box-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
      color: #00eaff;
      background: rgba(0, 234, 255, 0.15);
    }

    .awards-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .award-item {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--card);
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .award-item:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .award-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 180ms ease;
    }

    .award-item:hover .award-image {
      transform: scale(1.05);
    }

    .cta-section {
      text-align: center;
      padding: 2rem;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--card);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .cta-section p {
      color: var(--muted);
      font-size: 1.1rem;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 2rem;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: rgba(0, 0, 0, 0.9);
      text-decoration: none;
      font-weight: 600;
      transition: transform 180ms ease, box-shadow 180ms ease;
      box-shadow: 0 10px 30px rgba(36, 217, 169, 0.2);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(36, 217, 169, 0.4);
    }

    /* Sound Hire Section Styles */
    .sound-hire-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 2.5rem;
      align-items: center;
      margin-top: 2rem;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(36, 217, 169, 0.08), rgba(244, 190, 93, 0.04));
    }

    .sound-hire-addons {
      margin-top: 2rem;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 2rem;
      background: rgba(36, 217, 169, 0.04);
    }

    .sound-hire-addons h4 {
      font-family: "Outfit", sans-serif;
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .addons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .addon-card {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 1.5rem;
      background: var(--card);
      transition: all 200ms ease;
    }

    .addon-card:hover {
      background: rgba(36, 217, 169, 0.08);
      border-color: var(--accent);
    }

    .addon-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
      border-radius: 12px;
      overflow: hidden;
    }

    .addon-images img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 180ms ease;
    }

    .addon-card:hover .addon-images img {
      transform: scale(1.05);
    }

    .addon-card h5 {
      font-family: "Outfit", sans-serif;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .addon-price {
      font-size: 1.2rem;
      color: var(--accent-2);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .addon-features {
      list-style: none;
      padding: 0;
      margin-bottom: 1.5rem;
    }

    .addon-features li {
      color: var(--muted);
      padding: 0.4rem 0;
      padding-left: 1.5rem;
      position: relative;
      line-height: 1.5;
      font-size: 0.95rem;
    }

    .addon-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .sound-hire-image {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--card);
    }

    .sound-hire-img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 180ms ease;
    }

    .sound-hire-image:hover .sound-hire-img {
      transform: scale(1.05);
    }

    .sound-hire-content h3 {
      font-family: "Outfit", sans-serif;
      font-size: 2rem;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .sound-hire-price {
      font-size: 1.4rem;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--line);
    }

    .sound-hire-section {
      margin-bottom: 1.5rem;
    }

    .sound-hire-section h4 {
      font-family: "Outfit", sans-serif;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 0.7rem;
      font-weight: 600;
    }

    .sound-hire-list {
      list-style: none;
      padding: 0;
    }

    .sound-hire-list li {
      color: var(--muted);
      padding: 0.55rem 0;
      padding-left: 1.8rem;
      position: relative;
      line-height: 1.6;
    }

    .sound-hire-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .sound-hire-area,
    .sound-hire-fee {
      color: var(--muted);
      line-height: 1.6;
    }
    .sound-hire-price strong {
      color: var(--accent-2);
      font-weight:700;
    }

    .sound-hire-area strong,
    .sound-hire-fee strong {
      color: var(--accent-2);
      margin-left: 50px;
    }

    .sound-hire-cta {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .sound-hire-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .addons-grid {
        grid-template-columns: 1fr;
      }
    }

    footer {
      padding: 1.4rem 0 2.4rem;
      color: var(--muted);
      font-size: 0.9rem;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .social-icons {
        width: 18px;
        height: 18px;
        background: #ffffff15; /* transparent white */
        border: 1px solid #ffffff40;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 15px;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
        box-shadow: 0 0 12px #00eaff50;
        animation: glowPulse 2.8s infinite ease-in-out;
        text-shadow: 0 0 8px #0ff;
        text-decoration: none;
        cursor: pointer;
        position: relative;
    }

    .social-icons :hover {
      transform: translateY(-5px) scale(1.15);
      text-shadow: 0 0 20px #0ff;
      background: rgba(0, 234, 255, 0.2);
      color: #A46ffF;
      box-shadow: 0 0 30px #00eaff;
      border-color: #0ff;
      filter: brightness(1.3);
    }

    .social-icons :active {
      transform: translateY(-2px) scale(1.1);
    }

    /* subtle pulsing glow */
    @keyframes glowPulse {
      0%   { box-shadow: 0 0 8px #00eaff50; }
      50%  { box-shadow: 0 0 18px #00eaffaa; }
      100% { box-shadow: 0 0 8px #00eaff50; }
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }


    [data-animate] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.75s ease, transform 0.75s ease;
      transition-delay: var(--delay, 0ms);
    }

    [data-animate].in {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes drift {
      0%,
      100% {
        transform: perspective(900px) rotateY(-28deg) translateY(8px);
      }
      50% {
        transform: perspective(900px) rotateY(-8deg) translateY(-8px);
      }
    }
     @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(80px); }
      to { opacity: 1; transform: translateY(0px); }
     }

    /* Contact Modal Styles */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 300ms ease, visibility 300ms ease;
      z-index: 1000;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal {
      background: linear-gradient(165deg, rgba(13, 18, 35, 0.95), rgba(5, 7, 15, 0.98));
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 2.5rem;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 234, 255, 0.3);
      animation: modalSlideIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 180ms ease;
      padding: 0;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--accent);
      color: var(--accent);
      transform: rotate(90deg);
    }

    .modal-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .modal-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      background: linear-gradient(135deg, rgba(36, 217, 169, 0.2), rgba(0, 234, 255, 0.2));
      border: 1.5px solid var(--accent);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--accent);
      box-shadow: 0 0 20px rgba(36, 217, 169, 0.2);
    }

    .modal-header h2 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--accent), var(--blueish));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .modal-header p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line);
      border-radius: 14px;
      transition: all 200ms ease;
    }

    .contact-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--accent);
      transform: translateX(4px);
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(36, 217, 169, 0.15);
      border: 1px solid var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.2rem;
    }

    .contact-details {
      flex: 1;
    }

    .contact-details label {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.35rem;
      font-weight: 600;
    }

    .contact-details a {
      display: block;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      transition: color 180ms ease;
    }

    .contact-details a:hover {
      color: var(--accent);
    }

    .subscribe-message {
      background: linear-gradient(135deg, rgba(244, 190, 93, 0.1), rgba(36, 217, 169, 0.1));
      border: 1px solid rgba(244, 190, 93, 0.2);
      border-radius: 14px;
      padding: 1.5rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .subscribe-message p {
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .subscribe-message .highlight {
      color: var(--accent-2);
      font-weight: 700;
    }

    .modal-actions {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .modal-btn {
      flex: 1;
      min-width: 140px;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 200ms ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .modal-btn.btn-primary {
      background: linear-gradient(135deg, var(--accent), #8ff8d6);
      color: #081416;
      box-shadow: 0 8px 20px rgba(36, 217, 169, 0.3);
    }

    .modal-btn.btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(36, 217, 169, 0.5);
    }

    .modal-btn.btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border: 1px solid var(--line);
    }

    .modal-btn.btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--text);
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        transform: none;
        animation: none;
      }

      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 780px) {
      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        right: 4vw;
        top: 72px;
        width: min(320px, 92vw);
        padding: 0.95rem;
        border: 1px solid var(--line);
        border-radius: 14px;
        backdrop-filter: blur(14px);
        background: rgba(7, 10, 20, 0.95);
        display: none;
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links.open {
        display: flex;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .awards-gallery {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .modal {
        padding: 1.8rem;
        margin: 20px;
      }

      .modal-header h2 {
        font-size: 1.4rem;
      }

      .contact-item {
        padding: 1rem;
      }

      .modal-actions {
        flex-direction: column;
      }

      .modal-btn {
        min-width: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      [data-animate] {
        opacity: 1;
        transform: none;
      }
    }