        /* Modern E-commerce Layout */
        :root {
            --primary: #1a237e;
            --primary-light: #534bae;
            --primary-dark: #000051;
            --secondary: #00b0ff;
            --accent: #ff4081;
            --success: #00c853;
            --warning: #ff9100;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --light-gray: #f0f0f0;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-footer: 0 -5px 25px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: #f8fafc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }


        /* Warranty Claim Hero */
        .warranty-hero {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .warranty-hero-container {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius);
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .warranty-hero-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/hdd-banner.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }

        .warranty-hero-container > * {
            position: relative;
            z-index: 2;
        }

        .warranty-hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .warranty-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .status-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .status-badge i {
            color: var(--success);
        }

        /* Warranty Content */
        .warranty-content {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .warranty-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .warranty-form-section {
            background: white;
            border-radius: var(--radius);
            padding: 50px;
            box-shadow: var(--shadow);
        }

        .warranty-info-section {
            background: white;
            border-radius: var(--radius);
            padding: 50px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

  

        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
        }

        .form-label span {
            color: var(--accent);
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light);
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: white;
            box-shadow: 0 0 0 3px rgba(0, 176, 255, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .file-upload {
            position: relative;
            border: 2px dashed var(--border);
            border-radius: var(--radius);
            padding: 40px 20px;
            text-align: center;
            background: var(--light);
            cursor: pointer;
            transition: var(--transition);
        }

        .file-upload:hover {
            border-color: var(--secondary);
            background: rgba(0, 176, 255, 0.05);
        }

        .file-upload input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-upload-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .file-upload-text {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .file-upload-text strong {
            color: var(--primary);
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }

        .form-checkbox input {
            margin-top: 5px;
            transform: scale(1.2);
        }

        .form-checkbox label {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .form-checkbox a {
            color: var(--secondary);
            text-decoration: none;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 176, 255, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Process Steps */
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .process-step {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: var(--light);
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }

        .process-step:hover {
            background: white;
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .step-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Warranty Info Cards */
        .info-cards {
            display: grid;
            gap: 25px;
        }

        .info-card {
            background: linear-gradient(135deg, rgba(255, 64, 129, 0.1) 0%, rgba(255, 64, 129, 0.05) 100%);
            border-left: 4px solid var(--accent);
            padding: 25px;
            border-radius: var(--radius);
        }

        .info-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .info-card ul {
            margin-left: 20px;
            color: var(--gray);
        }

        .info-card li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        /* Timeline */
        .timeline-section {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .timeline-container {
            background: white;
            border-radius: var(--radius);
            padding: 50px;
            box-shadow: var(--shadow);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--secondary), var(--primary-light));
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            position: absolute;
            left: 18px;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
            border: 4px solid white;
        }

        .timeline-content {
            margin-left: 70px;
            background: var(--light);
            padding: 25px;
            border-radius: var(--radius);
            flex: 1;
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .timeline-content p {
            color: var(--gray);
            line-height: 1.6;
        }

      
        /* Footer Styles */
        .main-footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            margin-top: auto;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a237e' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
            background-size: cover;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .contact-info-footer {
            list-style: none;
        }

        .contact-info-footer li {
            margin-bottom: 20px;
            display: flex;
            gap: 15px;
        }

        .contact-info-footer i {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .newsletter {
            margin-top: 25px;
        }

        .newsletter-input-group {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-map {
            height: 108px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            flex-direction: column;
        }

        .footer-map i {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        /* Sub Footer */
        .sub-footer {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .sub-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .payment-method:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-extra-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-extra-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-extra-links a:hover {
            color: var(--secondary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .simple-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .warranty-hero-title {
                font-size: 2.5rem;
            }
            
            .warranty-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .warranty-form-section, .warranty-info-section {
                padding: 40px;
            }
            
            .timeline-container, .faq-container {
                padding: 40px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .warranty-hero-container {
                padding: 60px 30px;
            }
            
            .warranty-hero-title {
                font-size: 2rem;
            }
            
            .warranty-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .warranty-form-section, .warranty-info-section {
                padding: 30px;
            }
            
            .process-step {
                flex-direction: column;
                gap: 15px;
            }
            
            .timeline::before {
                left: 25px;
            }
            
            .timeline-dot {
                left: 13px;
            }
            
            .timeline-content {
                margin-left: 60px;
            }
            
            .timeline-container, .faq-container {
                padding: 30px;
            }
            
            .sub-footer-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
            
            .footer-extra-links {
                justify-content: center;
                gap: 20px;
            }
            
            .footer-payment-methods {
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 12px 15px;
            }
            
            .logo-text1 {
                font-size: 1.4rem;
            }
            
            .action-btn span {
                display: none;
            }
            
            .action-btn {
                padding: 10px;
            }
            
            .logo-text1::before {
                height: 25px;
                width: 4px;
            }
            
            .warranty-hero {
                margin: 20px auto;
            }
            
            .warranty-hero-container {
                padding: 40px 20px;
            }
            
            .warranty-hero-title {
                font-size: 1.8rem;
            }
            
            .warranty-form-section, .warranty-info-section {
                padding: 20px;
            }
            
            .timeline-container, .faq-container {
                padding: 20px;
            }
            
            .footer-content {
                padding: 60px 20px 40px;
            }
            
            .newsletter-input-group {
                flex-direction: column;
            }
          
        }