/* ==========================================================================
   Algarve Web Design - Base Styles
   Inspired by ecolevision.com - friendly, bold, approachable
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Variables & Reset
   ========================================================================== */
:root {
    --color-bg: #F5F1EB;
    --color-text: #2C5F6F;
    --color-teal: #4AACBD;
    --color-orange: #F18F3E;
    --color-blue-light: #A8D5E2;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F1EB;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 12px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 50%, rgba(74, 172, 189, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 143, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    overflow-x: clip;
}

/* Header
   ========================================================================== */
.site-header {
    background-color: transparent;
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    top: 10px;
    padding: 0;
}

.header-inner {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(74, 172, 189, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem var(--spacing-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
    /* Hidden as text is now in the logo image, or enable if image is icon-only */
}

/* If logo image is icon only and we want text next to it */
.logo-with-text .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text);
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav a {
    font-size: 1rem;
    font-weight: 500;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: var(--spacing-sm);
}

.lang-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-link:hover {
    background-color: var(--color-blue-light);
    opacity: 1;
}

.lang-link.active {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.lang-separator {
    color: rgba(44, 95, 111, 0.3);
    font-weight: 300;
}

.btn-contact {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-contact:hover {
    background-color: var(--color-orange);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(241, 143, 62, 0.3);
}

/* Hero Section
   ========================================================================== */
.hero {
    position: relative;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: auto;
    height: 70vh;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    line-height: 1.05;
}

.hero-highlight {
    color: var(--color-teal);
    font-style: italic;
}

.hero p {
    font-size: 1.25rem;
    max-width: 500px;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.cta-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(44, 95, 111, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-teal);
    box-shadow: 0 6px 20px rgba(74, 172, 189, 0.3);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 2px solid var(--color-text);
    box-shadow: 0 4px 14px rgba(44, 95, 111, 0.1);
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(44, 95, 111, 0.25);
}

/* Decorative Blobs - BOLD & MODERN with ANIMATIONS
   ========================================================================== */
.blob {
    position: absolute;
    z-index: 1;
    opacity: 1;
}

/* Blob animations - organic morphing and floating */
@keyframes blob-morph-1 {

    0%,
    100% {
        border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
        transform: translate(0, 0) scale(1);
    }

    33% {
        border-radius: 55% 45% 50% 50% / 45% 60% 40% 60%;
        transform: translate(10px, -10px) scale(1.02);
    }

    66% {
        border-radius: 50% 50% 55% 45% / 60% 40% 55% 45%;
        transform: translate(-10px, 10px) scale(0.98);
    }
}

@keyframes blob-morph-2 {

    0%,
    100% {
        border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        border-radius: 50% 50% 60% 40% / 55% 45% 60% 40%;
        transform: translate(-15px, 15px) scale(1.03) rotate(2deg);
    }

    66% {
        border-radius: 45% 55% 45% 55% / 50% 50% 55% 45%;
        transform: translate(15px, -10px) scale(0.97) rotate(-2deg);
    }
}

@keyframes blob-morph-3 {

    0%,
    100% {
        border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
        transform: translate(0, 0) scale(1);
    }

    50% {
        border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
        transform: translate(20px, 20px) scale(1.05);
    }
}

@keyframes blob-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero section - massive teal blob on right */
.blob-hero-1 {
    width: 700px;
    height: 700px;
    background-color: var(--color-teal);
    top: -150px;
    right: -100px;
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    animation: blob-morph-1 30s ease-in-out infinite;
}

/* Hero section - orange accent blob */
.blob-hero-2 {
    width: 350px;
    height: 350px;
    background-color: var(--color-orange);
    bottom: -100px;
    right: 20%;
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    animation: blob-morph-2 25s ease-in-out infinite;
}

/* Section blobs - for use throughout */
.blob-section-teal {
    width: 600px;
    height: 600px;
    background-color: var(--color-teal);
    border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
    animation: blob-morph-3 35s ease-in-out infinite;
}

.blob-section-orange {
    width: 500px;
    height: 500px;
    background-color: var(--color-orange);
    border-radius: 40% 60% 55% 45% / 50% 50% 50% 50%;
    animation: blob-morph-2 28s ease-in-out infinite reverse;
}

.blob-section-blue-light {
    width: 400px;
    height: 400px;
    background-color: var(--color-blue-light);
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
    animation: blob-float 20s ease-in-out infinite;
}

/* Services Section - CLEAN CARDS
   ========================================================================== */
.services-section {
    overflow-x: clip;
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.service-card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        rotate 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 95, 111, 0.08);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(44, 95, 111, 0.15);
    rotate: 1deg;
}

.service-card:nth-child(even):hover {
    rotate: -1deg;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.5;
}

/* Work Grid
   ========================================================================== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.work-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 95, 111, 0.08);
    cursor: pointer;
}

.work-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(44, 95, 111, 0.15);
}

.work-image {
    width: 100%;
    height: 250px;
    background-color: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.4);
}

.work-info {
    padding: var(--spacing-md);
}

.work-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Footer
   ========================================================================== */
.site-footer {
    background-color: transparent;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(44, 95, 111, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-tagline {
    margin-top: var(--spacing-sm);
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.7);
}

.footer-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-nav-col h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-nav-col ul {
    list-style: none;
}

.footer-nav-col li {
    margin-bottom: 0.5rem;
}

.footer-nav-col a {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.7);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* Two Column Layout with Blob
   ========================================================================== */
.two-col-section {
    position: relative;
    overflow-x: clip;
    padding: var(--spacing-xl) 0;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.two-col-content {
    max-width: 550px;
}

.italic-emphasis {
    font-style: italic;
    font-weight: 700;
    color: var(--color-orange);
    position: relative;
    display: inline-block;
}

.italic-emphasis::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-orange);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

/* Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {

    .hero-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

    .blob-hero-1 {
        width: 500px;
        height: 500px;
        right: -200px;
    }

    .blob-hero-2 {
        width: 250px;
        height: 250px;
    }

    .blob-section-blue,
    .blob-section-green {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
        margin-top: -120px;
        padding-top: 140px;
    }

    /* First section on any page should reach the top */
    main > section:first-child {
        margin-top: -120px;
        padding-top: 180px !important;
    }

    .hero-image img {
        height: auto;
        max-height: 50vh;
    }
}

/* ==========================================================================
   Mobile Menu / Burger Menu
   ========================================================================== */

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu:hover span {
    background-color: var(--color-teal);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(44, 95, 111, 0.15);
    overflow-y: auto;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--color-bg);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-blue-light));
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.mobile-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-logo .logo-main {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text);
}

