/* Main Page Content Styles */

:root {
    --primary-orange: #FF8C42;
    --dark-orange: #E67E22;
    --light-orange: #FFD7B5;
    --soft-white: #F8F9FA;
    --off-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #555555;
    --accent-blue: #3498DB;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--soft-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://v3b.fal.media/files/b/0a8e2421/nRHYFanPadwo8mxdW7OLw_03f638be6b7f42959dfc3541210ee6f9.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideBackground 25s infinite ease-in-out;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

@keyframes slideBackground {
    0%, 100% {
        background-image: url('/assets/images/Banner/banner1.png');
        background-position: center;
    }
    50% {
        background-image: url('/assets/images/Banner/banner2.jpg');
        background-position: center;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.hero-content h1 span {
    color: #FFD4A3;
}

.hero-content .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    color: #FFE5CC;
}

.hero-content .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section.light {
    background: var(--soft-white);
}

.section.white {
    background: var(--off-white);
}

.section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.section h2 span {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.15);
    border-color: var(--primary-orange);
}

.card:hover::before {
    transform: scaleX(1);
}

.card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card li {
    padding: 0.8rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
}

.card li::before {
    content: '✓';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.2);
}

.about-image i {
    font-size: 8rem;
    color: white;
    opacity: 0.3;
}

/* Stats */
.stat {
    text-align: center;
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #FFF5ED 0%, var(--soft-white) 100%);
    border-radius: 25px;
    padding: 4rem 2rem;
    position: relative;
    border: 1px solid rgba(255, 140, 66, 0.15);
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1rem 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.15);
}

.stars {
    color: #FFB84D;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--text-dark);
    display: block;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.25);
}

.newsletter h2 {
    color: var(--off-white);
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter form {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter input {
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
}

.newsletter input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.newsletter button {
    padding: 1.1rem 2rem;
    background: var(--off-white);
    border: none;
    color: var(--primary-orange);
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.newsletter button:hover {
    background: var(--light-orange);
    color: var(--off-white);
}

/* To Top Button */
.to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
    border: none;
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.badge {
    padding: 1.2rem 2rem;
    background: var(--off-white);
    border-radius: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 140, 66, 0.1);
    font-weight: 500;
}

.badge i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        border-radius: 50px;
        width: 100%;
    }

    .newsletter button {
        border-radius: 50px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-image i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
}