/* MAIN CSS STYLES */
:root {
    /* Primary color palette - eco-friendly pastels */
    --color-primary: #7dffc4;     /* Soft mint #00cc33 */
    --color-secondary: #ffefc8;   /* Sand beige */
    --color-accent: #5f7d9e;      /* Muted #441cff */
    --color-complement: #f4c3d7;  /* Dusty rose */
    --color-neutral: #fffef7;     /* Warm off-white */
    
    /* Shades and variations */
    --color-primary-light: #d0d0d0;
    --color-primary-dark: #205035;
    --color-secondary-light: #ffffff;
    --color-secondary-dark: #f2e4d7;
    --color-accent-light: #c9d6ff;
    --color-accent-dark: #6a80a3;
    --color-complement-light: #ffd9ea;
    --color-complement-dark: #b78796;
    --color-neutral-light: #fdf9f3;
    --color-neutral-dark: #c2c2c2;
    
    /* Text colors */
    --text-dark: #264c3c;
    --text-medium: #7b9c8d;
    --text-light: #96d3ac;
    
    /* Utility colors */
    --color-success: #bfcfc8;
    --color-warning: #ffdf44;
    --color-error: #ffdacf;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* General Reset and Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--color-neutral-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Styling */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-padding-lg {
    padding: var(--spacing-xl) 0;
}

.section-padding-md {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--color-neutral-light);
}

.bg-primary {
    background-color: var(--color-primary-light);
}

.bg-secondary {
    background-color: var(--color-secondary-light);
}

.bg-accent {
    background-color: var(--color-accent-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.site-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* New Fullscreen Hero */
.fullscreen-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fullscreen-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.fullscreen-hero .container {
    position: relative;
    z-index: 2;
}

.fullscreen-hero .hero-content {
    padding: 2rem 0;
}

.fullscreen-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fullscreen-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fullscreen-hero .hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fullscreen-hero .hero-image {
    padding: 2rem 0;
}

.fullscreen-hero .hero-image img {
    max-height: 70vh;
    object-fit: cover;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fullscreen-hero .hero-image img:hover {
    transform: scale(1.02);
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: #ffffff;
}

@media (max-width: 991px) {
    .fullscreen-hero {
        height: auto;
        min-height: 100vh;
    }
    
    .fullscreen-hero .hero-content {
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .fullscreen-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .fullscreen-hero .hero-desc {
        margin: 0 auto 2rem;
    }
    
    .fullscreen-hero .hero-image {
        padding: 0 1rem 3rem;
    }
    
    .fullscreen-hero .hero-image img {
        max-height: 50vh;
    }
}

@media (max-width: 576px) {
    .fullscreen-hero .hero-title {
        font-size: 2rem;
    }
    
    .fullscreen-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .fullscreen-hero .hero-desc {
        font-size: 1rem;
    }
    
    .fullscreen-hero .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .shape-divider svg {
        height: 50px;
    }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid var(--color-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Services Section */
.services-section {
    position: relative;
}

.services-grid {
    margin-top: 3rem;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 1rem 0;
}

.service-features {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-neutral-dark);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.feature-icon-lg {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    display: inline-block;
    padding: 1.5rem;
    border-radius: var(--radius-round);
    background-color: var(--color-primary-light);
}

/* Price Plan Section */
.price-section {
    position: relative;
}

.price-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-primary-light);
    color: var(--text-dark);
}

.price-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--color-primary-dark);
}

.price-body {
    padding: 2rem;
}

.price-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-neutral-light);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Team Section */
.team-section {
    position: relative;
}

.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background-color: white;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    overflow: hidden;
}

.review-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    margin: 1rem 0.5rem;
    position: relative;
}

.review-card::after {
    content: '\201D';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--color-primary-light);
    font-family: serif;
    line-height: 0;
}

.review-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
}

/* Core Info Section */
.coreinfo-section {
    position: relative;
}

.info-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-primary);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 1px solid var(--color-neutral-dark);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(93, 229, 111, 0.25);
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-primary-light);
    height: 100%;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-right: 1rem;
    min-width: 2rem;
    text-align: center;
}

/* Blog Section */
.blog-section {
    position: relative;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-img img {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.blog-link {
    font-weight: 600;
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-desc {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Decorative Elements */
.bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--color-primary-light) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.section-heading {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 