/* Root Variables */
:root {
    --primary-color: #4A9B8E;
    --secondary-color: #F4A460;
    --accent-color: #E08E79;
    --dark-color: #2C3E50;
    --light-color: #F7F3F0;
    
    --primary-light: #6BB5A8;
    --primary-dark: #357A6E;
    --secondary-light: #F6B88C;
    --secondary-dark: #D08840;
    --accent-light: #E9A89B;
    --accent-dark: #C77461;
    
    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-2: linear-gradient(45deg, var(--accent-color) 0%, var(--primary-light) 100%);
    --gradient-3: linear-gradient(180deg, rgba(74,155,142,0.1) 0%, rgba(244,164,96,0.1) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 14px !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-size: 10px;
    color: var(--dark-color) !important;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.hero-section h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    color: var(--light-color);
    opacity: 0.9;
}

.hero-section p {
    color: white;
    font-size: 1.1rem;
}

.hero-section img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 5px solid rgba(255,255,255,0.2);
}

/* Feature Box */
.feature-box {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card .price {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 20px;
}

.service-card ul {
    padding-left: 0;
}

.service-card ul li {
    padding: 5px 0;
    color: #666;
}

.service-card ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Feature Items */
.feature-item {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* Price Cards */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.price-card.featured h4,
.price-card.featured p,
.price-card.featured .price-amount {
    color: white;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Team Members */
.team-member {
    text-align: center;
    padding: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--primary-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.team-member h5 {
    color: var(--dark-color);
    margin-top: 15px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
}

/* Reviews Swiper */
.reviewsSwiper {
    padding: 40px 0;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.review-card h5 {
    color: var(--primary-color);
}

/* Case Study Cards */
.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h4,
.case-card p {
    padding: 0 20px;
}

.case-card h4 {
    margin-top: 20px;
    color: var(--dark-color);
}

.case-card p {
    padding-bottom: 20px;
    color: #666;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gradient-1);
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 20px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

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

.timeline-item {
    position: relative;
    padding: 20px 40px;
    width: 50%;
}

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

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-date {
    position: absolute;
    top: 25px;
    width: 100px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -50px;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.career-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Info Cards */
.info-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74,155,142,0.25);
}

.contact-form .btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74,155,142,0.4);
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: var(--dark-color);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4,
.blog-card p,
.blog-card a {
    padding: 0 20px;
}

.blog-card h4 {
    margin-top: 20px;
    color: var(--dark-color);
}

.blog-card p {
    color: #666;
}

.blog-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 20px;
    display: inline-block;
}

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

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px 30px;
    font-size: 1.1rem;
}

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

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

.accordion-body {
    padding: 20px 30px;
    color: #666;
}

/* Gallery */
#gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

footer p {
    color: #bbb;
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa !important;
}

.rounded {
    border-radius: 15px !important;
}

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

section > * {
    animation: fadeInUp 0.8s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 