/* Root Variables and Color Palette */
:root {
    --primary-color: #2C3E50;    /* Dark Blue-Gray */
    --secondary-color: #E74C3C;  /* Coral Red */
    --accent-color: #27AE60;     /* Emerald Green */
    --highlight-color: #F39C12;  /* Amber Orange */
    --neutral-color: #95A5A6;    /* Light Gray */
    
    --primary-light: #34495E;
    --primary-dark: #1A252F;
    --secondary-light: #EC7063;
    --secondary-dark: #C0392B;
    --accent-light: #2ECC71;
    --accent-dark: #229954;
    --highlight-light: #F5B041;
    --highlight-dark: #D68910;
    --neutral-light: #BDC3C7;
    --neutral-dark: #7F8C8D;
    
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
}

/* 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: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

/* Typography - Conservative Sizes */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--text-light) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--highlight-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
}

.hero-section h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-section h2 {
    color: var(--highlight-color);
    font-size: 1.5rem;
}

.hero-section p {
    color: var(--neutral-light);
    font-size: 1.125rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

/* Feature Boxes */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-box i {
    color: var(--accent-color);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1rem 1.5rem 0;
    color: var(--primary-color);
}

.service-card p {
    padding: 0.5rem 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--highlight-color);
    padding: 1rem 1.5rem 1.5rem;
    margin: 0;
}

/* Price Cards */
.price-card {
    background: white;
    border: 2px solid var(--neutral-light);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Team Members */
.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--neutral-light);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* Reviews Slider */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.reviewsSwiper {
    padding: 2rem 0 3rem;
}

.swiper-pagination-bullet {
    background: var(--neutral-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.case-study-card h4 {
    padding: 1rem 1.5rem 0;
}

.case-study-card p {
    padding: 0.5rem 1.5rem 1.5rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neutral-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) {
    margin-left: auto;
    margin-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 2rem;
}

.timeline-item:nth-child(odd)::after {
    left: -50px;
}

.timeline-item:nth-child(even)::after {
    right: -50px;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid var(--neutral-light);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

/* Contact Info */
.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1rem 1.5rem 0;
    color: var(--primary-color);
}

.blog-card p {
    padding: 0.5rem 1.5rem;
    flex-grow: 1;
}

.blog-card .btn {
    margin: 0 1.5rem 1.5rem;
    align-self: flex-start;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    font-size: 1.125rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    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 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

footer h3, footer h4 {
    color: var(--highlight-color);
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--highlight-color) !important;
}

/* Utilities */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 