/*
  Geri Ibrahim Portfolio Stylesheet (v9 - Final Complete)
  ---
  Table of Contents:
  1. Variables & Base Styles
  2. Hero Section & Slider
  3. Hero Header Navigation
  4. Hero Content
  5. Floating "Let's Talk" CTA
  6. Hero Footer & Slider Controls
  7. About Me Section
  8. Placeholder Sections
  9. Responsive Design
*/

/* 1. Variables & Base Styles
-------------------------------------------------- */
:root {
    --dark-bg: #111111;
    --soft-white: #FAFAFA;
    --blue: #0000FF;
    --light-grey-bg: #F0F3F5;
    --outline-gray: rgba(250, 250, 250, 0.8);
    --border-gray: rgba(250, 250, 250, 0.2);
    --font-headline: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--soft-white);
    font-family: var(--font-body);
    min-height: 100vh;
}

/* 2. Hero Section & Slider
-------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--soft-white);
    overflow: hidden;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Case study background images */
#slide-1 { background-image: url('assets/sports-soap.png'); }
#slide-2 { background-image: url('assets/glassess.png'); }
#slide-3 { background-image: url('assets/Nails-Art.png'); }
#slide-4 { background-image: url('assets/case-study-4/pretty_asian_girl_long_sleek_black_hair_1e46e5fb-e774-4391-859d-bbc850d07f0b.png'); }

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
}

/* 3. Hero Header Navigation
-------------------------------------------------- */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-family: var(--font-headline);
    font-size: 1.8rem;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--soft-white);
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.main-nav a:hover {
    border-color: var(--blue);
}

/* Hamburger Menu Button (hidden on desktop) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--soft-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/BlackNoiseF.gif');
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.2;
    z-index: -1;
}


.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.mobile-menu-logo {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--soft-white);
    margin: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--soft-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 25px;
    overflow-y: auto;
}

.mobile-menu-link {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover {
    color: var(--blue);
    padding-left: 10px;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-footer {

}

.mobile-menu-cta-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: var(--blue);
    color: white;
}

.email-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.whatsapp-btn:hover, .email-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn i, .email-btn i {
    font-size: 1.3rem;
}

/* 4. Hero Content
-------------------------------------------------- */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: left;
    max-width: 1080px;
    width: 100%;
    padding: 0 40px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.hero-body-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 25px;
}

.hero-headline-outline {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 6.4vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--soft-white);
}

.hero-headline-solid {
    font-family: var(--font-headline);
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    font-weight: 700;
    color: var(--soft-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 5px;
    margin-bottom: 25px;
}

.hero-body-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    color: var(--outline-gray);
}

/* 5. "Let's Talk" CTA (now in flexbox)
-------------------------------------------------- */
.hero-cta {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--blue);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.hero-cta:hover {
    transform: scale(1.1);
}

.hero-cta-icon-wrapper {
    width: 70px;
    height: 70px;
    border: 2px solid var(--soft-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.hero-cta-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--soft-white);
}

.hero-cta:hover .hero-cta-icon-wrapper {
    transform: rotate(45deg);
}

