/* Clonify-Style Homepage CSS */

/* CSS Variables - Same as product.css */
:root {
    --color-primary: #080046;
    --color-primary-light: #f0f0f0;
    --color-primary-dark: #333333;
}

/* Hero Section */
.clonify-hero {
    position: relative;
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Mysterious animated overlay */
.clonify-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.2) 0%,
        rgba(118, 75, 162, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    animation: mysteriousGlow 8s ease-in-out infinite;
}

@keyframes mysteriousGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Bestsellers controls under cards */
.bestsellers-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.bestsellers-control {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.bestsellers-control:hover {
    background: #f5f5f5;
}

.bestsellers-control.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.clonify-hero .container {
    position: relative;
    z-index: 2;
    animation: fadeInReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
}

@keyframes fadeInReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.clonify-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: titleReveal 2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
    opacity: 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                 0 0 60px rgba(102, 126, 234, 0.2);
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        letter-spacing: 10px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 1px;
    }
}

.clonify-hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: subtitleReveal 2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    opacity: 0;
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.btn-clonify {
    display: inline-block;
    background: white;
    color: #080046;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: buttonReveal 2s cubic-bezier(0.19, 1, 0.22, 1) 0.9s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.btn-clonify::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-clonify:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-clonify:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.clonify-hero__badge {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Product Categories */
.product-categories {
    padding: 40px 20px 16px; /* tighter bottom so next section is closer */
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    overflow-x: hidden;
    max-width: 100%;
}

.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #080046;
    margin-bottom: 30px;
    text-align: center;
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.products-scroll::-webkit-scrollbar {
    height: 10px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #080046;
    border-radius: 10px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: #1a2456;
}

.product-card-scroll {
    min-width: 320px; /* desktop: several cards visible */
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.product-card-scroll:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-card-scroll img {
    width: 100%;
    height: 360px; /* slightly taller cards on desktop */
    object-fit: contain;
    background: white;
    padding: 20px;
}

.product-card-scroll__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-scroll__title {
    font-size: 1.1rem;
    color: #080046;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.product-card-scroll__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1rem;
}

.star.filled {
    color: #ffa500;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.product-card-scroll__price {
    font-size: 1.4rem;
    color: #080046;
    font-weight: 700;
    margin-top: auto;
}

.compare-at-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

/* Category Cards Section */
.category-cards-section {
    padding: 60px 20px 40px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.category-cards-track {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
}

.category-card {
    flex: 0 0 calc(26% - 10px); /* desktop: slightly wider but all 4 still visible */
    max-width: calc(26% - 10px);
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: #080046;
    border: 1px solid #ececec;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: start;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.category-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.95rem;
    color: #555;
}

.category-card__image-wrapper {
    width: 100%;
    height: 260px; /* taller so full image fits vertically */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full image without cropping */
    display: block;
}

.category-cards-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.category-cards-control {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.category-cards-control:hover {
    background: #f5f5f5;
}

.category-cards-control.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* Profitable Reselling Section */
.profitable-reselling {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.section-heading {
    font-size: 2.5rem;
    color: #080046;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subheading {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #080046;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #080046;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.trust-badge p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* Hero Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(102,126,234,0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(118,75,162,0.3), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 33% 50%, rgba(102,126,234,0.2), transparent),
        radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.2), transparent);
    background-size: 200% 200%, 200% 200%, 300% 300%, 250% 250%, 200% 200%, 180% 180%, 220% 220%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 33% 66%, 80% 20%;
    animation: particlesFloat 20s ease-in-out infinite;
    opacity: 0;
    animation: particlesFloat 20s ease-in-out infinite, particlesFadeIn 2s ease-out forwards;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 33% 66%, 80% 20%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%, 100% 0%, 0% 100%, 66% 33%, 20% 80%;
    }
}

@keyframes particlesFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hero Title Animation */
.hero-title-animated {
    animation: heroTitleMystery 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes heroTitleMystery {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(5px);
        letter-spacing: 8px;
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        letter-spacing: 1px;
    }
}

/* Hero Subtitle Animation */
.hero-subtitle-animated {
    animation: heroSubtitleReveal 2.5s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(3px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Hero Button Animation */
.hero-btn-animated {
    animation: heroBtnAppear 2.5s cubic-bezier(0.19, 1, 0.22, 1) 1.5s forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

@keyframes heroBtnAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animated gradient overlay for hero */
.hero-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(102, 126, 234, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(118, 75, 162, 0.15) 100%
    );
    z-index: 1;
    animation: gradientShift 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(10px) scale(1.02);
    }
}

/* Why Best Section */
.why-best {
    padding: 100px 20px;
    color: white;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.why-best .section-heading {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-best .section-subheading {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.guarantee-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    color: #080046;
    margin-bottom: 15px;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Section - Complete styles copied from product.css */
.faq-section {
    padding: 60px 20px;
    background: white;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    text-align: center;
}

.faq-list .collapsible {
    width: 100%;
    padding: 1.5rem 1.25rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.faq-list .collapsible:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-list .collapsible.active {
    border-color: var(--color-primary);
    background: #f8f9fa;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-list .collapsible-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-list .collapsible.active .collapsible-icon {
    transform: rotate(180deg);
}

.faq-list .content {
    padding: 1.5rem 1.25rem;
    background: white;
    border: 1px solid var(--color-primary);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-list .content.active {
    display: block;
}

.faq-list .content p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .faq-list .collapsible {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .faq-list .content {
        padding: 1.25rem 1rem;
        margin-bottom: 12px;
    }
}

/* Carousel Counter */
.carousel-counter {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    padding: 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .clonify-hero__title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .section-subheading {
        text-align: center;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
        max-width: 100%;
        width: calc(100% - 20px);
        margin: 0 auto 40px;
    }
    
    .product-categories .container {
        padding: 0 5px;
    }
    
    .products-scroll {
        gap: 12px;
        padding: 20px 10px;
    }
    
    /* tablet: still multiple cards, slightly larger */
    .product-card-scroll {
        min-width: 260px;
    }
    
    .product-card-scroll img {
        height: 230px; /* taller on tablet */
        padding: 10px;
    }
    
    .product-card-scroll__content {
        padding: 12px;
    }
    
    .product-card-scroll__title {
        font-size: 0.9rem;
    }
    
    .product-card-scroll__price {
        font-size: 1.15rem;
    }
    
    .clonify-hero {
        padding: 60px 15px;
        min-height: 450px;
        text-align: center;
    }
    
    .why-best {
        padding: 60px 15px;
        min-height: 400px;
        text-align: center;
    }
    
    .why-best .section-heading {
        font-size: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .why-best .section-subheading {
        text-align: center;
        padding: 0 15px;
    }
    
    .btn-clonify {
        margin: 20px auto 0;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .product-categories .container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .products-scroll {
        gap: 8px;
        padding: 20px 0; /* remove side padding */
    }

    /* tighten bottom spacing of Bestsellers section on mobile */
    .product-categories {
        padding-bottom: 4px;
    }
    
    /* mobile: ~1.5 product cards visible */
    .product-card-scroll {
        min-width: 70%;
        max-width: 70%;
    }
    
    .product-card-scroll img {
        height: 210px; /* taller on mobile */
        padding: 8px;
    }

    /* mobile: ~1.5 category cards visible with more of second image */
    .category-cards-section .container {
        padding: 0; /* allow cards to reach screen edge */
    }
    .category-cards-track {
        padding: 0;
    }
    .category-card {
        flex: 0 0 70%;
        max-width: 70%;
    }
    
    .product-card-scroll__content {
        padding: 10px;
    }
    
    .product-card-scroll__title {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .product-card-scroll__price {
        font-size: 1.1rem;
    }
    
    .star-rating {
        font-size: 0.8rem;
    }
    
    .rating-count {
        font-size: 0.75rem;
    }
    
    .clonify-hero__title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .clonify-hero__subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .btn-clonify {
        padding: 14px 32px;
        font-size: 1rem;
        margin: 20px auto;
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .section-heading {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .section-subheading {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .trust-badge {
        text-align: center;
        padding: 25px 15px;
        min-height: 160px;
    }
    
    .trust-badge p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 15px;
        width: calc(100% - 30px);
        margin: 40px auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
        width: 100%;
        margin: 0 auto 40px;
    }
    
    .feature-card {
        min-height: auto;
        padding: 20px 10px;
        font-size: 0.9rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .guarantee-item {
        padding: 25px 15px;
        font-size: 0.9rem;
    }
    
    .guarantee-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
}

/* Content with Image Section */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.content-text h3 {
    font-size: 2rem;
    color: #080046;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-list i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonials-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonials-control {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonials-control:hover {
    background: #f5f5f5;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonials-track .testimonial-card {
    min-width: 300px;
    flex: 0 0 300px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.testimonial-author strong {
    color: #080046;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: #080046;
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background: #1a2456;
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.comparison-table td.highlight-col {
    background: #f8f9ff;
}

.comparison-table i.fa-check-circle {
    color: #22c55e;
    font-size: 1.5rem;
}

.comparison-table i.fa-times-circle {
    color: #ef4444;
    font-size: 1.5rem;
}

.comparison-table i.fa-minus-circle {
    color: #fbbf24;
    font-size: 1.5rem;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-text h3 {
        font-size: 1.6rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .testimonials-track {
        gap: 12px;
    }

    .testimonials-track .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .testimonial-image-wrapper {
        height: 200px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

