/* 
* Wisdom Design - Main Stylesheet
* Author: Wisdom Design Team
* Version: 1.0
*/

:root {
    /* Core color palette */
    --color-dark: #333333;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-dark-gray: #666666;
    
    /* Accent colors */
    --color-green: #d3de18; /* green */
    --color-blue: #35bacb;  /* blue */
    --color-yellow: #f6d903; /* yellow */
    --color-orange: #fd7914; /* orange */
    
    /* Typography */
    --font: 'Open Sans', sans-serif;
    
    /* Sizes */
    --header-height: 80px;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

section {
    padding: 25px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.2px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
}

.inversion-button {
    border: 2px solid var(--color-page);
    color: var(--color-page);
}

.inversion-button:hover {
    background-color: var(--color-page);
    color: black;
}


.text-accent {
    color: var(--color-blue);
}

/* ========== LAYOUT COMPONENTS ========== */

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--color-light);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--color-light) !important;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    padding: 8px 0 !important;
    text-transform: none;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.page-home:after {
    background-color: var(--color-green);
}

.page-about:after {
    background-color: var(--color-orange);
}

.page-services:after {
    background-color: var(--color-blue);
}

.page-portfolio:after {
    background-color: var(--color-yellow);
}

.page-contact:after {
    background-color: white;
}

.navbar-toggler {
    border: none;
    color: var(--color-light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Scrolled header */
.site-header.scrolled {
    background-color: rgba(51, 51, 51, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .navbar {
    padding: 10px 0;
}

.scrolled .navbar-brand img {
    transform: scale(0.9);
}

/* Main Content */
main {
    padding-top: var(--header-height);
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0 20px;
}

.site-footer h4 {
    color: var(--color-light);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-home-page a:hover {
    color: var(--color-green);
    opacity: 1;
}

.footer-about-page a:hover {
    color: var(--color-orange);
    opacity: 1;    
}

.footer-services-page a:hover {
    color: var(--color-blue);
    opacity: 1;    
}

.footer-portfolio-page a:hover {
    color: var(--color-yellow);
    opacity: 1;    
}

.footer-contact-page a:hover {
    color: white;
    opacity: 1;    
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-blue);
    color: var(--color-light);
    transform: translateY(-3px);
}

.contact-icon {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

address a {
    color: rgba(255, 255, 255, 0.8);
}

address a:hover {
    color: var(--color-blue);
}

/* ========== PAGE SPECIFIC STYLES ========== */

/* Hero Section */
.hero-section {
    padding: 100px 0 50px;
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-weight: 400;
    text-transform: none;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image {
    transition: transform 0.8s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    padding: 140px 0 70px;
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
}

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

/* Section Titles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.service-card {
    background-color: #444444;
    padding: 40px 30px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
}

.service-description {
    margin-bottom: 20px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Projects Section */
.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-details {
    padding: 25px;
    background-color: #444444;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 400;
    text-transform: none;
}

.project-category {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.project-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

/* Portfolio Items */
.portfolio-filter {
    padding-bottom: 0;
}

.filter-container {
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--color-dark-gray);
    color: white;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: none;
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: var(--color-dark);
    color: var(--color-page);
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.portfolio-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover for better 1:1 filling */
    background-color: #000;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-orange);
    font-size: 3rem;
    opacity: 0.8;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Full width video layout - Now the default layout for videos */
#portfolioModal.has-video .modal-dialog {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#portfolioModal.has-video .modal-body .row {
    flex-direction: column;
}

#portfolioModal.has-video .modal-body .col-lg-8,
#portfolioModal.has-video .modal-body .col-lg-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

#portfolioModal .video-container {
    padding-top: 56.25%; /* 16:9 aspect ratio by default, will adjust to native ratio */
}

#portfolioModal .video-container video {
    object-fit: contain; /* Maintain native aspect ratio */
}

#portfolioModal.has-video .project-details-container {
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.portfolio-card:hover .play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-dark);
    color: var(--color-light);
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: none;
}

.portfolio-link:hover {
    background-color: var(--color-yellow);
    color: black;
}

/* Testimonials */
.testimonial-card {
    background-color: #444444;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1em;
    font-weight: bold;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--color-dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.cta-container {
    padding: 50px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: none;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Clients Section */
.clients-section {
    background-color: var(--color-dark);
    padding: 60px 0;
    overflow: hidden;
}

.clients-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-carousel {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    margin-left: 0;
}

.client-item {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 80px;
}

.client-logo {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.client-item:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Team Section */
.team-member {
    background-color: #444444;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.team-image-container {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-details {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: none;
}

.team-title {
    color: var(--color-orange);
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: none;
}

.team-bio {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social .social-link {
    width: 35px;
    height: 35px;
    background-color: var(--color-gray);
    color: var(--color-dark);
}

.team-social .social-link:hover {
    background-color: var(--color-orange);
    color: var(--color-light);
}

/* Values Section */
.value-card {
    background-color: #444444;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--color-blue);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
}

/* Process Section */
.process-step {
    position: relative;
    padding: 30px;
    background-color: #444444;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 5px;
}

.process-title {
    margin: 20px 0 15px;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: none;
}

/* Service Detail Sections */
.service-detail-item {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-content .service-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-features li svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

/* Approach Cards */
.approach-card {
    background-color: #444444;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    margin-bottom: 20px;
}

.approach-icon svg {
    width: 40px;
    height: 40px;
}

.approach-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    padding-right: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-blue);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: none;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--color-dark-gray);
}

.contact-form-container {
    background-color: #444444;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: none;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-blue);
}

.btn-primary {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

/* Map Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-gray);
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    background-color: rgba(0,0,0,0);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 400;
    font-size: 1.1rem;
    background-color: #444444;
    color: var(--color-light);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    color: var(--color-light);
    background-color: #555555;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #383838;
    color: var(--color-light);
}

/* Error Pages */
.error-section {
    padding: 150px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: none;
}

.error-message {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    margin-bottom: 30px;
}

/* Modal */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.modal-header {
    border-bottom: none;
    padding: 20px 25px;
}

.modal-body {
    padding: 0 25px 25px;
}

.modal-footer {
    border-top: none;
    padding: 0 25px 25px;
}

.carousel {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.project-details-container h2 {
    font-size: 1.8rem;
}

.project-details-container h4 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.project-deliverables {
    padding-left: 20px;
}

.project-deliverables li {
    margin-bottom: 8px;
}

/* Testimonial Quote */
.testimonial-quote {
    position: relative;
    padding: 30px;
}

.quote-icon {
    color: var(--color-blue);
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.testimonial-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.author-name {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.author-title {
    color: var(--color-dark-gray);
}

/* Toast Messages */
.toast-container {
    z-index: 9999;
}

.toast {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: #444444;
    color: var(--color-light);
}

.toast-header {
    background-color: #444444;
    color: var(--color-light);
    border-bottom: none;
    padding: 12px 15px;
}

.toast-body {
    padding: 15px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

/* ========== ANIMATIONS ========== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 130px 0 80px;
    }
    
    .service-card,
    .value-card,
    .approach-card {
        padding: 30px 25px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--color-dark);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .service-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .service-features {
        text-align: left;
        display: inline-block;
    }
    
    .team-member {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .cta-container {
        padding: 30px;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .client-item {
        padding: 0 20px;
    }
    
    .client-logo {
        max-width: 120px;
    }
    
    .filter-btn {
        padding: 5px 15px;
        font-size: 0.9rem;
    }
    
    .process-step,
    .value-card,
    .approach-card {
        padding: 25px 20px;
    }
}