:root {
    --primary: #0f172a;
    --secondary: #10b981;
    --accent: #3b82f6;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-light: #52637a; /* Darker slate gray for WCAG AA contrast compliance */
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Skip Link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    z-index: 99999;
    transition: top 0.2s ease;
    text-decoration: none;
    font-weight: 600;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.skip-link:focus-visible {
    top: 0;
}

/* Focus indicator for keyboard accessibility */
a:focus-visible, 
button:focus-visible, 
select:focus-visible, 
input:focus-visible, 
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--background);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
    /* iOS safe area support */
    padding-bottom: env(safe-area-inset-bottom);
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo-text span {
    color: var(--secondary);
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 55px;
}

header.scrolled .logo {
    font-size: 1.3rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-cta {
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    color: var(--white) !important;
}

/* Buttons */
.btn-primary, .btn-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-cta {
    background: var(--secondary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hero Section */
#hero {
    height: 500vh; /* Increased to 500vh to slow down the 161 desktop frames and make scrolling less sensitive */
    position: relative;
}

.animation-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url('frames/ezgif-frame-001.webp') center center / cover no-repeat;
}

#scroll-animation {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--white);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
}

.hero-content * {
    pointer-events: auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-height: 90px;
    width: auto;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: inline-block;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#hero h1 span {
    color: #10b981; /* Bright, vibrant green */
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

#hero .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

#hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
#services {
    padding: 8rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.service-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Why Us */
.bg-dark {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0;
}

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

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(46, 204, 113, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--secondary), rgba(46, 204, 113, 0.7));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Contact */
#contact {
    padding: 8rem 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--surface);
    padding: 4rem;
    border-radius: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
}

.info-item {
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-item a {
    text-decoration: none;
    color: var(--text);
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.image-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.img-responsive:hover {
    transform: scale(1.05);
}

/* Subpages */
.sub-hero {
    padding: 10rem 0 6rem;
    text-align: center;
}

.sub-hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--white);
    word-break: break-word;
    overflow-wrap: break-word;
}

.sub-hero p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Details */
.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.service-detail-block.reverse {
    direction: rtl;
}

.service-detail-block.reverse .service-text {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-text ul {
    list-style: none;
}

.service-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* Reviews Wall */
#reviews-wall {
    padding: 6rem 2rem;
}

.rating-summary {
    text-align: center;
    margin-bottom: 4rem;
}

.rating-summary .stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-info strong {
    display: block;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    padding: 6rem 0;
    align-items: center;
}

.stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.about-image-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--secondary), #0d9488);
    border-radius: 24px;
    z-index: 1;
    opacity: 0.15;
}

.team-img {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-image-badge .badge-icon {
    font-size: 1.5rem;
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.about-image-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-image-badge .badge-text strong {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-image-badge .badge-text span {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.2;
}

.image-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.85;
}

/* Contact Grid */
#contact-full {
    padding: 6rem 2rem;
}

/* Mobile-only contact choice elements — hidden on desktop */
.mobile-reach-heading,
.mobile-choice-badge {
    display: none;
}

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

.contact-methods {
    margin: 3rem 0;
}

.method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method:last-child {
    margin-bottom: 0;
}

.method .icon {
    font-size: 1.5rem;
    background: var(--surface);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.whatsapp-card {
    background: #e7f9ee;
    padding: 2.5rem;
    border-radius: 24px;
}

.whatsapp-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 4rem;
    border-radius: 32px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

/* Featured Partner Logo (centered above grid) */
.partner-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.partner-featured-logo {
    max-width: 220px;
    max-height: 100px;
}

/* Partners Grid Layout */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem 3rem; /* Increased vertical gap */
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
    padding: 1rem 0;
    width: 100%;
}

.partner-image {
    max-width: 180px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.dark-bg-logo {
    background-color: var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .partner-image {
        opacity: 0.6;
        filter: grayscale(100%);
    }

    .partner-image:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.1);
    }
}

#partners {
    padding-top: 8rem; /* Weiter weg vom dunklen Bereich darüber */
    padding-bottom: 2rem; /* Näher an das Element darunter */
}

/* Home CTA Section */
#cta-home {
    margin-top: 4rem; /* Halbiert von 8rem, um näher an den Partnern zu sein */
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background-color: var(--surface);
    border-radius: 20px;
}

#cta-home h2 {
    margin-bottom: 1rem;
}

#cta-home p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 95px;
    width: auto;
    opacity: 0.95;
}

.footer-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-light);
}

