/* Protection Page Styles */
.protection-page {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex-grow: 1;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    flex-grow: 1;
    max-width: 200px;
}

.divider-icon {
    margin: 0 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Alternating Layout */
.alternating-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.alternating-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.9));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder i {
    font-size: 80px;
    color: #6366f1;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.alternating-content {
    flex: 1.5;
}

.warranty-feature {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.warranty-icon {
    font-size: 30px;
    margin-right: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.9));
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.warranty-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.warranty-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Advantage Section */
.advantage-section {
    text-align: center;
}

.advantage-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Full Width Banner */
.full-width-banner {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.05), rgba(16, 185, 129, 0.05));
    margin: 80px 0;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.banner-orb-1 {
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background-color: rgba(99, 102, 241, 0.1);
    animation: float-slow 15s ease-in-out infinite alternate;
}

.banner-orb-2 {
    bottom: -20%;
    left: -5%;
    width: 30vw;
    height: 30vw;
    background-color: rgba(16, 185, 129, 0.1);
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

.full-width-banner h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

/* Protection Reasons in Full-width Banner */
.protection-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.reason-card {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Peace of Mind Section with Animated Background */
.peace-section {
    position: relative;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6));
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    opacity: 0.15;
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background-color: #6366f1;
    animation: float-shape 20s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: -15%;
    left: -5%;
    width: 250px;
    height: 250px;
    background-color: #10b981;
    animation: float-shape 25s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    left: 20%;
    width: 150px;
    height: 150px;
    background-color: #ec4899;
    animation: float-shape 18s ease-in-out infinite alternate;
}

.shape-4 {
    bottom: 30%;
    right: 15%;
    width: 180px;
    height: 180px;
    background-color: #4f46e5;
    animation: float-shape 22s ease-in-out infinite alternate-reverse;
}

@keyframes float-shape {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
    }
    100% {
        transform: translateY(20px) rotate(-15deg) scale(0.9);
    }
}

.peace-section h2 {
    margin-bottom: 30px;
}

.closing-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 18px;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: linear-gradient(to right, #6366f1, #4f46e5);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

/* Float slow animation for banner orbs */
@keyframes float-slow {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-30px) translateX(30px);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .alternating-layout {
        flex-direction: column;
        gap: 40px;
    }

    .alternating-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
    }

    .image-placeholder {
        width: 220px;
        height: 220px;
    }

    .image-placeholder i {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .protection-reasons {
        grid-template-columns: 1fr;
    }

    .advantage-cards {
        grid-template-columns: 1fr;
    }
}