.hero-cta-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: var(--font-headline);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 6. Hero Footer & Slider Controls
-------------------------------------------------- */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.hero-footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.slider-controls {
    display: flex;
    gap: 10px;
}
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-gray);
    color: var(--soft-white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.slider-arrow i {
    font-size: 1.5rem;
}
.case-study-info {
    min-width: 200px;
    max-width: 300px;
}
.case-study-info h3 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    margin: 0;
}
.case-study-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}
.case-study-link a {
    color: var(--soft-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

/* Autoslide Progress Bar */
.autoslide-progress {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    margin: 8px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: white;
    width: 0%;
    border-radius: 1px;
    transition: width 0.1s linear;
}

/* 7. About Me Section
-------------------------------------------------- */
.about-section {
    background-color: var(--light-grey-bg);
    color: var(--dark-bg);
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: start;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text-content {
    padding: 0 80px 0 40px;
    max-width: 850px;
    justify-self: end;
}

.about-text-content .pre-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-text-content .pre-title .line {
    display: block;
    height: 2px;
    width: 70px;
    background-color: var(--dark-bg);
}

.about-headline {
    font-family: var(--font-headline);
    font-size: 4rem;
    color: var(--dark-bg);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.about-subheadline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #333;
}

.about-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.about-body strong {
    color: #000;
    font-weight: 700;
}

.about-image-wrapper {
    width: 100%;
    height: calc(100% + 80px);
    align-self: end;
    margin-bottom: -80px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    margin-bottom: 80px;
    background-color: var(--blue);
    color: var(--soft-white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-cta-btn:hover {
    background-color: rgba(0, 0, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

.about-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(4px);
}

/* 8. Why Work With Me Section
-------------------------------------------------- */
.why-section {
    background-color: var(--dark-bg);
    color: var(--soft-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}


.why-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-pre-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--outline-gray);
    margin-bottom: 20px;
}

.why-pre-title .line {
    display: block;
    height: 1px;
    width: 60px;
    background-color: var(--outline-gray);
}

.why-headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--soft-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.why-subheadline {
    font-size: 1.2rem;
    color: var(--outline-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px 40px;
    margin-top: 80px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background: rgba(250, 250, 250, 0.02);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.why-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 255, 0.1);
    border: 2px solid var(--blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 24px;
    color: var(--blue);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: var(--blue);
    transform: scale(1.1);
}

.why-item:hover .why-icon i {
    color: var(--soft-white);
}

.why-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-headline);
    font-size: 1.4rem;
    color: var(--soft-white);
    line-height: 1.3;
    margin: 0;
}

.why-description {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--outline-gray);
    margin: 0;
}

/* 9. Testimonials Section
-------------------------------------------------- */
.testimonials-section {
    background-color: var(--dark-bg);
    color: var(--soft-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/BlackNoiseF.gif');
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.45;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--soft-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.testimonials-subheadline {
    font-size: 1.2rem;
    color: var(--outline-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.testimonial-content {
    background: rgba(250, 250, 250, 0.03);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.05) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 3.2vw, 2rem);
    line-height: 1.3;
    color: var(--soft-white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--soft-white);
    margin: 0 0 5px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--outline-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.1);
    border: 2px solid rgba(250, 250, 250, 0.2);
    color: var(--soft-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: rgba(0, 0, 255, 0.8);
    border-color: rgba(0, 0, 255, 0.8);
    transform: scale(1.1);
}

.testimonial-btn i {
    font-size: 1.2rem;
}

/* 10. Final CTA Section
-------------------------------------------------- */
.final-cta-section {
    background-color: var(--light-grey-bg);
    color: var(--dark-bg);
    padding: 120px 0;
    position: relative;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.final-cta-content {
    text-align: center;
}

.final-cta-headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--dark-bg);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.final-cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid var(--blue);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-btn:hover {
    background-color: rgba(0, 0, 255, 0.8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.final-cta-btn:hover i {
    transform: scale(1.1);
}

/* 11. Portfolio Showcase Section
-------------------------------------------------- */
.portfolio-section {
    background-color: var(--light-grey-bg);
    color: var(--dark-bg);
    padding: 120px 0;
    position: relative;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--dark-bg);
    line-height: 1.1;
    margin-bottom: 20px;
}

.portfolio-subheadline {
    font-size: 1.2rem;
    color: rgba(17, 17, 17, 0.7);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

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

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-info {
    color: white;
}

.portfolio-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    color: white;
}

.portfolio-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--blue);
}

.portfolio-btn:hover {
    background-color: rgba(0, 0, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

.portfolio-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.portfolio-btn:hover i {
    transform: translateX(4px);
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-modal.active {
    display: flex; /* Only display flex when active class is present */
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex; /* Only display flex when active class is present */
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 95vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--blue);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    margin-top: 30px;
    color: white;
}

.lightbox-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lightbox-btn:hover {
    color: var(--blue);
}

.lightbox-btn i {
    font-size: 1.1rem;
}

#lightbox-title {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

#lightbox-category {
    font-size: 1rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 10px;
        width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    #lightbox-image {
        max-height: 70vh;
    }
    
    #lightbox-title {
        font-size: 1.5rem;
    }
    
    .lightbox-info {
        margin-top: 20px;
    }
}

/* 10. Services Section
-------------------------------------------------- */
.services-section {
    background-color: var(--dark-bg);
    color: var(--soft-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/BlackNoiseF.gif');
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.45;
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px 0 80px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-headline {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--soft-white);
    line-height: 1;
}

.services-pre-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--outline-gray);
}

.services-pre-title .line {
    display: block;
    height: 1px;
    width: 100px;
    background-color: var(--outline-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.service-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Added to prevent wrapping */
    align-items: stretch;
    justify-content: center;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.service-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    flex: 1; /* Shorthand for flex-grow: 1, flex-shrink: 1, flex-basis: 0% */
}

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

.service-icon {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    color: var(--soft-white);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-icon i {
    font-size: 64px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--soft-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--outline-gray);
    margin: 0 0 25px 0;
    font-weight: 400;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--outline-gray);
    margin: 0 0 30px 0;
    max-width: 600px;
}

.service-details {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-headline);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--soft-white);
    font-weight: 500;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--soft-white);
}

