/* Root Variables */
:root {
    --primary-color-1: #5e76ff;  /* Primary blue */
    --primary-color-2: #86d38f;  /* Fresh green */
    --primary-color-3: #f8c459;  /* Warm yellow */
    --primary-color-4: #9c6af7;  /* Royal purple */
    --primary-color-5: #f47c9a;  /* Soft pink */
    
    --light-1: #eef0ff;
    --light-2: #f0f9f2;
    --light-3: #fffaf0;
    --light-4: #f7f2ff;
    --light-5: #fff0f5;
    
    --dark-1: #253672;
    --dark-2: #1a4d23;
    --dark-3: #6b5617;
    --dark-4: #442c70;
    --dark-5: #702c45;
    
    --grey-100: #f8f9fa;
    --grey-200: #e9ecef;
    --grey-300: #dee2e6;
    --grey-400: #ced4da;
    --grey-500: #adb5bd;
    --grey-600: #6c757d;
    --grey-700: #495057;
    --grey-800: #343a40;
    --grey-900: #212529;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 8px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--grey-800);
    overflow-x: hidden;
    background-color: var(--grey-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--grey-900);
}

a {
    color: var(--primary-color-1);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-1);
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color-1);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-1);
}

.btn-secondary {
    background-color: var(--primary-color-3);
    color: var(--dark-3);
}

.btn-secondary:hover {
    background-color: var(--dark-3);
    color: white;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Shape Elements */
.shape {
    position: absolute;
    z-index: -1;
}

.shape-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--light-1);
}

.shape-blob {
    width: 400px;
    height: 400px;
    background-color: var(--light-3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--light-5);
    opacity: 0.5;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-1);
}

.nav-link {
    font-weight: 600;
    color: var(--grey-700) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color-1);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color-1) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-color: var(--light-1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title-1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle-1 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.hero-desc-1 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.about-feature-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color-1);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

/* Services Section */
.services-section {
    background-color: var(--light-2);
    position: relative;
    overflow: hidden;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 5px solid var(--primary-color-2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--grey-600);
}

.service-price {
    font-size: 1.5rem;
    color: var(--primary-color-2);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--grey-300);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color-2);
    margin-right: 0.5rem;
}

/* Features Section */
.features-section {
    position: relative;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-color: var(--primary-color-3);
    z-index: -1;
    opacity: 0.1;
    border-radius: calc(var(--border-radius) + 10px);
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 0.2;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-3);
}

.feature-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--grey-600);
}

/* Price Plan Section */
.priceplan-section {
    background-color: var(--light-4);
    position: relative;
    overflow: hidden;
}

.price-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--grey-300);
}

.price-card.popular {
    transform: scale(1.05);
    border-color: var(--primary-color-4);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.price-card.popular .price-header {
    background-color: var(--primary-color-4);
}

.price-header {
    background-color: var(--grey-800);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.price-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
}

.price-features {
    list-style: none;
    padding: 1.5rem;
    margin-bottom: 0;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--grey-300);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    margin-right: 0.5rem;
    color: var(--primary-color-4);
}

.price-footer {
    padding: 1.5rem;
    text-align: center;
}

/* Team Section */
.team-section {
    position: relative;
}

.team-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    background-color: white;
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color-1);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-5);
    position: relative;
    overflow: hidden;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 1rem 0.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--grey-300);
    opacity: 0.5;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--grey-700);
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.review-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-name {
    font-weight: 600;
    color: var(--grey-900);
}

.reviews-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color-5);
    opacity: 0.5;
}

.reviews-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Core Info Section */
.coreinfo-section {
    position: relative;
}

.coreinfo-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid var(--primary-color-1);
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.coreinfo-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.coreinfo-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.coreinfo-desc {
    color: var(--grey-600);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-1);
    position: relative;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid var(--grey-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 0.2rem rgba(94, 118, 255, 0.25);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--grey-600);
}

.contact-info {
    padding: 2.5rem;
    background-color: var(--primary-color-1);
    color: white;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info h3 {
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-text {
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    position: relative;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--grey-600);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--grey-600);
    margin-bottom: 1.5rem;
}

.blog-link {
    font-weight: 600;
    color: var(--primary-color-1);
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-3);
    position: relative;
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    background-color: white;
    color: var(--grey-800);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color-3);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--grey-300);
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
    color: var(--grey-600);
}

/* Gallery Section */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-1);
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

/* Footer */
footer {
    background-color: var(--grey-900);
    color: white;
    padding-top: 4rem;
}

.footer-top {
    padding-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff0f5;
}

.footer-desc {
    color: var(--grey-400);
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--grey-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: var(--grey-400);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color-1);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.site-copyright {
    color: var(--grey-500);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title-1 {
        font-size: 2.5rem;
    }
    
    .shape {
        width: 200px;
        height: 200px;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-title-1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1.1rem;
    }
    
    .hero-desc-1 {
        font-size: 1rem;
    }
    
    .service-card,
    .feature-card,
    .price-card,
    .team-card,
    .blog-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title-1 {
        font-size: 1.8rem;
    }
} 