/* ========================================
   ProfDM - Premium Professional Website
   ======================================== */

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

:root {
    /* Ocean Palette */
    --seafoam-mist: #B2EBF2;
    --shallow-waters: #A8DADC;
    --turquoise-tide: #3DB2BF;
    --coastal-blue: #457B9D;
    --cerulean-blue: #007BA7;
    --marine-teal: #2A6A6A;
    --harbor-blue: #274472;
    --ocean-abyss: #0F4C75;
    --deep-sea: #1D3557;
    --midnight-ocean: #091E42;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--ocean-abyss) 0%, var(--cerulean-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--seafoam-mist) 0%, var(--turquoise-tide) 100%);
    
    /* Supporting Colors */
    --pure-white: #FFFFFF;
    --soft-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-gray: #6B7280;
    
    /* Shadows */
    --shadow-subtle: 0 1px 3px rgba(9, 30, 66, 0.05);
    --shadow-small: 0 4px 6px rgba(9, 30, 66, 0.07);
    --shadow-medium: 0 10px 25px rgba(9, 30, 66, 0.1);
    --shadow-large: 0 20px 40px rgba(9, 30, 66, 0.15);
    --shadow-xl: 0 25px 50px rgba(9, 30, 66, 0.25);
}

body {
    font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--deep-sea);
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--gradient-primary);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    box-shadow: var(--shadow-small);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pure-white);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--seafoam-mist);
}

.contact-icon .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-icon .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon svg {
    display: block;
}

.has-dropdown::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .has-dropdown::after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: var(--shadow-large);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--deep-sea);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: var(--seafoam-mist);
    color: var(--ocean-abyss);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.lang-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-arrow {
    font-size: 0.7rem;
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--coastal-blue);
    border-radius: 6px;
    margin-top: 0.5rem;
    min-width: 120px;
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.language-switcher:hover .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
    color: var(--deep-sea);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--seafoam-mist);
    color: var(--ocean-abyss);
}

/* Hero Section */
.hero {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: stretch;
    background: var(--pure-white);
    position: relative;
}

.hero-container {
    width: 100%;
    display: grid;
    grid-template-columns: 42% 58%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    padding: 5rem 3rem 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--pure-white);
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(178, 235, 242, 0.2) 0%, rgba(61, 178, 191, 0.1) 100%);
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
    border: 1px solid var(--turquoise-tide);
}

.trust-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--turquoise-tide);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.trust-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ocean-abyss);
    letter-spacing: -0.01em;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--deep-sea);
    margin-bottom: 1.25rem;
}

.hero-content .subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--coastal-blue);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.credentials-box {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.credentials-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coastal-blue);
    margin-bottom: 1rem;
}

.academic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.academic-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--shallow-waters) 0%, var(--seafoam-mist) 100%);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ocean-abyss);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--turquoise-tide) 0%, var(--coastal-blue) 100%);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pure-white);
}

.hero-content .description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--harbor-blue);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    border-color: var(--ocean-abyss);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--ocean-abyss);
    border-color: var(--ocean-abyss);
}

.btn-secondary:hover {
    background: var(--ocean-abyss);
    color: var(--pure-white);
}

.credentials {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credential-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ocean-abyss);
    letter-spacing: -0.02em;
}

.credential-label {
    font-size: 0.875rem;
    color: var(--coastal-blue);
    letter-spacing: -0.01em;
}

.hero-image-container {
    position: relative;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Why Choose Me Section */
.why-choose-me {
    padding: 6rem 3rem;
    background: var(--pure-white);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--soft-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.why-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--coastal-blue);
}

/* Services Section */
.services {
    padding: 6rem 3rem;
    background: var(--soft-white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--turquoise-tide);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--deep-sea);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--coastal-blue);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--light-gray);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-light);
    color: var(--ocean-abyss);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-description {
    color: var(--coastal-blue);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 6rem 3rem;
    background: var(--pure-white);
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-carousel-container {
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--deep-sea);
    margin-bottom: 1.875rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--medium-gray);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonial-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pure-white);
    border: 1px solid var(--medium-gray);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-sea);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-small);
}

.testimonial-nav-button:hover {
    box-shadow: var(--shadow-medium);
}

.testimonial-nav-button.prev {
    left: 0;
}

.testimonial-nav-button.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.4;
}

.testimonial-dot.active {
    background: var(--deep-sea);
    opacity: 1;
}

/* Mobile testimonial navigation - hidden on desktop */
.testimonial-navigation-mobile {
    display: none;
}

/* Client Logos */
.clients {
    padding: 4rem 3rem;
    background: var(--soft-white);
    border-top: 1px solid var(--medium-gray);
}

.clients-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.logos-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-track {
    display: flex;
    animation: scroll-logos 80s linear infinite;
    filter: grayscale(100%);
    opacity: 0.6;
    width: max-content;
    align-items: center;
}

.logos-track:hover {
    filter: grayscale(50%);
    opacity: 0.8;
}

.logos-set {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
    align-items: center;
}

.client-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 3rem;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--pure-white);
    color: var(--ocean-abyss);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* Footer */
footer {
    background: var(--midnight-ocean);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--pure-white);
}

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

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

.animate-on-load {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-animate:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-animate:nth-child(3) {
    transition-delay: 0.3s;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Navigation Links (desktop default) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--seafoam-mist);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #091e42;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo-image {
        height: 32px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-image-container {
        height: auto;
        aspect-ratio: 4/5;
        order: -1;
        background: none;
    }

    .hero-image {
        object-fit: cover;
        object-position: center 25%;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

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

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

    .credentials {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .credential-item {
        font-size: 0.8rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    /* Testimonials mobile - navigation below text */
    .testimonial-carousel-wrapper {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    /* Hide desktop navigation arrows on mobile */
    .testimonial-nav-desktop {
        display: none !important;
    }

    /* Show mobile navigation with arrows and dots */
    .testimonial-navigation-mobile {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .testimonial-navigation-mobile .testimonial-nav-button {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .testimonial-navigation-mobile .testimonial-dots {
        margin-top: 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

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

    .testimonials {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .why-choose-me,
    .services-preview,
    .testimonials-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo span {
        font-size: 0.9rem;
    }

    .logo-image {
        height: 28px;
    }

    .hero {
        margin-top: 52px;
    }

    .hero-image-container {
        aspect-ratio: 4/5;
    }

    .hero-image {
        object-position: center 25%;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .trust-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}