.mobile-logo .logo-sub {
    font-size: 0.75rem;
    color: rgba(44, 95, 111, 0.7);
}

.close-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.close-menu:hover {
    background: var(--color-bg);
    color: var(--color-teal);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.mobile-nav-links a {
    padding: 1.25rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-blue-light), transparent);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a:active::before {
    width: 100%;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--color-teal);
    border-left-color: var(--color-teal);
    padding-left: 2rem;
}

.mobile-btn-contact {
    margin: 1rem 1.5rem;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, var(--color-teal), var(--color-blue-light));
    color: var(--color-white) !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    border-left: none !important;
    box-shadow: 0 4px 15px rgba(74, 172, 189, 0.3);
}

.mobile-btn-contact:hover,
.mobile-btn-contact:active {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-teal));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 172, 189, 0.4);
    padding-left: 2rem !important;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    border-top: 2px solid var(--color-bg);
    margin-top: 1rem;
}

.mobile-lang-switcher .lang-link {
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--color-bg);
}

.mobile-lang-switcher .lang-link.active {
    background: linear-gradient(135deg, var(--color-teal), var(--color-blue-light));
    color: var(--color-white);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 95, 111, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

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

    .main-nav {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }
}

/* Animation for mobile nav links */
@media (max-width: 768px) {
    .mobile-nav.active .mobile-nav-links a {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(2) {
        animation-delay: 0.15s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(4) {
        animation-delay: 0.25s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(5) {
        animation-delay: 0.3s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(6) {
        animation-delay: 0.35s;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Prevent blobs from overlapping content on mobile */
@media (max-width: 768px) {

    .hero,
    .section,
    .two-col-section,
    .services-section {
        overflow: hidden;
    }

    /* Adjust blob positioning on mobile to keep them more contained */
    .blob {
        opacity: 0.3;
    }

    .blob-hero-1 {
        transform: scale(0.7);
        top: -350px;
    }

    .blob-hero-2 {
        transform: scale(0.7);
    }

    .blob-section-orange,
    .blob-section-blue-light,
    .blob-section-teal {
        transform: scale(0.6);
    }
}