/* Plant Nursery Template - Main CSS */
:root {
    /* Primary Color Palette */
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-emerald: #50c878;
    --warm-terracotta: #c65d30;
    --golden-yellow: #f4a261;
    
    /* Light/Dark Shades */
    --light-green: #a8d5a0;
    --dark-green: #1a3317;
    --light-terracotta: #e07b51;
    --dark-terracotta: #a04a25;
    --light-yellow: #f7c392;
    --dark-yellow: #e76f51;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-accent: linear-gradient(135deg, var(--accent-emerald), var(--golden-yellow));
    --gradient-warm: linear-gradient(135deg, var(--warm-terracotta), var(--golden-yellow));
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-small: 0.875rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-green);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
    margin-bottom: var(--spacing-sm);
    color: #666;
}

/* Header Styles */
.header-section {
    background: var(--gradient-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: white !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--golden-yellow) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: var(--gradient-accent);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-plants.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) 0;
}

.hero-content h1 {
    color: white;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.hero-content h2 {
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card i {
    color: var(--accent-emerald);
    margin-bottom: var(--spacing-md);
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: var(--spacing-lg);
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.service-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-terracotta);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Features Section */
.features-section {
    background: var(--gradient-primary);
    color: white;
}

.features-section h2,
.features-section h3 {
    color: white;
}

.feature-item {
    padding: var(--spacing-md);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.feature-icon {
    margin-right: var(--spacing-md);
    color: var(--golden-yellow);
}

/* Price Plan Section */
.priceplan-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card.featured {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.05);
}

.price-card.featured h4,
.price-card.featured .price {
    color: white;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.price-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.price-card.featured li::before {
    color: white;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--accent-emerald);
}

/* Reviews Section */
.reviews-section {
    background: var(--gradient-warm);
    color: white;
}

.reviews-section h2,
.reviews-section h3,
.reviews-section p {
    color: white;
}

.review-card {
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--golden-yellow);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--golden-yellow);
    opacity: 1;
}

/* Case Study Section */
.casestudy-section {
    background: white;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-md);
}

/* Timeline Section */
.timeline-section {
    background: white;
}

.timeline-item {
    position: relative;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-md);
}

/* Career Section */
.career-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.career-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Core Info Section */
.coreinfo-section {
    background: var(--gradient-primary);
    color: white;
}

.coreinfo-section h2,
.coreinfo-section h3 {
    color: white;
}

.coreinfo-item {
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-lg);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.coreinfo-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.coreinfo-item i {
    color: var(--golden-yellow);
}

/* Contact Section */
.contacts-section {
    background: white;
}

.contact-form {
    background: #f8f9fa;
    padding: var(--spacing-xl);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info {
    padding: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    color: var(--accent-emerald);
    margin-right: var(--spacing-md);
    font-size: 1.2rem;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: var(--spacing-lg);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-item {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: 10px;
    border-left: 4px solid var(--accent-emerald);
}

.faq-item h5 {
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: var(--spacing-xl) 0;
}

.gallery-section img {
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer-section {
    background: var(--gradient-primary);
    color: white;
}

.footer-section h5,
.footer-section h6,
.footer-section p {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--golden-yellow);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid var(--accent-emerald);
    color: var(--accent-emerald);
    background: transparent;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-emerald);
    color: white;
    transform: translateY(-2px);
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 0.2rem rgba(80, 200, 120, 0.25);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.bg-gradient-warm {
    background: var(--gradient-warm);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations will be disabled for users who prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.in-view {
        opacity: 1;
        transform: translateY(0);
    }
} 