/* Custom Font */
@font-face {
    font-family: 'COOPBL';
    src: url('assets/fonts/COOPBL.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #000;
    --primary-dark: #333;
    --secondary-color: #000;
    --accent-color: #c80000;
    --danger-color: #c80000;
    --dark-bg: #000;
    --light-bg: #FAF4E8;
    --cream-bg: #FAF4E8;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --white: #ffffff;
    --text-primary: #000;
    --text-secondary: #333;
    --text-light: #666;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'COOPBL', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream-bg);
}

/* Headings - Cooper Black Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'COOPBL', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: normal;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 244, 232, 0.3);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1002;
    transform: translateY(35px);
}

.logo-img:hover {
    transform: translateY(35px) scale(1.05);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 2.8rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-button {
    background: var(--text-primary);
    color: var(--cream-bg);
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.5rem;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    overflow: visible;
    transition: transform 0.3s ease, clip-path 0.3s ease;
}

/* Remove old clip-path styling */
.nav-button:nth-child(1) a,
.nav-menu li:first-child .nav-button,
.nav-menu li:last-child .nav-button {
    clip-path: none;
}

/* Remove old pseudo-element approach */
.nav-button::before,
.nav-button::after {
    display: none;
}

/* Make the buttons themselves have organic, smooth wavy edges */
.nav-menu li:first-child .nav-button {
    clip-path: polygon(
        12% 8%, 25% 15%, 45% 5%, 65% 12%, 88% 6%, 
        96% 25%, 92% 50%, 94% 75%, 85% 92%,
        65% 88%, 45% 95%, 25% 85%, 8% 92%,
        4% 75%, 8% 50%, 6% 25%
    );
}

/* Center HTMLarious button gets organic styling too */
.nav-logo .nav-button {
    clip-path: polygon(
        10% 12%, 30% 6%, 50% 10%, 70% 8%, 90% 14%,
        94% 30%, 96% 50%, 92% 70%, 88% 88%,
        70% 92%, 50% 90%, 30% 94%, 12% 86%,
        6% 70%, 4% 50%, 8% 30%
    );
}

.nav-menu li:last-child .nav-button {
    clip-path: polygon(
        8% 12%, 25% 6%, 45% 14%, 65% 8%, 85% 15%,
        94% 25%, 96% 50%, 92% 75%, 88% 94%,
        65% 92%, 45% 86%, 25% 94%, 12% 88%,
        6% 75%, 4% 50%, 8% 25%
    );
}

/* Hover effects - subtle smooth shape variation */
.nav-menu li:first-child .nav-button:hover {
    clip-path: polygon(
        15% 6%, 28% 12%, 48% 8%, 68% 14%, 85% 10%,
        94% 28%, 96% 52%, 92% 78%, 88% 94%,
        68% 90%, 48% 92%, 28% 88%, 10% 90%,
        6% 78%, 4% 52%, 8% 28%
    );
}

/* Center HTMLarious button hover effect */
.nav-logo .nav-button:hover {
    clip-path: polygon(
        12% 10%, 32% 8%, 52% 12%, 72% 6%, 88% 12%,
        96% 32%, 94% 52%, 96% 72%, 85% 90%,
        72% 94%, 52% 88%, 32% 92%, 15% 88%,
        4% 72%, 6% 52%, 4% 32%
    );
}

.nav-menu li:last-child .nav-button:hover {
    clip-path: polygon(
        10% 15%, 28% 8%, 48% 12%, 68% 6%, 88% 12%,
        96% 28%, 94% 52%, 96% 78%, 85% 92%,
        68% 94%, 48% 88%, 28% 92%, 15% 85%,
        4% 78%, 6% 52%, 4% 28%
    );
}

/* Remove all the box-shadow droplets */
.nav-menu li:first-child .nav-button:before,
.nav-menu li:last-child .nav-button:before {
    box-shadow: none;
}

.nav-button:hover {
    background: var(--text-primary);
    transform: scale(1.02);
}

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

.nav-link::after {
    display: none;
}

.bouncing-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    transform: rotate(5deg);
    margin-left: 0;
}

.arrow-svg {
    width: 60px;
    height: 60px;
    color: var(--text-primary);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transform: rotate(8deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    40% {
        transform: translateY(-20px) rotate(-3deg);
    }
    60% {
        transform: translateY(-10px) rotate(8deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream-bg);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding-top: 220px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: left;
}

.gradient-text {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-primary, .btn-secondary, .fs-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-family: inherit;
}

.btn-primary, .fs-button {
    background: var(--text-primary);
    color: var(--cream-bg);
    box-shadow: none;
}

.btn-primary:hover, .fs-button:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--cream-bg);
}