.feature-item i {
    font-size: 16px;
    color: var(--soft-white);
    width: 16px;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: rgba(0, 0, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

.service-cta i {
    font-size: 1.1rem;
}

/* Service Carousel Styles */
.service-carousel {
    flex-grow: 0;   /* Do not grow */
    flex-shrink: 0; /* Do not shrink */
    flex-basis: 450px; /* Maintain 450px width */
    max-width: 450px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* 9. Placeholder Sections
-------------------------------------------------- */
#contact {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--border-gray);
}

#contact h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    opacity: 0.2;
    font-family: var(--font-headline);
}

/* 9. Responsive Design
-------------------------------------------------- */

/* For tablets and smaller devices (~992px and down) */
@media (max-width: 992px) {
    .about-section {
        padding-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .about-text-content {
        order: 1;
        padding: 60px;
        max-width: 100%;
        justify-self: center;
        text-align: left;
    }

    .about-text-content .pre-title {
        justify-content: flex-start;
    }

    .about-image-wrapper {
        order: 2;
        padding: 0;
    }
}

/* For tablets and medium screens (~992px to 769px) */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-body-wrapper {
        gap: 40px;
    }
    
    .hero-cta {
        width: 120px;
        height: 120px;
    }
    
    .hero-cta-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .hero-cta-icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* For small tablets (~768px and down) */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-body-wrapper {
        gap: 40px;
        margin-top: 20px;
    }
    
    .hero-body-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        width: 110px;
        height: 110px;
    }
    
    .hero-cta-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .hero-cta-icon-wrapper i {
        font-size: 1.4rem;
    }
}

/* Hide floating button on tablets and below */
@media (max-width: 768px) {
    .hero-cta {
        display: none;
    }
    
    .hero-body-wrapper {
        justify-content: flex-start;
    }
}

/* Why Work With Me Section - Mobile Responsive */
@media (max-width: 768px) {
    .why-container {
        padding: 0 20px;
    }
    
    .why-header {
        margin-bottom: 60px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }
    
    .why-item {
        padding: 30px 25px;
        align-items: flex-start;
        text-align: left;
    }
    
    .why-pre-title .line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 80px 0;
    }
    
    .why-container {
        padding: 0 15px;
    }
    
    .why-item {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-icon i {
        font-size: 20px;
    }
    
    .why-title {
        font-size: 1.2rem;
    }
    
    .why-description {
        font-size: 0.95rem;
    }
}

