/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles - Fixed for all pages */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #086afe;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #086afe;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #086afe;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-switcher .current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
}

.language-switcher .current-language span {
    margin-right: 5px;
}

.language-switcher .language-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px;
    display: none;
    z-index: 1000;
    min-width: 120px;
}

.language-switcher:hover .language-list {
    display: block;
}

.language-switcher .language-list a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: 333;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.language-switcher .language-list a:hover {
    background-color: #ebf5ff;
}

.language-switcher .language-list img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

/* Enhanced buttons */
.btn {
    display: inline-block;
    background-color: #086afe;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #086afe;
    box-shadow: 0 4px 6px rgba(8, 106, 254, 0.15);
    cursor: pointer;
}

.btn:hover {
    background-color: #257af8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(8, 106, 254, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #086afe;
}

.btn-outline:hover {
    background-color: #086afe;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION - SPECIFIC STYLES FOR HOMEPAGE */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    width: 60%;
    text-align: center;
    z-index: 3;
    position: relative;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(3px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
    z-index: 10;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: #fff;
}

/* Page Hero Section - For other pages (About, Services, Blog, Contact) */
.page-hero {
    background: linear-gradient(135deg, rgba(3, 21, 48, 0.9) 0%, rgba(8, 106, 254, 0.8) 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern section spacing */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #031530;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #086afe;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #374c6c;
    max-width: 700px;
    margin: 0 auto;
}

/* ================== */
/* SERVICES HOMEPAGE */
/* ================== */

.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-image {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 10px;
    color: #031530;
    font-size: 1.2rem;
}

.service-description {
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
}

.service-description p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #086afe;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #257af8;
}

.service-description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 21, 48, 0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 30px;
    text-align: center;
    z-index: 10;
    flex-direction: column;
}

.service-description-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-description-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.close-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ================== */
/* SERVICES PAGE */
/* ================== */

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-detailed-content, 
.service-detailed-image {
    width: 50%;
}

.service-detailed-content h3 {
    font-size: 2rem;
    color: #031530;
    margin-bottom: 20px;
}

.service-detailed-content > p {
    font-size: 1.1rem;
    color: #374c6c;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-detailed-content ul {
    margin-bottom: 30px;
}

.service-detailed-content ul li {
    margin-bottom: 10px;
    color: #374c6c;
    position: relative;
    padding-left: 20px;
}