.floating-shapes {
    position: relative;
    width: 120%;
    height: 500px;
    overflow: hidden;
    left: -10%;
    top: -50px;
}

.shape {
    position: absolute;
    transition: all 0.1s ease-out;
    will-change: transform, border-radius;
    animation: blobMorph 4s ease-in-out infinite alternate;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--text-primary), transparent);
    border-radius: 80% 20% 55% 45% / 25% 75% 25% 75%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, var(--accent-color), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(315deg, var(--text-primary), transparent);
    border-radius: 75% 25% 60% 40% / 50% 60% 40% 50%;
    animation-delay: 3s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    animation-delay: 1.5s;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 70% 40% 60% / 50% 60% 30% 70%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 70% 30% 60% 40% / 40% 70% 60% 30%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 70% 30% / 70% 40% 50% 60%;
        transform: rotate(270deg) scale(1.05);
    }
    100% {
        border-radius: 50% 50% 80% 20% / 80% 20% 50% 50%;
        transform: rotate(360deg) scale(1);
    }
}

/* Individual blob morphing patterns */
.shape-1 {
    animation-name: blob1Morph;
}

.shape-2 {
    animation-name: blob2Morph;
}

.shape-3 {
    animation-name: blob3Morph;
}

.shape-4 {
    animation-name: blob4Morph;
}

.shape-5 {
    animation-name: blob5Morph;
}

@keyframes blob1Morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 70% 60% 40% / 40% 60% 30% 70%; }
    100% { border-radius: 70% 30% 40% 60% / 70% 40% 60% 30%; }
}

@keyframes blob2Morph {
    0% { border-radius: 80% 20% 55% 45% / 25% 75% 25% 75%; }
    50% { border-radius: 20% 80% 45% 55% / 75% 25% 75% 25%; }
    100% { border-radius: 55% 45% 80% 20% / 50% 50% 50% 50%; }
}

@keyframes blob3Morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 50% 50% 50% 50% / 80% 20% 80% 20%; }
}

@keyframes blob4Morph {
    0% { border-radius: 75% 25% 60% 40% / 50% 60% 40% 50%; }
    50% { border-radius: 25% 75% 40% 60% / 60% 40% 50% 50%; }
    100% { border-radius: 60% 40% 75% 25% / 40% 50% 60% 40%; }
}

@keyframes blob5Morph {
    0% { border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
    50% { border-radius: 60% 40% 40% 60% / 30% 70% 30% 70%; }
    100% { border-radius: 80% 20% 50% 50% / 50% 50% 80% 20%; }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--cream-bg);
}

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

.section-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-primary);
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    background: var(--white);
}

.service-card.urgent {
    border: 3px solid var(--accent-color);
    background: var(--white);
}

/* Splatter Designs - More Visible and Animated */
.splatter {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    z-index: 0;
    animation: splatterFloat 12s ease-in-out infinite;
}

.service-card:hover .splatter {
    opacity: 0.25;
}

.splatter-1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 C120,30 150,50 160,80 C170,110 140,130 120,140 C100,150 80,140 60,130 C40,120 30,100 20,80 C10,60 30,40 50,30 C70,20 90,15 100,20 Z" fill="%23c80000"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 0s;
    animation-duration: 10s;
}

.splatter-2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,15 C130,25 160,45 175,75 C190,105 170,135 145,150 C120,165 90,155 65,140 C40,125 25,95 15,70 C5,45 25,25 50,15 C75,5 90,10 100,15 Z" fill="%23f59e0b"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 2s;
    animation-duration: 14s;
}

.splatter-3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,25 C125,35 145,55 155,85 C165,115 145,135 125,145 C105,155 85,145 65,135 C45,125 35,105 25,85 C15,65 35,45 55,35 C75,25 90,20 100,25 Z" fill="%2310b981"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 4s;
    animation-duration: 11s;
}

.splatter-4 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,30 C115,40 135,60 145,90 C155,120 135,140 115,150 C95,160 75,150 55,140 C35,130 25,110 15,90 C5,70 25,50 45,40 C65,30 85,25 100,30 Z" fill="%238b5cf6"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 1s;
    animation-duration: 13s;
}

.splatter-5 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,18 C122,28 148,48 158,78 C168,108 148,128 128,138 C108,148 88,138 68,128 C48,118 38,98 28,78 C18,58 38,38 58,28 C78,18 92,13 100,18 Z" fill="%2306b6d4"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 3s;
    animation-duration: 9s;
}