/* Creative Services Grid */
.section-header {
    margin-bottom: 4rem;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.c-service-card {
    position: relative;
    padding: 3rem;
    border-radius: 30px;
    background: var(--surface);
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.c-service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    transition: var(--transition);
}

.c-service-card:hover .c-service-number {
    color: var(--secondary);
    transform: scale(1.1) translateX(10px);
}

.c-service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.c-service-link {
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    display: inline-block;
}

.c-service-card:hover .c-service-link {
    opacity: 1;
    transform: translateX(0);
}

/* Variant: Highlight (Green) */
.c-service-card.highlight {
    background: var(--secondary);
    color: var(--white);
}

.c-service-card.highlight:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
    background: #12cf8f;
}

.c-service-card.highlight .c-service-number {
    color: rgba(255,255,255,0.2);
}

.c-service-card.highlight:hover .c-service-number {
    color: var(--white);
}

.c-service-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.c-service-card.highlight .c-service-link {
    color: var(--white);
}

/* Variant: Dark */
.c-service-card.dark {
    background: var(--primary);
    color: var(--white);
}

.c-service-card.dark:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
    background: #17223b;
}

.c-service-card.dark .c-service-number {
    color: rgba(255,255,255,0.1);
}

.c-service-card.dark:hover .c-service-number {
    color: var(--secondary);
}

.c-service-card.dark p {
    color: rgba(255,255,255,0.7);
}

.c-service-card.dark .c-service-link {
    color: var(--secondary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #hero {
        height: 450vh; /* Increased from 350vh to make mobile animation slightly less sensitive and require more scrolling */
    }
    .animation-container {
        /* First frame as CSS background = always visible immediately, zero JS dependency */
        background: url('frames_mobil/ezgif-frame-001.webp') center center / cover no-repeat;
    }
    
    /* Mobile Footer Layout */
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    .footer-logo img {
        height: 80px;
    }
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        width: 100%;
    }
    .footer-links a {
        margin-left: 0;
    }
    
    .creative-services-grid {
        grid-template-columns: 1fr;
    }

    /* Services page – mobile */
    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 0;
    }

    /* Reset the RTL trick that breaks mobile layout */
    .service-detail-block.reverse {
        direction: ltr;
    }

    /* Hide images on mobile */
    .service-image {
        display: none;
    }

    /* Style each block as a clean card with green left accent */
    .service-text {
        background: var(--surface);
        border-radius: 20px;
        border-left: 4px solid var(--secondary);
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-text li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    #detailed-services {
        padding: 2rem 1rem;
    }
    .c-service-card {
        padding: 2rem;
        min-height: auto;
    }
    .c-service-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .c-service-link {
        opacity: 1;
        transform: none;
    }
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 1.5rem; /* Increased vertical gap on mobile */
    }
    .partner-image {
        max-width: 140px;
        max-height: 60px;
    }

    .grid-2, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    #cta-home {
        margin-top: 5rem;
        padding: 3rem 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        gap: 3rem;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-cta {
        width: 80%;
        text-align: center;
        margin-top: 2rem;
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }

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

    .contact-methods {
        margin: 1.5rem 0 1rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    #contact-full {
        padding: 2rem 1rem;
    }

    .whatsapp-card {
        display: none;
    }

    /* Show mobile-only elements */
    .mobile-reach-heading {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .mobile-reach-heading h2 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .mobile-reach-heading p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* Hide the desktop heading on mobile (replaced by mobile-reach-heading) */
    .contact-details > h2,
    .contact-details > p {
        display: none;
    }

    .mobile-choice-badge {
        display: flex;
        align-items: center;
        gap: 1rem;
        border-radius: 14px;
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        text-decoration: none;
        color: var(--text);
        transition: all 0.25s ease;
    }

    a.mobile-choice-badge.mobile-choice-wa:active {
        background: #d1f2dc;
        transform: scale(0.98);
    }

    .mobile-choice-badge strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 0.15rem;
    }

    .mobile-choice-badge span:not(.choice-icon) {
        color: rgba(0,0,0,0.5);
        font-size: 0.88rem;
    }

    .choice-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .mobile-choice-wa {
        background: #e7f9ee;
        border: 2px solid #a8e6be;
    }

    .mobile-choice-form {
        background: var(--surface);
        border: 2px solid rgba(26, 43, 76, 0.15);
    }

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

    .why-card {
        padding: 2rem 1.5rem;
    }

    /* About page – mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .about-image-badge {
        left: 10px;
        bottom: -15px;
        padding: 0.75rem 1.25rem;
    }

    .about-image-wrapper {
        padding-bottom: 15px;
        padding-right: 15px;
        margin-top: 2rem;
    }

    .image-disclaimer {
        margin-top: 2.2rem;
    }

    /* Hero Logo - mobile */
    .hero-logo img {
        max-height: 70px;
        padding: 6px;
    }

    /* Logo Brand Font-Size - mobile */
    .logo {
        font-size: 1.15rem;
    }
    header.scrolled .logo {
        font-size: 1.05rem;
    }
    .logo-img {
        height: 48px;
    }
    header.scrolled .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
}