.service-detailed-content ul li:before {
    content: "•";
    color: #086afe;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-detailed-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-detailed-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detailed:hover .service-detailed-image img {
    transform: scale(1.03);
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* About Preview Section - For homepage */
.about-preview {
    background: #ebf5ff;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    width: 50%;
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #031530;
}

.about-text p {
    margin-bottom: 2rem;
    color: #374c6c;
}

/* Testimonial Section - For homepage */
.testimonial {
    background: linear-gradient(135deg, #031530 0%, #0a2a5e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-text::before {
    top: -20px;
    left: 0;
}

.testimonial-text::after {
    bottom: -40px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.25rem;
}

/* Why Choose Us Section - For homepage */
.why-choose {
    padding: 80px 0;
}

.features {
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content, .feature-image {
    width: 50%;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #031530;
}

.feature-content p {
    margin-bottom: 2rem;
    color: #374c6c;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
}

/* CTA Section - For homepage */
.cta {
    background: linear-gradient(135deg, #086afe 0%, #257af8 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: #fff;
    color: #086afe;
}

.cta .btn:hover {
    background: #ebf5ff;
}

/* About Page Styles */
.vision-mission {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: #086afe;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: #374c6c;
    line-height: 1.6;
}

/* Partners & Customers Sections */
.partners, .customers {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.staff-member.no-photo {
    width: 100%;
    height: 250px;
    background: #ebf5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #086afe;
    font-size: 3rem;
}

.member-details {
    padding: 1.5rem;
}

.member-details h3 {
    margin-bottom: 0.5rem;
    color: #031530;
}

.member-details p {
    color: #374c6c;
    line-height: 1.5;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #086afe;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(8, 106, 254, 0.2);
}

.step h3 {
    margin-bottom: 1rem;
    color: #031530;
}

.step p {
    color: #374c6c;
    line-height: 1.6;
}

/* Blog Page Styles */
.blog-posts {
    padding: 80px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #086afe;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.date {
    color: #374c6c;
}

.post-content h2 {
    margin-bottom: 1rem;
    color: #031530;
    font-size: 1.4rem;
}

.post-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h2 a:hover {
    color: #086afe;
}

.post-content p {
    margin-bottom: 1rem;
    color: #374c6c;
    line-height: 1.6;
}

.read-more {
    color: #086afe;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.page-numbers, .next {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #374c6c;
    transition: all 0.3s;
}

.page-numbers:hover, .next:hover {
    background: #ebf5ff;
    border-color: #086afe;
}

.page-numbers.current {
    background: #086afe;
    color: #fff;
    border-color: #086afe;
}

.next {
    display: flex;
    align-items: center;
}

.next i {
    margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    background: #ebf5ff;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: #031530;
}

.newsletter-content p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #374c6c;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: #031530;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #374c6c;
    line-height: 1.6;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: #086afe;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item .details h3 {
    margin-bottom: 0.5rem;
    color: #031530;
}

.info-item .details p {
    color: #374c6c;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #031530;
}

/* Modern form styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #031530;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #086afe;
    box-shadow: 0 0 0 3px rgba(8, 106, 254, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #031530;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Remove the old map placeholder styles since we're using iframe */
.map-placeholder,
.map-overlay {
    display: none;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #031530;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #031530;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #374c6c;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #031530 0%, #0a2a5e 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h4 {
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #086afe;
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: #086afe;
    opacity: 1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #F44336;
}

/* Animation styles */
.feature, .value-item, .team-member, .blog-post, .step, .partner-logo {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.animate-in, 
.value-item.animate-in, 
.team-member.animate-in, 
.blog-post.animate-in, 
.step.animate-in, 
.partner-logo.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(even) {
    transition-delay: 0.2s;
}

.feature:nth-child(odd) {
    transition-delay: 0.4s;
}

.value-item:nth-child(1) { transition-delay: 0.1s; }
.value-item:nth-child(2) { transition-delay: 0.2s; }
.value-item:nth-child(3) { transition-delay: 0.3s; }
.value-item:nth-child(4) { transition-delay: 0.4s; }

.team-member:nth-child(1) { transition-delay: 0.1s; }
.team-member:nth-child(2) { transition-delay: 0.2s; }
.team-member:nth-child(3) { transition-delay: 0.3s; }
.team-member:nth-child(4) { transition-delay: 0.4s; }

.blog-post:nth-child(1) { transition-delay: 0.1s; }
.blog-post:nth-child(2) { transition-delay: 0.2s; }
.blog-post:nth-child(3) { transition-delay: 0.3s; }

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.4s; }

/* Form error styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #F44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .services-grid,
    .team-grid,
    .posts-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .values-grid,
    .process-steps,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detailed,
    .service-detailed.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-detailed-content, 
    .service-detailed-image {
        width: 100%;
    }
    
    .service-detailed-content h3 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-content, 
    .service-image {
        width: 100%;
    }
    
    .slide-content {
        width: 80%;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: left 0.3s;
        z-index: 999;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    /* Mobile language switcher */
    .language-switcher {
        margin-left: 15px;
    }
    
    .language-switcher .current-language {
        padding: 8px 12px;
    }
    
    .language-switcher .language-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .language-switcher .language-list a {
        padding: 12px 20px;
    }
    
    .services-grid,
    .team-grid,
    .posts-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .feature,
    .feature:nth-child(even) {
        flex-direction: column;
    }
    
    .about-image,
    .about-text,
    .feature-content,
    .feature-image {
        width: 100%;
    }
    
    .about-image img,
    .feature-image img {
        margin-bottom: 2rem;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2::after {
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .service-item {
        height: auto;
        min-height: 380px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-description-overlay {
        padding: 20px;
    }
    
    .service-detailed-content h3 {
        font-size: 1.4rem;
    }
    
    .service-detailed-content > p {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .member-image {
        height: 200px;
    }
    
    .staff-member.no-photo {
        height: 200px;
        font-size: 2.5rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-controls button {
        width: 35px;
        height: 35px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}