.splatter-6 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,22 C118,32 142,52 152,82 C162,112 142,132 122,142 C102,152 82,142 62,132 C42,122 32,102 22,82 C12,62 32,42 52,32 C72,22 88,17 100,22 Z" fill="%23ef4444"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 5s;
    animation-duration: 15s;
}

@keyframes splatterFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-15px, -10px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(10px, -20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-5px, 15px) rotate(270deg) scale(1.05);
    }
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.featured .service-price {
    color: var(--accent-color);
}

.urgent .service-price {
    color: var(--accent-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

.service-actions {
    display: none; /* Remove old flex container */
}

.service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.service-btn:hover {
    transform: scale(1.05);
}

.featured .service-btn {
    background: var(--accent-color);
}

.featured .service-btn:hover {
    transform: scale(1.05);
}

.service-btn.emergency {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

.service-btn.emergency:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Clients Section */
.clients {
    padding: 8rem 0;
    background: var(--cream-bg);
}

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

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

/* Client Splatter Effects - Redesigned */
.client-card {
    background: transparent;
    border: none;
    padding: 1rem;
    position: relative;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.client-card:hover {
    transform: scale(1.02);
}

.client-splatter {
    position: relative;
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover .client-splatter {
    opacity: 1;
}

.client-splatter-1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,10 C140,15 170,40 185,80 C200,120 175,160 140,180 C105,200 65,185 40,150 C15,115 10,75 25,40 C40,5 75,5 100,10 Z" fill="%23c80000"/><circle cx="160" cy="50" r="15" fill="%23c80000"/><circle cx="50" cy="160" r="8" fill="%23c80000"/></svg>') no-repeat center;
    background-size: contain;
}

.client-splatter-2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 C125,25 155,45 170,75 C185,105 170,135 145,155 C120,175 80,170 55,145 C30,120 25,80 40,50 C55,20 85,15 100,20 Z" fill="%23f59e0b"/><ellipse cx="140" cy="60" rx="12" ry="18" fill="%23f59e0b"/><circle cx="60" cy="150" r="10" fill="%23f59e0b"/></svg>') no-repeat center;
    background-size: contain;
}

.client-splatter-3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,15 C130,20 160,40 175,70 C190,100 175,130 150,150 C125,170 85,165 60,140 C35,115 30,75 45,45 C60,15 85,10 100,15 Z" fill="%2310b981"/><polygon points="150,40 165,55 150,70 135,55" fill="%2310b981"/><circle cx="50" cy="155" r="12" fill="%2310b981"/></svg>') no-repeat center;
    background-size: contain;
}

.client-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speech-bubble {
    background: var(--white);
    border: 3px solid var(--text-primary);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    max-width: 300px;
    margin: -1rem auto 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--text-primary);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--white);
}

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

.client-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.client-title {
    font-size: 1.1rem;
    color: #8B6F47;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Remove individual color overrides - all titles same color now */

.client-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
}

.client-results {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-stat {
    background: var(--text-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Color-matched result stats */
.client-card.featured .result-stat {
    background: var(--accent-color);
}

.client-card:nth-child(2) .result-stat {
    background: #f59e0b; /* Yellow to match splatter-2 */
}

.client-card:nth-child(3) .result-stat {
    background: #10b981; /* Green to match splatter-3 */
}

/* Animate the client splatter shapes */
.client-splatter {
    position: relative;
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: clientFloat 8s ease-in-out infinite;
}

.client-splatter-1 {
    animation-delay: 0s;
    animation-duration: 10s;
}

.client-splatter-2 {
    animation-delay: 2s;
    animation-duration: 12s;
}

.client-splatter-3 {
    animation-delay: 4s;
    animation-duration: 9s;
}

@keyframes clientFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg) scale(0.98);
    }
    75% {
        transform: translateY(-8px) rotate(1.5deg) scale(1.01);
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--cream-bg);
    color: var(--text-primary);
}

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

.contact .section-title {
    color: var(--text-primary);
}

.contact .section-subtitle {
    color: var(--text-secondary);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

.contact-form {
    background: transparent;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--text-primary);
    max-width: 600px;
    width: 100%;
}

.contact-form label,
.contact-form .fs-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-form .fs-field {
    margin-bottom: 1.5rem;
}

.contact-form .fs-description {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-form .fs-button-group {
    margin-top: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form .fs-input,
.contact-form .fs-textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
    border-bottom: 2px solid var(--text-primary);
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    text-align: left;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--cream-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid var(--text-primary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .services-container,
    .contact-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-card {
        padding: 1.5rem;
    }
    
    .client-name {
        font-size: 1.5rem;
    }
    
    .result-stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Smooth scrolling animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
}

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