/* Root Variables */
:root {
    /* Primary Colors */
    --primary-green: #2ecc71;
    --primary-teal: #16a085;
    --primary-amber: #f39c12;
    --primary-purple: #9b59b6;
    --primary-slate: #34495e;
    
    /* Light/Dark Shades */
    --light-green: #a3e4d7;
    --dark-green: #1e8449;
    --light-teal: #76d7c4;
    --dark-teal: #0e6655;
    --light-amber: #f8c471;
    --dark-amber: #d68910;
    --light-purple: #d7bde2;
    --dark-purple: #7d3c98;
    --light-slate: #85929e;
    --dark-slate: #1c2833;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-amber) 0%, var(--primary-purple) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-purple) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-green) 0%, var(--light-teal) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography - Conservative Sizes */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-slate);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--dark-slate);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--dark-slate);
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles */
.header-section {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 12px !important;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
    color: var(--dark-slate);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--light-amber) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.hero-section img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Cards and Components */
.feature-card, .service-card, .price-card, .career-card, .case-card, .blog-card, .info-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .career-card:hover, .case-card:hover, .blog-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card {
    background: var(--gradient-light);
    color: var(--dark-slate);
}

.feature-card i {
    color: var(--primary-teal);
}

/* Services Section */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Price Plans */
.price-card {
    padding: 2rem;
    position: relative;
}

.price-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card.featured h4, .price-card.featured p {
    color: var(--white);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--primary-teal);
}

.price-card.featured .price-amount {
    color: var(--white);
}

/* Team Section */
.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--light-green);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

/* Reviews Slider */
.review-card {
    background: var(--off-white);
    border-radius: 20px;
    min-height: 250px;
}

.stars i {
    color: var(--primary-amber);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-date {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-control, .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Contact Info */
.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Blog Cards */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.blog-card {
    padding: 0;
}

.blog-card h4, .blog-card p, .blog-card a {
    padding: 0 1.5rem;
}

.blog-card h4 {
    padding-top: 1rem;
}

.blog-card a {
    padding-bottom: 1.5rem;
    display: inline-block;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--dark-green);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: var(--off-white);
    color: var(--dark-slate);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
}

/* Gallery */
.gallery-section {
    background: var(--off-white);
}

.gallery-img {
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-section {
    background: var(--gradient-dark);
    color: var(--white);
}

.footer-section h3, .footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul {
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Swiper Customization */
.swiper {
    padding: 2rem 0;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-green);
}

.swiper-pagination-bullet-active {
    background: var(--primary-green);
}

/* Breadcrumbs (for additional pages) */
.breadcrumb {
    background: none;
    padding: 1rem 0;
    margin: 0;
}

.breadcrumb img {
    height: 20px;
    width: auto;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--primary-teal);
}

/* Info Cards */
.info-card {
    padding: 2rem;
    height: 100%;
    background: var(--gradient-light);
}

.info-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    padding: 2rem;
    border-left: 4px solid var(--primary-green);
}

/* Case Study Cards */
.case-card {
    padding: 1.5rem;
}

.case-card img {
    border-radius: 15px;
}

/* Decorative Shapes */
.about-section, .features-section, .priceplan-section, .coreinfo-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(45deg);
}

.features-section {
    background: var(--off-white);
}

.services-section, .team-section, .casestudy-section, .career-section, .blog-section {
    background: var(--white);
}

.reviews-section, .process-section, .timeline-section, .faq-section {
    background: var(--off-white);
}

/* Space Page Specific */
#space {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Additional decorative elements */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
} 