body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #000000;
      color: #f5f5f5;
      line-height: 1.6;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(200, 169, 81, 0.1);
      padding: 1.5rem 5%;
      transition: all 0.3s ease;
    }

    nav.scrolled {
      padding: 1rem 5%;
      background: rgba(0, 0, 0, 0.98);
    }

    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 3px;
      color: #C8A951;
      text-decoration: none;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: #f5f5f5;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: #C8A951;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #C8A951;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .auth-btn {
      background: transparent;
      border: 2px solid #C8A951;
      color: #C8A951;
      padding: 0.6rem 1.5rem;
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .auth-btn:hover {
      background: #C8A951;
      color: #000;
      box-shadow: 0 0 20px rgba(200, 169, 81, 0.5);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 2px;
      background: #C8A951;
      transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
      width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #000000 0%, #0d0d0d 100%);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 2rem;
      max-width: 1200px;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 7rem);
      letter-spacing: 8px;
      margin-bottom: 1rem;
      color: #f5f5f5;
      text-transform: uppercase;
      line-height: 1.1;
      text-shadow: 0 0 30px rgba(200, 169, 81, 0.3);
    }

    .hero-content p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      color: #C8A951;
      margin-bottom: 3rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 300;
    }

    .cta-buttons {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn {
      padding: 1.2rem 3rem;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid #C8A951;
      background: transparent;
      color: #C8A951;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #C8A951;
      transition: left 0.3s ease;
      z-index: -1;
    }

    .cta-btn:hover::before {
      left: 0;
    }

    .cta-btn:hover {
      color: #000;
      box-shadow: 0 0 30px rgba(200, 169, 81, 0.6);
    }

    .cta-btn.primary {
      background: #C8A951;
      color: #000;
    }

    .cta-btn.primary::before {
      background: transparent;
    }

    .cta-btn.primary:hover {
      background: transparent;
      color: #C8A951;
    }

    /* Section Styles */
    section {
      width: 100%;
      padding: 8rem 5%;
      position: relative;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 5px;
      text-align: center;
      margin-bottom: 4rem;
      color: #f5f5f5;
      text-transform: uppercase;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 100px;
      height: 3px;
      background: #C8A951;
      margin: 1rem auto 0;
    }

    /* About Section */
    #about {
      background: #0d0d0d;
    }

    .about-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image {
      width: 100%;
      height: 600px;
      overflow: hidden;
      border: 2px solid #C8A951;
      box-shadow: 0 0 40px rgba(200, 169, 81, 0.2);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #C8A951;
      margin-bottom: 1.5rem;
      letter-spacing: 3px;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: rgba(245, 245, 245, 0.8);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .stat-item {
      text-align: center;
      padding: 2rem;
      background: rgba(200, 169, 81, 0.05);
      border: 1px solid rgba(200, 169, 81, 0.2);
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      background: rgba(200, 169, 81, 0.1);
      border-color: #C8A951;
      box-shadow: 0 0 20px rgba(200, 169, 81, 0.2);
    }

    .stat-item h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #C8A951;
      margin-bottom: 0.5rem;
    }

    .stat-item p {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(245, 245, 245, 0.7);
    }

    /* Services Section */
    #services {
      background: #000000;
    }

    .services-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: rgba(13, 13, 13, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(200, 169, 81, 0.1);
      padding: 3rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: #C8A951;
      box-shadow: 0 10px 40px rgba(200, 169, 81, 0.3);
      background: rgba(13, 13, 13, 0.9);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    .service-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: #C8A951;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .service-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(245, 245, 245, 0.7);
    }

    /* Portfolio Section */
    #portfolio {
      background: #0d0d0d;
    }

    .portfolio-tabs {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .tab-btn {
      background: transparent;
      border: 1px solid rgba(200, 169, 81, 0.3);
      color: #f5f5f5;
      padding: 0.8rem 2rem;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: #C8A951;
      color: #000;
      border-color: #C8A951;
    }

    .portfolio-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
      cursor: pointer;
      border: 1px solid rgba(200, 169, 81, 0.1);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .portfolio-item:hover img {
      transform: scale(1.1);
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
      display: flex;
      align-items: flex-end;
      padding: 2rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-overlay h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: #C8A951;
      letter-spacing: 2px;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
    }

    .lightbox-content img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 3rem;
      color: #C8A951;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .lightbox-close:hover {
      transform: rotate(90deg);
    }

    /* Film Reels Section */
    #reels {
      background: #000000;
    }

    .reels-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }

    .reel-card {
      position: relative;
      aspect-ratio: 16/9;
      background: #0d0d0d;
      border: 2px solid rgba(200, 169, 81, 0.2);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .reel-card:hover {
      border-color: #C8A951;
      box-shadow: 0 0 30px rgba(200, 169, 81, 0.4);
    }

    .reel-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reel-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(200, 169, 81, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #000;
      transition: all 0.3s ease;
    }

    .reel-card:hover .reel-play {
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* Reviews Section */
    #reviews {
      background: #0d0d0d;
    }

    .reviews-carousel {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .review-card {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid #C8A951;
      padding: 3rem;
      text-align: center;
      display: none;
    }

    .review-card.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .review-text {
      font-size: 1.2rem;
      line-height: 1.8;
      color: rgba(245, 245, 245, 0.9);
      margin-bottom: 2rem;
      font-style: italic;
    }

    .review-author {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: #C8A951;
      letter-spacing: 2px;
    }

    .review-stars {
      color: #C8A951;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .carousel-btn {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(200, 169, 81, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-btn.active {
      background: #C8A951;
      transform: scale(1.3);
    }

    /* Pricing Section */
    #pricing {
      background: #000000;
    }

    .pricing-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .pricing-card {
      background: rgba(13, 13, 13, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(200, 169, 81, 0.2);
      padding: 3rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      border-color: #C8A951;
      box-shadow: 0 10px 50px rgba(200, 169, 81, 0.3);
    }

    .pricing-card.featured {
      border-color: #C8A951;
      border-width: 2px;
    }

    .pricing-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: #C8A951;
      margin-bottom: 1rem;
      letter-spacing: 3px;
    }

    .price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #f5f5f5;
      margin-bottom: 2rem;
    }

    .price span {
      font-size: 1.5rem;
      color: rgba(245, 245, 245, 0.6);
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .pricing-features li {
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(200, 169, 81, 0.1);
      color: rgba(245, 245, 245, 0.8);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    /* Contact Section */
    #contact {
      background: #0d0d0d;
    }

    .contact-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #C8A951;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(200, 169, 81, 0.3);
      padding: 1rem;
      color: #f5f5f5;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #C8A951;
      box-shadow: 0 0 10px rgba(200, 169, 81, 0.2);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 150px;
    }

    .submit-btn {
      background: #C8A951;
      color: #000;
      border: none;
      padding: 1.2rem;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .submit-btn:hover {
      background: #f5f5f5;
      box-shadow: 0 0 20px rgba(200, 169, 81, 0.5);
    }

    .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .info-item {
      padding: 2rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(200, 169, 81, 0.2);
    }

    .info-item h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: #C8A951;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .info-item p {
      color: rgba(245, 245, 245, 0.8);
      line-height: 1.8;
    }

    .quick-contact {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .quick-btn {
      flex: 1;
      padding: 1rem;
      background: transparent;
      border: 2px solid #C8A951;
      color: #C8A951;
      cursor: pointer;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      text-align: center;
      display: block;
    }

    .quick-btn:hover {
      background: #C8A951;
      color: #000;
    }

    /* Footer */
    footer {
      width: 100%;
      background: #000000;
      border-top: 1px solid rgba(200, 169, 81, 0.2);
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      border: 2px solid #C8A951;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #C8A951;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-links a:hover {
      background: #C8A951;
      color: #000;
      box-shadow: 0 0 20px rgba(200, 169, 81, 0.5);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(245, 245, 245, 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #C8A951;
    }

    .copyright {
      color: rgba(245, 245, 245, 0.5);
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    /* Auth Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 3000;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: #0d0d0d;
      border: 2px solid #C8A951;
      padding: 3rem;
      max-width: 500px;
      width: 100%;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      color: #C8A951;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .modal-close:hover {
      transform: rotate(90deg);
    }

    .modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #C8A951;
      margin-bottom: 2rem;
      text-align: center;
      letter-spacing: 3px;
    }

    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .toggle-auth {
      text-align: center;
      margin-top: 1.5rem;
      color: rgba(245, 245, 245, 0.7);
    }

    .toggle-auth a {
      color: #C8A951;
      cursor: pointer;
      text-decoration: underline;
    }

    .toggle-auth a:hover {
      color: #f5f5f5;
    }

    .auth-message {
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 4px;
      text-align: center;
      font-weight: 500;
    }

    .auth-message.success {
      background: rgba(0, 255, 0, 0.1);
      border: 1px solid rgba(0, 255, 0, 0.3);
      color: #00ff00;
    }

    .auth-message.error {
      background: rgba(255, 0, 0, 0.1);
      border: 1px solid rgba(255, 0, 0, 0.3);
      color: #ff0000;
    }

    /* Legal Pages */
    .legal-page {
      display: none;
      width: 100%;
      padding: 10rem 5% 5rem;
      background: #0d0d0d;
    }

    .legal-page.active {
      display: block;
    }

    .legal-content {
      max-width: 1000px;
      margin: 0 auto;
    }

    .legal-content h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #C8A951;
      margin-bottom: 2rem;
      letter-spacing: 3px;
    }

    .legal-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: #f5f5f5;
      margin: 2rem 0 1rem;
      letter-spacing: 2px;
    }

    .legal-content p {
      line-height: 1.8;
      margin-bottom: 1rem;
      color: rgba(245, 245, 245, 0.8);
    }

    .back-btn {
      display: inline-block;
      margin-bottom: 2rem;
      padding: 0.8rem 2rem;
      background: transparent;
      border: 2px solid #C8A951;
      color: #C8A951;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .back-btn:hover {
      background: #C8A951;
      color: #000;
    }

    /* Loading State */
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(200, 169, 81, 0.3);
      border-top-color: #C8A951;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(200, 169, 81, 0.2);
      }

      .nav-links.active {
        right: 0;
      }

      .about-content,
      .contact-content {
        grid-template-columns: 1fr;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }

      .reels-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      nav {
        padding: 1rem 5%;
      }

      .logo {
        font-size: 1.5rem;
      }

      section {
        padding: 5rem 5%;
      }

      .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
      }

      .section-title {
        font-size: 2rem;
      }

      .modal-content {
        padding: 2rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }
  