* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FDFCFA;
      color: #2A2A2A;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    .app-container {
      width: 100%;
      min-height: 100%;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 25px 80px;
      background: rgba(253, 252, 250, 0.85);
      backdrop-filter: blur(30px);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      padding: 18px 80px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      letter-spacing: 1px;
      color: #2A2A2A;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      gap: 50px;
      list-style: none;
      align-items: center;
    }

    .nav-link {
      color: #4A4A4A;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      position: relative;
      transition: color 0.3s;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background: #D4A574;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #D4A574;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .auth-buttons {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .btn {
      padding: 12px 32px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      border: 1px solid #2A2A2A;
      background: transparent;
      color: #2A2A2A;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: #2A2A2A;
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s;
      z-index: -1;
    }

    .btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn:hover {
      color: #FDFCFA;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .btn-outline {
      border: 1px solid #D4A574;
      color: #D4A574;
    }

    .btn-outline::before {
      background: #D4A574;
    }

    .btn-filled {
      background: #2A2A2A;
      color: #FDFCFA;
    }

    .user-display {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 20px;
      background: rgba(212, 165, 116, 0.1);
      border: 1px solid rgba(212, 165, 116, 0.3);
      cursor: pointer;
      transition: all 0.3s;
    }

    .user-display:hover {
      background: rgba(212, 165, 116, 0.2);
      box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
    }

    .user-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D4A574, #B88A5F);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      font-weight: 600;
    }

    .user-name {
      font-size: 14px;
      font-weight: 500;
      color: #2A2A2A;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
                  url('https://i.pinimg.com/736x/54/83/ea/5483ea6e3b9a022812713b76e6531d6c.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 150px 40px 100px;
      overflow: hidden;
      width: 100%;
    }

    .hero-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      animation: float 8s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 80px;
      color: white;
      margin-bottom: 30px;
      font-weight: 500;
      letter-spacing: -1px;
      line-height: 1.1;
    }

    .rotating-text {
      font-size: 32px;
      color: rgba(255,255,255,0.95);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rotating-word {
      position: absolute;
      opacity: 0;
      animation: rotateWords 12s infinite;
    }

    .rotating-word:nth-child(1) { animation-delay: 0s; }
    .rotating-word:nth-child(2) { animation-delay: 3s; }
    .rotating-word:nth-child(3) { animation-delay: 6s; }
    .rotating-word:nth-child(4) { animation-delay: 9s; }

    @keyframes rotateWords {
      0%, 25% { opacity: 0; transform: translateY(20px); }
      8%, 17% { opacity: 1; transform: translateY(0); }
      25%, 100% { opacity: 0; transform: translateY(-20px); }
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero .btn {
      padding: 16px 45px;
      font-size: 14px;
      border-color: rgba(255,255,255,0.8);
      color: white;
    }

    .hero .btn::before {
      background: white;
    }

    .hero .btn:hover {
      color: #2A2A2A;
    }

    /* Section Styling */
    section {
      padding: 120px 80px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
      animation: fadeIn 1s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .section-label {
      font-size: 12px;
      letter-spacing: 3px;
      color: #D4A574;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .section-header h2 {
      font-size: 56px;
      color: #2A2A2A;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .section-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #D4A574, transparent);
      margin: 30px auto;
    }

    .section-header p {
      font-size: 16px;
      color: #6A6A6A;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.8;
      font-weight: 300;
    }

    /* Categories Grid */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
    }

    .category-card {
      position: relative;
      height: 350px;
      overflow: hidden;
      cursor: pointer;
      background: white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .category-card:hover .category-image {
      transform: scale(1.08);
    }

    .category-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 35px;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
      color: white;
    }

    .category-title {
      font-size: 28px;
      font-family: 'Playfair Display', serif;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .category-count {
      font-size: 13px;
      opacity: 0.9;
      letter-spacing: 1px;
    }

    /* Reviews Section */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .review-card {
      background: white;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .review-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #D4A574, #B88A5F);
      transform: scaleX(0);
      transition: transform 0.5s ease;
    }

    .review-card:hover::before {
      transform: scaleX(1);
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .review-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      margin-bottom: 25px;
    }

    .review-rating {
      display: flex;
      gap: 5px;
      margin-bottom: 20px;
    }

    .star {
      width: 20px;
      height: 20px;
      position: relative;
    }

    .star-bg {
      color: #E5E5E5;
    }

    .star-fill {
      position: absolute;
      top: 0;
      left: 0;
      color: #D4A574;
      overflow: hidden;
      animation: fillStar 1s ease forwards;
    }

    @keyframes fillStar {
      from { width: 0; }
      to { width: 100%; }
    }

    .review-title {
      font-size: 24px;
      margin-bottom: 15px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .review-excerpt {
      font-size: 14px;
      color: #6A6A6A;
      line-height: 1.8;
      margin-bottom: 25px;
      font-weight: 300;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #8A8A8A;
      margin-bottom: 20px;
    }

    .read-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #D4A574;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      text-decoration: none;
      transition: gap 0.3s;
      cursor: pointer;
    }

    .read-more-btn:hover {
      gap: 15px;
    }

    /* Video Showcase */
    .video-section {
      background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
      padding: 100px 80px;
      position: relative;
      overflow: hidden;
    }

    .video-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      padding: 30px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .video-title {
      text-align: center;
      font-size: 42px;
      color: white;
      margin-bottom: 40px;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      background: #000;
    }

    .video-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=1200&q=80');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-button {
      width: 80px;
      height: 80px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .play-button:hover {
      transform: scale(1.1);
      background: white;
    }

    .play-icon {
      width: 0;
      height: 0;
      border-left: 20px solid #2A2A2A;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      margin-left: 5px;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 50px;
    }

    .blog-card {
      cursor: pointer;
      transition: transform 0.4s;
    }

    .blog-card:hover {
      transform: translateY(-8px);
    }

    .blog-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      margin-bottom: 30px;
      transition: transform 0.5s;
    }

    .blog-card:hover .blog-image {
      transform: scale(1.03);
      box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    }

    .blog-category {
      font-size: 11px;
      letter-spacing: 2px;
      color: #D4A574;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .blog-title {
      font-size: 28px;
      margin-bottom: 15px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      line-height: 1.4;
    }

    .blog-excerpt {
      font-size: 14px;
      line-height: 1.8;
      color: #6A6A6A;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .blog-meta {
      font-size: 12px;
      color: #8A8A8A;
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 60px;
    }

    .feature-card {
      text-align: center;
      padding: 50px 35px;
      background: white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
      transition: all 0.4s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    .feature-icon {
      font-size: 48px;
      margin-bottom: 25px;
      display: block;
    }

    .feature-title {
      font-size: 20px;
      margin-bottom: 15px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .feature-description {
      font-size: 14px;
      color: #6A6A6A;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Search Section */
    .search-section {
      background: linear-gradient(135deg, #F8F6F3 0%, #FDFCFA 100%);
      padding: 100px 80px;
    }

    .search-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .search-box {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
      background: white;
      padding: 8px;
      box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    }

    .search-input {
      flex: 1;
      padding: 18px 25px;
      border: none;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      color: #2A2A2A;
      background: transparent;
    }

    .search-input:focus {
      outline: none;
    }

    .search-input::placeholder {
      color: #AAAAAA;
    }

    .search-btn {
      padding: 18px 40px;
      background: #2A2A2A;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      transition: all 0.3s;
    }

    .search-btn:hover {
      background: #D4A574;
      transform: scale(1.05);
    }

    .filter-toggle {
      text-align: center;
      margin-bottom: 30px;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid #D4A574;
      color: #D4A574;
      padding: 12px 35px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      transition: all 0.3s;
    }

    .filter-btn:hover {
      background: #D4A574;
      color: white;
    }

    .filters {
      display: none;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      padding: 40px;
      background: white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      animation: slideDown 0.4s ease;
    }

    .filters.active {
      display: grid;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .filter-group label {
      display: block;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: #2A2A2A;
      margin-bottom: 12px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .filter-group select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #E5E5E5;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #2A2A2A;
      background: #FDFCFA;
      cursor: pointer;
    }

    .filter-group select:focus {
      outline: none;
      border-color: #D4A574;
    }

    /* Newsletter Popup */
    .newsletter-popup {
      position: fixed;
      bottom: -500px;
      right: 40px;
      width: 420px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(30px);
      padding: 45px;
      box-shadow: 0 20px 80px rgba(0,0,0,0.2);
      z-index: 2000;
      transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(212, 165, 116, 0.3);
    }

    .newsletter-popup.active {
      bottom: 40px;
    }

    .newsletter-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: none;
      font-size: 28px;
      color: #8A8A8A;
      cursor: pointer;
      transition: all 0.3s;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .newsletter-close:hover {
      color: #D4A574;
      transform: rotate(90deg);
    }

    .newsletter-title {
      font-size: 26px;
      margin-bottom: 15px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .newsletter-subtitle {
      font-size: 14px;
      color: #6A6A6A;
      margin-bottom: 30px;
      line-height: 1.6;
      font-weight: 300;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .newsletter-input {
      padding: 15px 20px;
      border: 1px solid #E5E5E5;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #D4A574;
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    }

    .newsletter-input::placeholder {
      color: #AAAAAA;
    }

    .newsletter-btn {
      padding: 15px;
      background: #2A2A2A;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .newsletter-btn:hover {
      background: #D4A574;
      box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    }

    .newsletter-message {
      margin-top: 15px;
      padding: 12px;
      font-size: 13px;
      text-align: center;
      display: none;
    }

    .newsletter-message.success {
      background: rgba(212, 165, 116, 0.2);
      color: #B88A5F;
    }

    .newsletter-message.info {
      background: rgba(0,0,0,0.05);
      color: #6A6A6A;
    }

    /* Footer */
    footer {
      background: #2A2A2A;
      color: rgba(255,255,255,0.8);
      padding: 100px 80px 40px;
      width: 100%;
    }

    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 80px;
    }

    .footer-brand h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      margin-bottom: 20px;
      color: white;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .footer-social {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s;
      font-size: 18px;
      text-decoration: none;
      color: rgba(255,255,255,0.8);
    }

    .social-icon:hover {
      border-color: #D4A574;
      background: #D4A574;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    }

    .footer-section h4 {
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 25px;
      color: white;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s;
      display: inline-block;
      font-weight: 300;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #D4A574;
      padding-left: 5px;
    }

    .footer-newsletter {
      background: rgba(255,255,255,0.05);
      padding: 30px;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .footer-newsletter h4 {
      margin-bottom: 20px;
    }

    .footer-newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-newsletter-input {
      padding: 14px 18px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      color: white;
      font-size: 13px;
      font-family: 'Inter', sans-serif;
    }

    .footer-newsletter-input:focus {
      outline: none;
      border-color: #D4A574;
    }

    .footer-newsletter-input::placeholder {
      color: rgba(255,255,255,0.4);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
      font-weight: 300;
    }

    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      color: #D4A574;
      font-style: italic;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      max-width: 500px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      animation: modalSlide 0.5s ease;
    }

    @keyframes modalSlide {
      from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-header {
      padding: 50px 50px 30px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .modal-header h2 {
      font-size: 38px;
      color: #2A2A2A;
      margin-bottom: 10px;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .modal-header p {
      font-size: 14px;
      color: #8A8A8A;
      font-weight: 300;
    }

    .modal-close {
      position: absolute;
      top: 25px;
      right: 25px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(0,0,0,0.1);
      background: transparent;
      cursor: pointer;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: #2A2A2A;
    }

    .modal-close:hover {
      background: #2A2A2A;
      color: white;
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 50px;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: #2A2A2A;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .form-group input {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid #E5E5E5;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }

    .form-group input:focus {
      outline: none;
      border-color: #D4A574;
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    }

    .auth-toggle {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: #8A8A8A;
    }

    .auth-toggle a {
      color: #D4A574;
      text-decoration: none;
      font-weight: 500;
      cursor: pointer;
    }

    .auth-toggle a:hover {
      text-decoration: underline;
    }

    .policy-modal .modal-content {
      max-width: 900px;
    }

    .policy-content {
      padding: 50px;
      line-height: 1.9;
    }

    .policy-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .policy-content h2 {
      font-size: 32px;
      margin: 50px 0 25px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .policy-content h3 {
      font-size: 24px;
      margin: 35px 0 20px;
      color: #2A2A2A;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }

    .policy-content p {
      margin-bottom: 20px;
      color: #4A4A4A;
      font-size: 14px;
      font-weight: 300;
    }

    .policy-content ul,
    .policy-content ol {
      margin: 20px 0 20px 30px;
      color: #4A4A4A;
    }

    .policy-content li {
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 300;
    }

    .policy-highlight {
      background: rgba(212, 165, 116, 0.1);
      border-left: 3px solid #D4A574;
      padding: 30px;
      margin: 30px 0;
    }

    .policy-date {
      color: #8A8A8A;
      font-style: italic;
      margin-bottom: 40px;
      font-size: 13px;
    }

    /* Notification */
    .notification {
      position: fixed;
      bottom: -200px;
      right: 40px;
      background: white;
      padding: 25px 30px;
      box-shadow: 0 15px 60px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      gap: 20px;
      z-index: 4000;
      transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      max-width: 400px;
      border-left: 3px solid #D4A574;
    }

    .notification.active {
      bottom: 40px;
    }

    .notification-icon {
      font-size: 32px;
    }

    .notification-content h4 {
      font-size: 16px;
      margin-bottom: 5px;
      color: #2A2A2A;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }

    .notification-content p {
      font-size: 13px;
      color: #6A6A6A;
      font-weight: 300;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 20px 30px;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 80px 30px;
      }

      .hero h1 {
        font-size: 48px;
      }

      .rotating-text {
        font-size: 24px;
      }

      .section-header h2 {
        font-size: 40px;
      }

      .newsletter-popup {
        width: calc(100% - 40px);
        right: 20px;
      }

      footer {
        padding: 60px 30px 30px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }
    }
  