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

:root {
    --primary: #ec4899;
    --primary-light: #f472b6;
    --primary-dark: #db2777;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --purple: #a855f7;
    --purple-light: #c084fc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Prevent horizontal scroll on media elements */
img,
video,
iframe,
embed,
object,
svg {
    max-width: 100%;
    height: auto;
}

/* Ensure tables don't cause horizontal scroll */
table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.shape-circle {
    border-radius: 50%;
    background: var(--pink-200);
    opacity: 0.4;
    filter: blur(40px);
}

.shape-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--pink-300);
    opacity: 0.3;
    filter: blur(30px);
}

.shape-wavy {
    background: var(--pink-200);
    opacity: 0.2;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.flower-decoration {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.pink-wavy-section .flower-decoration {
    opacity: 0.3;
    z-index: 1;
}

.text-accent {
    color: var(--accent);
}

.text-purple {
    color: var(--purple);
}

.italic {
    font-style: italic;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .nav-logo {
        font-size: 1.5rem;
    }
}

.nav-logo:hover {
    color: var(--pink-600);
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--pink-600);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* Mobile Horizontal Navbar */
.mobile-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0.75rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .mobile-navbar {
        display: block;
    }
}

.mobile-nav-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
    gap: 0.5rem;
}

.mobile-nav-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-nav-item {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: var(--gray-100);
    border: 1px solid transparent;
}

.mobile-nav-item:hover {
    color: var(--primary);
    background: var(--pink-50);
}

.mobile-nav-item.active {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom right, #fff, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 5rem;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .hero-content,
.hero .hero-text,
.hero .hero-image {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobile: Image first, then text */
.hero-image {
    order: -1;
}

.hero-text {
    order: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Desktop: Reset order to default (text first, image second) */
    .hero-image {
        order: 2;
    }
    
    .hero-text {
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (min-width: 480px) {
    .btn {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
}

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

.btn-primary:hover {
    background: var(--pink-600);
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
    z-index: -1;
}

.blob-1 {
    width: 96px;
    height: 96px;
    background: var(--pink-300);
    top: -24px;
    right: -24px;
}

.blob-2 {
    width: 128px;
    height: 128px;
    background: var(--purple-light);
    bottom: -24px;
    left: -24px;
}

.wavy-separator {
    display: flex;
    gap: 0.5rem;
    margin-top: 5rem;
}

.wave {
    flex: 1;
    height: 8px;
    border-radius: 9999px;
}

.wave-1 {
    background: var(--pink-400);
}

.wave-2 {
    background: var(--accent-light);
}

.wave-3 {
    background: var(--purple-light);
}

/* Section Styles */
section {
    padding: 3rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        padding: 0;
    }
}

/* Capabilities */
.capabilities {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Wavy Pink Background Section */
.pink-wavy-section {
    position: relative;
    background: var(--pink-500);
    padding: 8rem 0;
    margin: 5rem 0;
    overflow: hidden;
}

.pink-wavy-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--pink-500);
    border-radius: 0 0 60% 60% / 0 0 100% 100%;
    transform: scaleX(1.1);
}

.pink-wavy-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--pink-500);
    border-radius: 60% 60% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.1);
}

.pink-wavy-section .section-title,
.pink-wavy-section .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.pink-wavy-section .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pink-wavy-section .section-subtitle {
    font-size: 1rem;
    opacity: 0.95;
}

@media (min-width: 480px) {
    .pink-wavy-section .section-title {
        font-size: 2.25rem;
    }
    
    .pink-wavy-section .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .pink-wavy-section .section-title {
        font-size: 3rem;
    }
    
    .pink-wavy-section .section-subtitle {
        font-size: 1.5rem;
    }
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capability-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, var(--white), var(--gray-50));
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

@media (min-width: 768px) {
    .capability-card {
        padding: 2rem;
    }
}

.capability-card:hover {
    border-color: var(--pink-400);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.capability-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Experience */
.experience {
    background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.experience-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .experience-card {
        padding: 3rem;
    }
}

.experience-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .experience-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.experience-header-logo {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-header-info {
    order: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .experience-header-logo {
        order: 2;
        justify-content: flex-end;
    }
    
    .experience-header-info {
        order: 1;
        text-align: left;
    }
}

.experience-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .experience-header h3 {
        font-size: 1.875rem;
    }
}

.experience-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.experience-logo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.experience-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .experience-logo {
        width: 140px;
        height: 140px;
        padding: 1rem;
        border-radius: 1.5rem;
    }
}

.experience-logo:hover {
    transform: scale(1.05);
}

.experience-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.experience-icon {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
    border-radius: 1.5rem;
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-icon:hover {
    transform: scale(1.05);
}

.experience-highlights ul {
    list-style: none;
}

.experience-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.experience-highlights li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.25rem;
}

.education-card {
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 1rem;
    padding: 3rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '🌸';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.2;
}

.education-card::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.2;
}

.education-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.education-degree {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-years {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Work Samples */
.work-samples {
    background: var(--white);
}

.work-categories {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.work-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .work-category-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.work-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.work-item img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
}

.work-item:hover img {
    animation: scrollDown 10s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

/* Metrics */
.metrics {
    background: var(--white);
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.metric-card {
    background: linear-gradient(to bottom right, var(--gray-50), var(--white));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .metric-card {
        padding: 3rem;
    }
}

.metric-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .metric-card h3 {
        font-size: 1.875rem;
    }
}

.metric-note {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .metric-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-item {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid var(--gray-100);
    transition: border-color 0.3s ease;
}

.metric-item:hover {
    border-color: var(--primary-light);
}

.metric-item h4 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.metric-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.metric-row.highlight {
    color: var(--primary);
    font-weight: 600;
}

.metric-number {
    font-weight: 600;
    color: var(--gray-900);
}

.metric-row.highlight .metric-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.metric-item:hover {
    border-color: var(--pink-400);
}

.metric-change {
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-weight: 700;
    font-size: 0.875rem;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: var(--pink-400);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom right, var(--white), var(--pink-50));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

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

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-text {
    position: relative;
    z-index: 1;
}

.contact-text .section-title {
    text-align: left;
    margin-bottom: 3rem;
}

@media (max-width: 1023px) {
    .contact-text .section-title {
        text-align: center;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .contact-value {
        font-size: 1.75rem;
    }
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--pink-600);
    transform: translateX(5px);
}

.contact-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

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

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

@media (max-width: 1023px) {
    .contact-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    margin: auto;
    animation: zoomIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
}

.modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10001;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--pink-300);
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .modal.active {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 4rem;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: calc(100vh - 5rem);
        width: 100%;
    }
    
    .modal-content img {
        max-height: calc(100vh - 5rem);
        width: 100%;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 2rem;
        width: 44px;
        height: 44px;
    }
}