/* Testimonials Section - Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
        min-height: 350px;
    }
    
    .testimonial-text {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin-bottom: 30px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .testimonial-nav {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: clamp(0.8rem, 2.4vw, 1.12rem);
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .testimonial-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-btn i {
        font-size: 1.1rem;
    }
}

/* Final CTA Section - Mobile Responsive */
@media (max-width: 768px) {
    .final-cta-container {
        padding: 0 20px;
    }
    
    .final-cta-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .final-cta-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-container {
        padding: 0 15px;
    }
    
    .final-cta-text {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .final-cta-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .final-cta-btn i {
        font-size: 1.2rem;
    }
}

/* Portfolio Section - Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-container {
        padding: 0 20px;
    }
    
    .portfolio-header {
        margin-bottom: 60px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .portfolio-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-container {
        padding: 0 15px;
    }
    
    .portfolio-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-overlay {
        padding: 30px 20px 20px;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    .portfolio-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* For mobile phones (~480px and down) */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }
    
    .hero-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 20px 25px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-btn {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-headline-outline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        -webkit-text-stroke: 1.5px var(--soft-white);
    }
    
    .hero-headline-solid {
        font-size: clamp(2.2rem, 7vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-body-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 15px;
    }
    
    .hero-body-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-cta {
        width: 100px;
        height: 100px;
        margin-top: 10px;
    }
    
    .hero-cta-icon-wrapper {
        width: 45px;
        height: 45px;
        border-width: 1.5px;
    }
    
    .hero-cta-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .hero-cta-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .hero-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .hero-footer-left {
        flex-direction: column;
        gap: 15px;
        order: 1;
    }
    
    .slider-controls {
        order: 2;
    }
    
    .case-study-info {
        order: 1;
    }
    
    .case-study-info h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .case-study-info p {
        font-size: 0.9rem;
    }
    
    .case-study-link {
        display: none;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow i {
        font-size: 1.3rem;
    }
    
    /* About section mobile adjustments */
    .about-section {
        padding-top: 60px;
    }
    
    .about-text-content {
        padding: 40px 30px;
    }
    
    .about-headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .about-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-cta-btn {
        margin-bottom: 0;
    }
    
    /* Services section mobile adjustments */
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0px;
    }

    .services-headline {
        font-size: 5rem;
        margin-bottom: 20px;
        order: 2;
    }

    .services-pre-title {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        order: 1;
    }
    
    .service-item {
        flex-direction: column;
        padding: 50px 0;
        gap: 30px;
        text-align: left;
    }
    
    .service-left {
        max-width: 100%;
        text-align: left;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        margin: 0;
    }
    
    .service-icon i {
        font-size: 48px;
    }

    .service-cta {
        width: 100%;
        justify-content: center;
    }
    
    .service-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .service-subtitle {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-carousel {
        flex: none;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
    
    .carousel-container {
        height: 300px;
    }
}

/* For very small screens (~360px and down) */
@media (max-width: 360px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-headline-outline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-headline-solid {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-body-text {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        width: 90px;
        height: 90px;
    }
    
    .hero-cta-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .hero-cta-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .main-nav {
        padding: 6px;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 10px 6px;
    }
}

/* Hide carousel for video ads service (no samples available) */
.carousel-container[data-service="video"] {
    display: none;
}

/* CTA Group Styling */
.service-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-cta-secondary {
    background: transparent;
    border: 1px solid var(--outline-gray);
    color: var(--outline-gray);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-cta {
    text-align: center !important;
    justify-content: center;
}

.service-cta-secondary:hover {
    border-color: var(--soft-white);
    color: var(--soft-white);
    background: rgba(255, 255, 255, 0.05);
}

.final-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.final-cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.final-cta-btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--soft-white);
}

.mobile-menu-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-btn {
    background: transparent;
    border: 1px solid var(--soft-white);
    color: var(--soft-white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background: var(--soft-white);
    color: var(--dark-bg);
}

/* Case Study CTA Group Styling */
.case-study-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--soft-white);
    color: var(--soft-white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center !important;
}

.cta-btn-secondary:hover {
    background: var(--soft-white);
    color: var(--dark-bg);
}

.cta-btn-secondary-light {
    background: transparent;
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center !important;
}

.cta-btn-secondary-light:hover {
    background: var(--dark-bg);
    color: var(--soft-white);
}

.cta-btn {
    text-align: center !important;
}

/* Responsive adjustments for CTA groups */
@media (max-width: 768px) {
    .final-cta-group {
        gap: 12px;
    }
    
    .final-cta-btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .service-cta-group {
        gap: 8px;
    }
    
    .service-cta-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .case-study-cta-group {
        gap: 12px;
    }
    
    .cta-btn-secondary,
    .cta-btn-secondary-light {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 180px;
    }
}