:root {
    /* Primary Colors */
    --primary-1: #86BBD8; /* Soft blue */
    --primary-2: #F4B9B8; /* Soft coral */
    --primary-3: #B8DFD8; /* Mint green */
    --primary-4: #D8B4E2; /* Soft lavender */
    --primary-5: #F9E7B0; /* Soft yellow */
    
    /* Light/Dark Variations */
    --primary-1-light: #B6D5E8;
    --primary-1-dark: #5C94B7;
    --primary-2-light: #FBDAD9;
    --primary-2-dark: #E18E8C;
    --primary-3-light: #DCF1EC;
    --primary-3-dark: #89BFB5;
    --primary-4-light: #EADAF0;
    --primary-4-dark: #B68FC4;
    --primary-5-light: #FCF2D6;
    --primary-5-dark: #EAC972;
    
    /* Neutrals */
    --dark: #333333;
    --medium: #777777;
    --light: #F5F5F5;
    --white: #FFFFFF;
}

/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-1-dark);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-1);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.text-center {
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-1);
    color: var(--white);
    border-color: var(--primary-1);
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-2);
    color: var(--dark);
    border-color: var(--primary-2);
}

.btn-secondary:hover {
    background-color: var(--primary-2-dark);
    border-color: var(--primary-2-dark);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-1);
    border-color: var(--primary-1);
}

.btn-outline:hover {
    background-color: var(--primary-1);
    color: var(--white);
}

/* Section Title Styles */
.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title h3 {
    font-size: 1.25rem;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    color: var(--primary-1);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--primary-1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--primary-3-light), var(--primary-1-light));
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-section h3 {
    font-size: 1rem;
    color: var(--primary-1-dark);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 5;
}

.hero-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: -50px;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--primary-2-light);
    border-radius: 50%;
    opacity: 0.5;
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background-color: var(--primary-4-light);
    border-radius: 50%;
    opacity: 0.6;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section Styles */
.about-section {
    position: relative;
    background-color: var(--white);
}

.about-image {
    position: relative;
}

.about-content {
    padding: 2rem 0;
}

.about-feature {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: var(--primary-3-light);
    border-radius: 50%;
    color: var(--primary-3-dark);
    font-size: 1rem;
}

.about-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Services Section Styles */
.services-section {
    background-color: var(--light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--primary-1-light);
    border-radius: 50%;
    color: var(--primary-1-dark);
    font-size: 1.75rem;
}

.service-item h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-1);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-1);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

/* Features Section Styles */
.features-section {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-3-light);
    border-radius: 50%;
    color: var(--primary-3-dark);
    font-size: 2rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Price Plan Section Styles */
.priceplan-section {
    background-color: var(--light);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-item.popular {
    border: 3px solid var(--primary-1);
    transform: translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: -30px;
    background-color: var(--primary-1);
    color: var(--white);
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-item h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Team Section Styles */
.team-section {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-1);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Reviews Section Styles */
.reviews-section {
    background-color: var(--light);
    position: relative;
}

.reviews-container {
    position: relative;
    padding-bottom: 3rem;
}

.review-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -30px;
    left: -20px;
    color: var(--primary-1-light);
    opacity: 0.5;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Core Info Section Styles */
.coreinfo-section {
    position: relative;
}

.coreinfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.coreinfo-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    color: var(--primary-5-dark);
    font-size: 1.75rem;
}

.coreinfo-item h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background-color: var(--primary-1-light);
    border-radius: 50%;
    color: var(--primary-1-dark);
    font-size: 1.25rem;
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: var(--dark);
    background-color: var(--white);
    border-color: var(--primary-1);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(134, 187, 216, 0.25);
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--white);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

/* Blog Section Styles */
.blog-section {
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-content h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--medium);
}

.blog-meta span {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--primary-1);
}

.footer-desc {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-1);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    margin-right: 1rem;
    color: var(--primary-1);
}

.footer-contact-text {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom small {
    opacity: 0.5;
}

/* Space Section */
#space {
    min-height: 500px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional Page Styles */
.add-page-section {
    padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
    background-color: var(--light);
}

.add-page-section:nth-child(even) {
    background-color: var(--white);
} 