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

:root {
    --navy: #1a2332;
    --coral: #d4756e;
    --gold: #c9a961;
    --warm-gray: #f5f5f3;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    color: var(--text-dark);
    background-color: var(--warm-gray);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--coral);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--coral);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--navy);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-primary-large {
    background: var(--coral);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-large:hover {
    background: var(--navy);
    color: var(--coral);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-gray);
    color: #000000;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'EB Garamond', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-credentials {
    font-size: 1rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    border-color: #000000;
    color: #000000;
}

.hero-buttons .btn-secondary:hover {
    background: #000000;
    color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%);
}

/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--coral);
    font-family: 'EB Garamond', serif;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
}

.stat-item:nth-child(2) .stat-number::after,
.stat-item:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-item:nth-child(4) .stat-number::after {
    content: '';
    margin-left: 0;
}

.stat-label {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Client Logos */
.client-logos {
    background: var(--warm-gray);
    padding: 2rem 0;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.logos-scroll {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 15s linear infinite;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

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

/* Services Section */
.services {
    background: white;
    padding: 4rem 0;
    min-height: 100vh;
}

.services .section-intro {
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--warm-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--navy);
}

/* Interactive Image Accordion */
.services-accordion {
    display: flex;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    height: 500px;
    overflow: hidden;
}

.accordion-item {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 80px;
    opacity: 1 !important;
    visibility: visible !important;
}

.accordion-item.active {
    flex: 4;
}

.accordion-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) brightness(0.6);
    transition: transform 0.7s ease;
}

.accordion-item:hover .accordion-bg {
    transform: scale(1.05);
}

.accordion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    transition: background 0.7s ease;
}

.accordion-item.active .accordion-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    transform-origin: bottom left;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:not(.active) .accordion-content {
    writing-mode: vertical-lr;
    padding: 1rem;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.accordion-content h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    transition: all 0.7s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.accordion-item:not(.active) .accordion-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.accordion-content p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.accordion-item.active .accordion-content p {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
}

.accordion-item:not(.active) .accordion-content p {
    display: none;
}

/* My Values and Approach Section */
.values-section {
    background: white;
    padding: 2rem 0 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.values-image {
    overflow: hidden;
    border-radius: 15px;
}

.values-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.values-content .section-title {
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Career Highlights */
.case-studies {
    background: var(--warm-gray);
    padding: 3rem 0;
}

.case-studies .section-intro {
    margin-bottom: 2rem;
}

.case-studies .section-intro:last-of-type {
    margin-bottom: 1.5rem;
    margin-top: -2rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
    align-items: start;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.case-study-image {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 2rem;
}

.case-study-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.case-study-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.case-study-challenge {
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.case-study-result {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.case-study-link:hover {
    color: var(--navy);
}

/* Testimonials - Owl Carousel */
.testimonials {
    background: #000;
    color: white;
    padding: 3rem 2rem;
    overflow: hidden;
    position: relative;
}

.testimonials .section-title {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.testimonials .section-intro {
    margin-bottom: 2rem;
}

/* Owl Carousel Testimonials */
#customers-testimonials {
    max-width: 1200px;
    margin: 0 auto;
}

#customers-testimonials .item {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale(1);
}

.shadow-effect {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
    margin-bottom: 0;
}

#customers-testimonials .shadow-effect p {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
    font-weight: 400;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
    font-style: italic;
    color: var(--text-dark);
}

.img-circle {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    object-fit: contain;
    margin: 0 0 20px 0;
    display: block;
}

.testimonial-name {
    margin: -35px auto 0;
    display: table;
    width: auto;
    max-width: 90%;
    background: var(--coral);
    padding: 12px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-family: 'EB Garamond', serif;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
    line-height: 1.3;
}

.testimonial-name span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.95;
}

/* Owl Carousel Dots */
#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: var(--coral);
    display: inline-block;
    height: 18px;
    width: 18px;
    margin: 0 6px 10px;
    border-radius: 50%;
    transform: scale(0.3);
    transition: all 250ms ease-out 0s;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--coral);
    transform: scale(0.7);
}

/* About Preview */
.about-preview {
    background: white;
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #2c3e50 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin: 3rem 0;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.cta-note a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

.cta-disclaimer {
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    background: var(--navy);
    color: white;
    transform: rotate(90deg);
}

.modal-content-wrapper {
    overflow-y: auto;
    max-height: 85vh;
    padding: 3rem;
}

.modal-content {
    font-family: 'EB Garamond', serif;
}

.modal-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.modal-section {
    margin-bottom: 3rem;
}

.modal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--coral);
    padding-bottom: 0.5rem;
}

.modal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.journey-item,
.approach-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--coral);
}

.journey-item h3,
.approach-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.journey-item p,
.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.beyond-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.beyond-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.modal-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
    border-radius: 10px;
}

.modal-cta .btn-primary {
    background: white;
    color: var(--navy);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.modal-cta .btn-primary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .carousel-container {
        width: 250px;
        height: 350px;
    }

    .testimonial-overlay {
        margin-top: 450px;
        padding: 2rem 1rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    /* Services Accordion responsive for tablet */
    .services-accordion {
        height: auto;
        flex-direction: column;
        gap: 0.5rem;
    }

    .accordion-item {
        height: auto;
        min-height: 80px;
        flex: 1 !important;
    }

    .accordion-item.active {
        flex: 1 !important;
        min-height: 200px;
    }

    .accordion-content {
        padding: 1.5rem;
    }

    .accordion-item:not(.active) .accordion-content {
        writing-mode: initial;
        padding: 1rem;
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        text-align: left;
    }

    .accordion-content h3 {
        font-size: 1.3rem;
    }

    .accordion-item:not(.active) .accordion-content h3 {
        font-size: 1rem;
    }

    .accordion-content p {
        opacity: 1;
        max-height: 150px;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }

    .accordion-item:not(.active) .accordion-content p {
        display: block;
        opacity: 0.8;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Testimonials responsive */
    .testimonials {
        padding: 4rem 1rem;
    }

    #customers-testimonials .item {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .img-circle {
        width: 100%;
        height: 200px;
    }

    #customers-testimonials .shadow-effect p {
        font-size: 1rem;
    }

    .testimonial-name {
        padding: 10px 30px;
        font-size: 0.85rem;
    }

    /* Services Accordion responsive for mobile */
    .services-accordion {
        height: auto;
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 2rem;
    }

    .accordion-item {
        height: auto;
        min-height: 200px;
        flex: 1 !important;
    }

    .accordion-item.active {
        flex: 1 !important;
        min-height: 400px;
    }

    .accordion-bg {
        display: block;
    }

    .accordion-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%) !important;
    }

    .accordion-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        z-index: 10;
    }

    .accordion-item:not(.active) .accordion-content {
        writing-mode: initial;
        padding: 1rem;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        transform: none;
        text-align: left;
    }

    .accordion-content h3 {
        font-size: 1.1rem;
    }

    .accordion-item:not(.active) .accordion-content h3 {
        font-size: 0.95rem;
    }

    .accordion-content p {
        opacity: 1;
        max-height: 400px;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        overflow: hidden;
    }

    .accordion-item:not(.active) .accordion-content p {
        display: none;
    }

    /* Values section responsive */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-image {
        order: 2;
    }

    .values-content {
        order: 1;
    }
}

/* Mobile Menu Styles */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
}
