* { margin: 0; padding: 0; box-sizing: border-box; }
    body { background-color: #0a0a0a; font-family: 'Poppins', sans-serif; color: #f5f5f5; scroll-behavior: smooth; }
    :root { --gold: #D4AF37; --gold-light: #F9E076; --gold-dark: #b38f2f; --black: #000000; --black-light: #111111; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #1a1a1a; }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
    h1, h2, h3, .nav-links a, .footer-logo-text { font-family: 'Playfair Display', serif; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
    
    /* Header */
    header { background-color: #000000dd; backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(212, 175, 55, 0.3); }
    .navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; flex-wrap: wrap; }
    .logo-img { height: 65px; width: 65px; object-fit: contain; display: block; border-radius: 12px; transition: transform 0.2s ease; }
    .logo-img:hover { transform: scale(1.02); }
    .logo-link { display: flex; align-items: center; text-decoration: none; }
    .since-badge-header { font-size: 0.65rem; font-family: 'Poppins', sans-serif; background: rgba(212,175,55,0.2); display: inline-block; padding: 2px 8px; border-radius: 30px; margin-left: 12px; color: var(--gold); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { color: #f0f0f0; font-size: 1.1rem; font-weight: 500; text-decoration: none; position: relative; padding: 6px 0; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); }
    .menu-icon { display: none; font-size: 1.8rem; color: var(--gold); cursor: pointer; }
    @media (max-width: 768px) {
      .menu-icon { display: block; }
      .nav-links { position: fixed; top: 78px; left: -100%; background: #000000ee; backdrop-filter: blur(12px); width: 70%; height: calc(100vh - 78px); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 3rem; gap: 2rem; transition: left 0.3s ease; border-right: 1px solid var(--gold); z-index: 99; }
      .nav-links.show { left: 0; }
      .container { padding: 0 20px; }
      .logo-img { height: 48px; width: 48px; }
    }
    
    section { padding: 70px 0; border-bottom: 1px solid rgba(212,175,55,0.15); }
    .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; text-align: center; color: var(--gold); font-family: 'Playfair Display', serif; }
    .section-sub { text-align: center; color: #ccc; margin-bottom: 50px; font-size: 1.1rem; }
    
    /* Hero & Products */
    .hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; padding: 40px 0 20px; }
    .hero-content { flex: 1; }
    .hero-content h1 { font-size: 3.2rem; line-height: 1.2; }
    .gold-text { color: var(--gold); }
    .hero-content p { margin: 20px 0 30px; color: #ddd; }
    .btn-group { display: flex; flex-wrap: wrap; gap: 15px; }
    .btn { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1.5px solid var(--gold); padding: 12px 28px; font-weight: 600; border-radius: 40px; color: var(--gold); transition: 0.2s; cursor: pointer; text-decoration: none; }
    .btn-gold { background: var(--gold); color: black; border: none; }
    .btn-gold:hover { background: var(--gold-light); transform: scale(1.02); }
    .btn-outline:hover { background: rgba(212,175,55,0.2); border-color: var(--gold-light); }
    .hero-image { flex: 1; display: flex; justify-content: center; }
    .hero-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 20px 35px -10px rgba(0,0,0,0.7), 0 0 0 2px rgba(212,175,55,0.2); }
    
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 40px; margin-top: 30px; }
    .product-card { background: var(--black-light); border-radius: 24px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(212,175,55,0.2); }
    .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.8); border-color: var(--gold); }
    .product-img { width: 100%; height: 280px; object-fit: cover; display: block; }
    .product-info { padding: 20px; }
    .product-info h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 8px; }
    .product-info p { color: #bbb; margin-bottom: 20px; }
    .contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
    .contact-buttons a { background: #222; padding: 8px 12px; border-radius: 40px; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 8px; color: #eee; transition: 0.2s; border: 1px solid #3a3a3a; text-decoration: none; }
    .contact-buttons a i { color: var(--gold); }
    .contact-buttons a:hover { background: var(--gold); color: black; border-color: var(--gold); }
    
    .about-wrapper { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
    .about-text { flex: 1.5; }
    .about-text h3 { font-size: 1.8rem; color: var(--gold); margin: 20px 0 15px; }
    .about-text p { line-height: 1.6; margin-bottom: 15px; color: #ccc; }
    .about-img { flex: 1; }
    .about-img img { width: 100%; border-radius: 24px; border: 1px solid var(--gold); }
    
    .contact-flex { display: flex; flex-wrap: wrap; gap: 50px; margin-top: 40px; }
    .contact-info, .contact-form { flex: 1; background: #0f0f0f; padding: 30px; border-radius: 28px; }
    .contact-info { border-left: 4px solid var(--gold); }
    .contact-detail-item { display: flex; align-items: center; gap: 20px; margin-bottom: 35px; }
    .contact-detail-item i { font-size: 2rem; width: 50px; color: var(--gold); }
    .contact-form input, .contact-form textarea { width: 100%; background: #1e1e1e; border: 1px solid #333; padding: 14px 18px; margin-bottom: 20px; border-radius: 16px; color: white; font-family: 'Poppins', sans-serif; }
    .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
    .contact-form button { background: var(--gold); border: none; padding: 12px 28px; font-weight: bold; border-radius: 40px; cursor: pointer; color: black; display: inline-flex; align-items: center; gap: 10px; }
    
    /* Policy Page Styles */
    .policy-container { max-width: 1100px; margin: 0 auto; background: #0c0c0c; border-radius: 32px; padding: 50px 40px; border: 1px solid rgba(212,175,55,0.2); }
    .policy-container h1 { color: var(--gold); font-size: 2.5rem; margin-bottom: 15px; text-align: center; }
    .policy-meta { text-align: center; color: #aaa; margin-bottom: 40px; border-bottom: 1px dashed #333; padding-bottom: 20px; }
    .policy-section { margin-bottom: 45px; }
    .policy-section h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; border-left: 4px solid var(--gold); padding-left: 20px; }
    .policy-section h3 { color: var(--gold-light); font-size: 1.2rem; margin: 20px 0 10px; }
    .policy-section p, .policy-section li { color: #ddd; line-height: 1.7; margin-bottom: 12px; }
    .policy-section ul { margin-left: 30px; margin-bottom: 20px; }
    .policy-section li { margin-bottom: 8px; }
    .policy-highlight { background: rgba(212,175,55,0.08); padding: 20px; border-radius: 20px; border-left: 3px solid var(--gold); margin: 25px 0; }
    .address-block { background: #1a1a1a; padding: 15px; border-radius: 16px; font-family: monospace; margin: 15px 0; }
    .shipping-note { background: rgba(212,175,55,0.05); padding: 15px 20px; border-radius: 16px; border: 1px solid rgba(212,175,55,0.2); margin: 15px 0; }
    
    /* Footer */
    footer { background: #050505; border-top: 2px solid rgba(212,175,55,0.3); padding: 50px 0 30px; margin-top: 20px; }
    .footer-container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
    .footer-col h4 { color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; position: relative; display: inline-block; }
    .footer-col h4:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 45px; height: 2px; background: var(--gold); }
    .footer-logo-img { width: 70px; height: 70px; object-fit: contain; border-radius: 16px; margin-bottom: 15px; border: 1px solid rgba(212,175,55,0.3); }
    .footer-tagline { font-size: 0.85rem; color: #aaa; line-height: 1.5; margin-top: 10px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: #ccc; text-decoration: none; transition: 0.2s; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
    .footer-links a:hover { color: var(--gold); transform: translateX(5px); }
    .footer-address p { color: #bbb; line-height: 1.7; font-size: 0.9rem; margin-bottom: 10px; display: flex; gap: 12px; align-items: flex-start; }
    .footer-address i { color: var(--gold); margin-top: 3px; min-width: 20px; }
    .footer-social { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
    .footer-social-icon { background: #1a1a1a; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; transition: 0.3s; border: 1px solid #333; text-decoration: none; }
    .footer-social-icon:hover { background: var(--gold); color: black; transform: translateY(-3px); }
    .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(212,175,55,0.15); color: #888; font-size: 0.85rem; }
    .hyderabad-tag { font-size: 0.8rem; background: rgba(212,175,55,0.2); border-radius: 40px; padding: 4px 12px; display: inline-block; }
    .owner-name { color: var(--gold); font-weight: 600; }

    /* ========== STICKY WHATSAPP ICON ========== */
    .whatsapp-sticky {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      text-decoration: none;
    }
    .whatsapp-sticky i {
      font-size: 38px;
      color: white;
    }
    .whatsapp-sticky:hover {
      transform: scale(1.1);
      background-color: #20b859;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      animation: none;
    }

    /* Contact Page Hero */
    .contact-hero { text-align: center; padding: 40px 0 30px; }
    .contact-hero h1 { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }
    .contact-hero p { max-width: 700px; margin: 0 auto; color: #ccc; font-size: 1.1rem; }
    
    /* Contact Grid Layout */
    .contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin: 40px 0; }
    @media (max-width: 900px) { .contact-main-grid { grid-template-columns: 1fr; gap: 40px; } }
    
    /* Contact Info Cards */
    .contact-info-card { background: #0f0f0f; border-radius: 28px; padding: 35px; border: 1px solid rgba(212,175,55,0.2); }
    .contact-info-card h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 25px; border-left: 4px solid var(--gold); padding-left: 20px; }
    .contact-detail-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding: 12px; border-radius: 20px; transition: 0.2s; }
    .contact-detail-item:hover { background: rgba(212,175,55,0.08); }
    .contact-detail-item i { font-size: 2rem; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; background: #1a1a1a; border-radius: 50%; color: var(--gold); }
    .contact-detail-item div strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
    .contact-detail-item div p { color: #bbb; font-size: 0.95rem; }
    
    /* Quick Action Buttons */
    .quick-actions { display: flex; flex-wrap: wrap; gap: 15px; margin: 30px 0 20px; }
    .action-btn { flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.2s; }
    .whatsapp-btn { background: #075e54; color: white; border: 1px solid #25D366; }
    .whatsapp-btn:hover { background: #128C7E; transform: scale(1.02); }
    .call-btn { background: #1a1a1a; color: var(--gold); border: 1px solid var(--gold); }
    .call-btn:hover { background: var(--gold); color: black; }
    .email-btn { background: #1a1a1a; color: var(--gold); border: 1px solid var(--gold); }
    .email-btn:hover { background: var(--gold); color: black; }
    
    /* Business Hours */
    .business-hours { background: rgba(212,175,55,0.08); border-radius: 20px; padding: 20px; margin-top: 25px; }
    .business-hours h3 { color: var(--gold); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
    .hour-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .hour-row:last-child { border-bottom: none; }
    .hour-day { font-weight: 500; }
    .hour-time { color: #ccc; }
    .special-note { margin-top: 15px; font-size: 0.85rem; color: #aaa; font-style: italic; }
    
    /* Contact Form */
    .contact-form-card { background: #0f0f0f; border-radius: 28px; padding: 35px; border: 1px solid rgba(212,175,55,0.2); }
    .contact-form-card h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 25px; border-left: 4px solid var(--gold); padding-left: 20px; }
    .form-group { margin-bottom: 20px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; background: #1e1e1e; border: 1px solid #333; padding: 14px 18px; border-radius: 16px; color: white; font-family: 'Poppins', sans-serif; transition: 0.2s; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 8px rgba(212,175,55,0.2); }
    .form-group label { display: block; margin-bottom: 8px; color: #ddd; font-size: 0.9rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
    .submit-btn { background: var(--gold); border: none; padding: 14px 32px; font-weight: bold; border-radius: 50px; cursor: pointer; color: black; display: inline-flex; align-items: center; gap: 12px; font-size: 1rem; transition: 0.2s; }
    .submit-btn:hover { background: var(--gold-light); transform: scale(1.02); }
    .form-feedback { margin-top: 15px; color: var(--gold); font-size: 0.9rem; }
    
    /* Map Section */
    .map-section { margin: 50px 0 30px; }
    .map-section h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; text-align: center; }
    .map-container { border-radius: 28px; overflow: hidden; border: 1px solid rgba(212,175,55,0.3); height: 350px; }
    .map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) invert(90%) hue-rotate(180deg); }
    
    /* Get in Touch Banner */
    .touch-banner { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); border-radius: 28px; padding: 40px; text-align: center; margin: 40px 0; border: 1px solid rgba(212,175,55,0.3); }
    .touch-banner h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 15px; }
    .touch-banner p { margin-bottom: 25px; color: #ccc; }
    .social-links-large { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
    .social-circle { width: 55px; height: 55px; background: #1e1e1e; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); transition: 0.3s; text-decoration: none; border: 1px solid #333; }
    .social-circle:hover { background: var(--gold); color: black; transform: translateY(-5px); }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    /* Tooltip text on hover */
    .whatsapp-sticky::before {
      content: "Chat with us";
      position: absolute;
      right: 75px;
      background: #1a1a1a;
      color: var(--gold);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: 0.2s;
      font-family: 'Poppins', sans-serif;
      border: 1px solid var(--gold);
      pointer-events: none;
    }
    .whatsapp-sticky:hover::before {
      opacity: 1;
      visibility: visible;
      right: 80px;
    }
    @media (max-width: 600px) {
      .whatsapp-sticky {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
      }
      .whatsapp-sticky i {
        font-size: 32px;
      }
      .whatsapp-sticky::before {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr; gap: 35px; }
      .footer-col { text-align: center; }
      .footer-col h4:after { left: 50%; transform: translateX(-50%); }
      .footer-address p { justify-content: center; }
      .footer-social { justify-content: center; }
      .policy-container { padding: 30px 20px; }
      .policy-section h2 { font-size: 1.5rem; }
      .about-section h2 { font-size: 1.6rem; }
      .contact-hero h1 { font-size: 2.2rem; }
    }

    /* About Page Specific Styles */
    .about-page { background: #0c0c0c; }
    .about-hero { text-align: center; padding: 40px 0 30px; }
    .about-hero h1 { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
    .about-hero p { max-width: 800px; margin: 0 auto; color: #ccc; font-size: 1.1rem; }
    .about-section { margin-bottom: 60px; }
    .about-section h2 { color: var(--gold); font-size: 2rem; margin-bottom: 25px; border-left: 4px solid var(--gold); padding-left: 20px; }
    .about-section h3 { color: var(--gold-light); font-size: 1.4rem; margin: 25px 0 15px; }
    .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 30px 0; }
    .feature-card { background: #111; padding: 25px; border-radius: 20px; border: 1px solid rgba(212,175,55,0.2); transition: 0.3s; }
    .feature-card:hover { border-color: var(--gold); transform: translateY(-5px); }
    .feature-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
    .feature-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
    .feature-card p { color: #bbb; line-height: 1.6; }
    .steps-list { display: flex; flex-wrap: wrap; gap: 20px; margin: 30px 0; }
    .step { flex: 1; min-width: 200px; background: #111; padding: 20px; border-radius: 16px; text-align: center; border: 1px solid rgba(212,175,55,0.15); }
    .step .step-num { width: 40px; height: 40px; background: var(--gold); color: black; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: bold; font-size: 1.2rem; }
    .about-text-block p { margin-bottom: 20px; line-height: 1.7; color: #ccc; }
    .highlight-box { background: rgba(212,175,55,0.08); padding: 30px; border-radius: 24px; margin: 30px 0; border-left: 4px solid var(--gold); }