/* Color Palette - Harmonious Pastels */
:root {
    --primary-color: #8B7ED8;     /* Soft Purple */
    --secondary-color: #A8E6CF;   /* Mint Green */
    --accent-color: #FFD7A8;      /* Peach */
    --neutral-color: #E8DDD7;     /* Warm Beige */
    --highlight-color: #F2A7CA;   /* Soft Pink */
    
    /* Light Shades */
    --primary-light: #B5A3E8;
    --secondary-light: #C4F0DC;
    --accent-light: #FFE4C1;
    --neutral-light: #F2EAE5;
    --highlight-light: #F7C4D9;
    
    /* Dark Shades */
    --primary-dark: #6B5BA8;
    --secondary-dark: #7FB89F;
    --accent-dark: #E5B878;
    --neutral-dark: #C4B5A7;
    --highlight-dark: #D8799A;
    
    /* Text Colors */
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(139, 126, 216, 0.1);
    --shadow-medium: 0 4px 20px rgba(139, 126, 216, 0.15);
    --shadow-heavy: 0 8px 30px rgba(139, 126, 216, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #FAFAFA;
    font-size: 16px;
}

.container {
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-light) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--text-white);
}

/* Breadcrumb Styles */
.breadcrumb-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, var(--neutral-light), var(--neutral-color));
}

.breadcrumb-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../BEN_images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content h1 {
    color: var(--primary-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: var(--highlight-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.py-5 {
    padding: 4rem 0;
}

section {
    position: relative;
}

section:nth-child(even) {
    background-color: var(--neutral-light);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary-light), var(--neutral-light));
}

.about-feature {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 10px;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background: var(--accent-light);
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 60px;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

/* Price Plan Section */
.priceplan-section {
    background: var(--highlight-light);
}

.price-plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-plan-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.price-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.price-plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-plan-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--neutral-light);
}

/* Team Section */
.team-section {
    background: var(--secondary-light);
}

.team-member {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-light);
}

.team-member h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--neutral-light);
}

.testimonials-swiper {
    padding-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    margin: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-card h5 {
    color: var(--primary-dark);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-dark);
}

/* Core Info Section */
.coreinfo-section {
    background: white;
}

.coreinfo-item {
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.coreinfo-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coreinfo-item h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--primary-light);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 2px solid var(--neutral-color);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 126, 216, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Blog Section */
.blog-section {
    background: var(--accent-light);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: var(--highlight-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
overflow-x: hidden;
    background: white;
    padding: 1.5rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
    background: var(--secondary-light);
}

.gallery-item {
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--text-white);
}

.footer h5 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-light);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Additional Page Styles */
.page-section {
    background: white;
}

.page-section:nth-child(even) {
    background: var(--neutral-light);
}

.element-card {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.element-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.element-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.element-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Responsive Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .swiper {
        overflow: visible;
    }
    
    .navbar-nav {
  flex-direction: row;
        text-align: center;
        padding: 1rem 0;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
} 