/* Patch for Headings */
section h2 {
    text-align: center !important;
    margin-bottom: 40px;
}
/* Featured Posts Section */
.featured-posts-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.featured-posts-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-posts-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.placeholder-icon {
    margin-bottom: 10px;
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fe0000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.post-card-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.post-card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-card-content h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-content h3 a:hover {
    color: #fe0000;
}

.post-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #fe0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.post-tags {
    display: flex;
    gap: 8px;
}

.post-tag {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.section-cta .primary-cta {
    display: inline-block;
    background: #fe0000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.section-cta .primary-cta:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Blog Categories Section */
.blog-categories {
    padding: 80px 0;
    background: #fff;
}

.blog-categories h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.blog-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-categories .category-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.blog-categories .category-card:hover {
    border-color: #fe0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #fe0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-categories .category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.blog-categories .category-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.category-description {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fe0000 0%, #cc0000 100%);
    color: #fff;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #fff;
    color: #fe0000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 15px;
}

.form-privacy small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.newsletter-stats {
    display: flex;
    gap: 40px;
}

.newsletter-stats .stat {
    text-align: center;
}

.newsletter-stats .stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.newsletter-stats .stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-preview {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-logo {
    width: 40px;
    height: 40px;
    background: #fe0000;
    border-radius: 5px;
}

.preview-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-line {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
}

.preview-line.long {
    width: 100%;
}

.preview-line.medium {
    width: 80%;
}

.preview-line.short {
    width: 60%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 60px;
    color: #fe0000;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* CTA Section Updates */
.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .cta-content h2 {
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: #000;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-categories .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-posts-section {
        padding: 60px 0;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-visual {
        display: none;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .featured-posts-section h2,
    .blog-categories h2,
    .newsletter-content h2,
    .testimonials-section h2 {
        font-size: 28px;
    }
    
    .blog-categories .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-stats {
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Changed to full viewport height */
    min-height: 600px;
    background: #000;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex; /* Added for vertical centering */
    align-items: center; /* Added for vertical centering */
}

.video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Removed top/bottom padding */
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 48px); /* Responsive font size */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-main {
    font-size: clamp(18px, 3vw, 24px); /* Responsive font size */
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-promotion {
    background: rgba(254, 0, 0, 0.9);
    padding: clamp(15px, 2vw, 20px);
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
}

.promotion-text {
    font-size: clamp(24px, 4vw, 32px); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.promotion-subtext {
    font-size: clamp(16px, 2vw, 18px); /* Responsive font size */
    color: #fff;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-cta {
    display: inline-block;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
    white-space: nowrap;
}

.primary-cta {
    background: #fff;
    color: #fe0000;
}

.primary-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.secondary-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0; /* Added padding for mobile */
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .hero-promotion {
        margin: 20px auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 0 15px;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 60px 20px;
    margin-top: -20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-container {
    display: flex;
    justify-content: center;
    align-items: baseline; /* Changed from center to baseline */
    margin-bottom: 15px;
    min-height: 50px; /* Ensure consistent height */
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #fe0000;
    line-height: 1;
    display: inline-block;
}

.stat-symbol {
    font-size: 40px;
    font-weight: 700;
    color: #fe0000;
    margin-left: 2px;
    line-height: 1;
    display: inline-block;
}

.stat-item p {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number,
    .stat-symbol {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 16px;
    }
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-section a:hover {
    background: #fe0000;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    font-size: 18px;
    cursor: pointer;
    background: #f8f8f8;
    padding: 15px 20px;
    margin: 0;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #f0f0f0;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 15px 20px;
    margin: 0;
    background: #fff;
    display: none;
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #fe0000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.quote-text {
    font-size: 16px;
}

.quote-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.floating-quote-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 0, 0, 0.4);
}

.floating-quote-btn:hover .quote-icon {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-main {
        font-size: 20px;
    }
    
    .promotion-text {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .process-timeline {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .view360-content {
        height: 400px;
    }

    .floating-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        padding: 12px 20px;
    }

    .quote-text {
        font-size: 14px;
    }

    .size-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .material-card {
        padding: 20px;
    }

    .view360-content {
        height: 300px;
    }

    .pricing-card {
        padding: 20px;
    }

    .stat-number, 
    .stat-symbol {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}max(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

/* Stats section fixes */
.stat-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    height: 50px; /* Fixed height for better alignment */
}

.stat-number, .stat-symbol {
    font-size: 36px;
    font-weight: bold;
    color: #fe0000;
    display: inline-block;
}
.stat-symbol {
    margin-left: 2px;
}

.stat-item p {
    font-size: 18px;
    color: #333;
}

/* Partner Section */
.partner-section {
    padding: 40px 20px;
    background: #fff;
    overflow: hidden;
}
.partner-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.logo-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.logo-scroll {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
    min-width: 100%;
    padding-right: 40px; /* Add padding to prevent gap at the end */
}
.partner-logo {
    flex: 0 0 150px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-16.67% - 7px)); }
    /* Adjusted to move exactly 1/6 of the total width (since we have 6 logos in one set) */
}

/* Sports Categories */
.sports-categories {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.sports-categories h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
    font-weight: normal;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-card a {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: black;
    height: 100%;
    width: 100%;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Materials Section */
.materials-section {
    padding: 60px 20px;
    background: #fff;
}

.materials-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.material-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
}

.material-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    font-size: 32px;
}

.material-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.material-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.material-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-card li {
    color: #333;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.material-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fe0000;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .material-card {
        padding: 30px 25px;
    }
    
    .material-card h3 {
        font-size: 22px;
    }
}
/* Size Guide CSS */
.size-guide {
    padding: 60px 20px;
    background: #fff;
}

.size-guide h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}


.size-guide-content {
    max-width: 1200px;
    margin: 0 auto;
}

.size-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.size-tab {
    padding: 12px 30px;
    background: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    color: #333;
}

.size-tab.active {
    background: #fe0000;
    color: #fff;
}

.size-chart {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-collapse: collapse;
}

.size-chart th {
    background: #f5f5f5;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.size-chart td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}


.size-tab.active {
    background: #fe0000;
    color: #fff;
}



.measurement-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.measurement-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.measurement-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.measurement-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .measurement-guide {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .measurement-item {
        padding: 20px 15px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .measurement-guide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .measurement-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .measurement-item p {
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .measurement-guide {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .measurement-item {
        padding: 20px;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .measurement-item p {
        max-width: 100%;
    }
}

/* 360 View Section */
.view360-section {
    padding: 60px 20px;
    background: #f8f8f8;
}
.view360-container {
    max-width: 1200px;
    margin: 0 auto;
}
.view360-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #1f1f1f;
}
.view360-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Center the tabs */
}
.view360-tab {
    padding: 8px 20px;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.view360-tab.active {
    background: #fe0000;
    color: #fff;
}
.view360-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 400px;
    position: relative;
    overflow: hidden;
}
.view360-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.view360-frame.active {
    display: flex;
}
.view360-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}
@media (max-width: 768px) {
    .view360-content {
        height: 400px;
    }
    
    .view360-frame img {
        max-width: 300px;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.process-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

/* Progress Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #fe0000;
    z-index: 1;
}

.process-step {
    position: relative;
    flex: 1;
    min-width: 160px;
    z-index: 2;
}

.step-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #fe0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 18px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #fe0000;
    position: relative;
}

.step-icon {
    font-size: 24px;
    margin: 15px 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1f1f1f;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Arrow indicators */
.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    color: #fe0000;
    font-size: 24px;
    z-index: 3;
    font-weight: bold;
}

.process-step:last-child::after {
    display: none;
}

/* Last step styling */
.process-step:last-child .step-number {
    background: #1f1f1f;
    box-shadow: 0 0 0 2px #1f1f1f;
}

.process-note {
    text-align: center;
    margin-top: 30px;
}

.process-note p {
    display: inline-block;
    color: #fe0000;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(254, 0, 0, 0.1);
}

/* Animation Classes */
.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 40px);
        max-width: 280px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .process-step {
        flex: 0 0 100%;
        max-width: 300px;
    }

    .process-timeline {
        gap: 20px;
    }
}
/* Pricing Section */
.pricing-section {
    background: #f8f8f8;
    padding: 60px 20px;
    margin: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: bold;
    color: #fe0000;
    margin-bottom: 25px;
}

.pricing-card .features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card .features li {
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card .button-wrapper {
    margin-top: 30px;
    padding-top: 20px;
}

.pricing-card a.get-started {
    display: inline-block;
    background: #fe0000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card a.get-started:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
    }

    .pricing-card {
        padding: 40px 30px;
    }
}

/* Animation for cards */
.pricing-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-section a:hover {
    background: #fe0000;
    color: #fff;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    font-size: 18px;
    cursor: pointer;
    background: #f8f8f8;
    padding: 20px;
    margin: 0;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #f0f0f0;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 20px;
    margin: 0;
    background: #fff;
    display: none;
    line-height: 1.6;
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #fe0000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.quote-text {
    font-size: 16px;
    white-space: nowrap;
}

.quote-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.floating-quote-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 0, 0, 0.4);
}

.floating-quote-btn:hover .quote-icon {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-grid img {
        height: 200px;
    }

    .floating-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        padding: 12px 20px;
    }

    .quote-text {
        font-size: 14px;
    }

    .faq-item h3 {
        font-size: 16px;
        padding: 15px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 180px;
    }

    .floating-quote-btn {
        padding: 10px 15px;
        display: none !important;
    }

    .quote-text {
        font-size: 13px;
    }

    .faq-item h3 {
        font-size: 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}