/* ========================================
   Modern WebOrca Styles
   Colors inspired by Orca logo
   ======================================== */

:root {
    /* Brand Colors */
    --color-primary: #4a90e2;
    --color-primary-dark: #357abd;
    --color-primary-light: #6ba3e8;
    
    /* Neutrals */
    --color-black: #0a0a0a;
    --color-gray-900: #1a1a1a;
    --color-gray-800: #2a2a2a;
    --color-gray-700: #3f3f3f;
    --color-gray-600: #737373;
    --color-gray-500: #9ca3af;
    --color-gray-400: #d1d5db;
    --color-gray-300: #e5e7eb;
    --color-gray-200: #f3f4f6;
    --color-gray-100: #f9fafb;
    --color-white: #ffffff;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;
    --container-padding: 2rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-base: 0.2s ease;
    --transition-slow: 0.4s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-blue {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   Layout Containers
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hidden {
    display: none !important;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    z-index: 100;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: block;
    transition: opacity var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 200px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list a:not(.btn) {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a:not(.btn):hover {
    color: var(--color-black);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #2196F3 100%);
    border-color: #4a90e2;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357abd 0%, #1976D2 100%);
    border-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background-color: var(--color-white);
    border-color: var(--color-gray-300);
    color: var(--color-gray-900);
}

.btn-secondary:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

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

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: calc(100px + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 50%, #ffffff 100%);
}

/* SVG wave pattern background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='50' viewBox='0 0 100 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25 Q 12.5 15, 25 25 T 50 25 T 75 25 T 100 25' stroke='%234a90e2' stroke-width='2' fill='none' opacity='0.08'/%3E%3Cpath d='M0 35 Q 12.5 25, 25 35 T 50 35 T 75 35 T 100 35' stroke='%234a90e2' stroke-width='2' fill='none' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: waveFlow 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes waveFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-300);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

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

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-orca {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(0, 188, 212, 0.6), rgba(74, 144, 226, 0.3));
    border-radius: 50%;
    animation: rise linear infinite;
    z-index: 1;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    left: 20%;
    bottom: 10%;
    animation: rise 4s linear infinite;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    left: 40%;
    bottom: 5%;
    animation: rise 5s linear infinite 0.5s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    right: 30%;
    bottom: 15%;
    animation: rise 6s linear infinite 1s;
}

.bubble-4 {
    width: 12px;
    height: 12px;
    right: 20%;
    bottom: 8%;
    animation: rise 4.5s linear infinite 1.5s;
}

.bubble-5 {
    width: 18px;
    height: 18px;
    left: 60%;
    bottom: 12%;
    animation: rise 5.5s linear infinite 2s;
}

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

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-400px) scale(0.5);
        opacity: 0;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-orca,
    .bubble {
        animation: none;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: linear-gradient(180deg, #e1f5fe 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Wave ripple pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(74, 144, 226, 0.04) 2px, transparent 2px);
    background-size: 100px 100px, 120px 120px, 140px 140px;
    background-position: 0 0, 40px 40px, 80px 80px;
    animation: ripple 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        background-position: 0 0, 40px 40px, 80px 80px;
    }
    100% {
        background-position: 100px 100px, 140px 140px, 220px 220px;
    }
}

/* ========================================
   Services Section - Excel-Style Comparison Table
   ======================================== */

.services {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

/* Comparison Table Container */
.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Table Header Row */
.comparison-header {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    border-bottom: 2px solid var(--color-primary);
}

/* Feature Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    border-bottom: 1px solid var(--color-gray-200);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background-color: rgba(74, 144, 226, 0.03);
}

/* Table Cells */
.comparison-cell {
    padding: var(--space-lg);
    border-right: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:last-child {
    border-right: none;
}

/* Feature Label Column */
.comparison-cell.feature-label {
    background-color: var(--color-gray-100);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-cell.feature-name {
    background-color: var(--color-gray-50);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-gray-800);
    text-align: left;
    justify-content: flex-start;
}

/* Package Header Cells */
.comparison-cell.package-header {
    flex-direction: column;
    padding: var(--space-xl);
    position: relative;
}

.comparison-cell.package-header.featured {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(227, 242, 253, 0.15) 100%);
    border-left: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

.package-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.package-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-sm);
}

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

.package-subtitle {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin: 0;
}

/* Featured Column Cells */
.comparison-cell.featured {
    background-color: rgba(74, 144, 226, 0.03);
    border-left: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

/* Check Marks */
.check {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Empty Cell Indicator */
.comparison-cell:not(.feature-label):not(.feature-name):not(.package-header) {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

/* ========================================
   Work Section
   ======================================== */
.work {
    background: linear-gradient(180deg, #b2ebf2 0%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
}

/* Flowing current pattern */
.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='60' viewBox='0 0 120 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q 20 25, 40 30 T 80 30 T 120 30' stroke='%2300bcd4' stroke-width='1.5' fill='none' opacity='0.06'/%3E%3Cpath d='M0 45 Q 20 40, 40 45 T 80 45 T 120 45' stroke='%2300bcd4' stroke-width='1.5' fill='none' opacity='0.06'/%3E%3Cpath d='M0 15 Q 20 10, 40 15 T 80 15 T 120 15' stroke='%2300bcd4' stroke-width='1.5' fill='none' opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 240px 120px;
    animation: flowingCurrent 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes flowingCurrent {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 240px 0;
    }
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.work-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: block;
    color: inherit;
    text-decoration: none;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 188, 212, 0.2);
}

.work-card-link {
    cursor: pointer;
}

.work-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-gray-200);
    overflow: hidden;
}

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

.work-placeholder {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-content {
    padding: var(--space-lg);
}

.work-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.work-description {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.work-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* ========================================
   Process Section
   ======================================== */
.process {
    background: linear-gradient(180deg, #e0f7fa 0%, #f1f8f9 100%);
    position: relative;
    overflow: hidden;
}

/* Fish scale/water droplet pattern */
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 100%, transparent 40%, rgba(74, 144, 226, 0.05) 40%, rgba(74, 144, 226, 0.05) 42%, transparent 42%);
    background-size: 80px 60px;
    background-position: 0 0, 40px 30px;
    animation: scaleShift 35s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes scaleShift {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(40px);
        opacity: 1;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-xl);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-name {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.step-description {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 280px;
}

.process-connector {
    display: none;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: linear-gradient(180deg, #e3f2fd 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Seaweed/coral pattern */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, transparent 25%, rgba(74, 144, 226, 0.03) 25%, rgba(74, 144, 226, 0.03) 50%, transparent 50%, transparent 75%, rgba(74, 144, 226, 0.03) 75%);
    background-size: 60px 60px;
    animation: coralSway 40s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes coralSway {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    padding: var(--space-xl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.faq-answer {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Gentle tide pattern */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q 25 15, 50 20 T 100 20 T 150 20 T 200 20' stroke='%234a90e2' stroke-width='1' fill='none' opacity='0.04'/%3E%3Cpath d='M0 28 Q 25 23, 50 28 T 100 28 T 150 28 T 200 28' stroke='%234a90e2' stroke-width='1' fill='none' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 400px 80px;
    background-position: 0 center;
    animation: gentleTide 45s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gentleTide {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: 400px center;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-section {
    position: sticky;
    top: calc(100px + var(--space-xl));
}

.contact-intro {
    color: var(--color-gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-gray-100);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background-color: var(--color-gray-200);
    transform: translateX(8px);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.method-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.contact-form-section {
    background-color: var(--color-gray-100);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-gray-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 400;
    color: var(--color-gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    margin: 0 auto var(--space-md);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--color-gray-600);
    font-size: 1.125rem;
}

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

.footer-content {
    text-align: center;
    padding-bottom: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    height: 140px;
    width: auto;
    margin: 0 auto var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-copyright {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-gray-600);
}
/* ========================================
   Responsive Design
   ======================================== */

/* Ensure desktop always shows proper grid */
@media (min-width: 769px) {
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--space-xl) !important;
    }
    
    .hero-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--space-3xl) !important;
        align-items: center !important;
    }
    
    .work-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--space-xl) !important;
    }
    
    .process-steps {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: var(--space-xl) !important;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .services-grid,
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .process-connector {
        width: 2px;
        height: 60px;
        margin: 0 auto;
        background: linear-gradient(180deg, var(--color-gray-300) 0%, var(--color-gray-400) 100%);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-info-section {
        position: static;
    }
}
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-info-section {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
        --space-4xl: 4rem;
        --space-3xl: 3rem;
        --space-2xl: 2.5rem;
    }
    
    /* Header Mobile Optimization */
    .header-content {
        height: 80px;
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .nav-list {
        gap: 0.5rem;
    }
    
    .nav-list li:not(:last-child) {
        display: none;
    }
    
    .nav-list a:not(.btn) {
        font-size: 0.75rem;
    }
    
    .btn-small {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    /* Hero Mobile Optimization */
    .hero {
        padding: calc(80px + var(--space-xl)) 0 var(--space-2xl);
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    /* Move orca below CTAs on mobile */
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        height: 250px;
        margin-top: var(--space-md);
    }
    
    .hero-orca {
        max-height: 250px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.15;
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-lg);
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        padding-top: var(--space-lg);
    }
    
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Sections Mobile */
    section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .section-label {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
        margin-bottom: var(--space-xs);
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: var(--space-xs);
    }
    
    .section-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Services Mobile - Fixed Comparison Table */
    .services {
        padding: var(--space-3xl) 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }
    
    /* Hide desktop table structure on mobile */
    .comparison-table {
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: none;
    }
    
    /* Create mobile package cards using pseudo-elements */
    .comparison-table::after {
        content: '';
        display: block;
    }
    
    /* Mobile: Show as 3 separate package cards */
    @supports (display: grid) {
        .comparison-table {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }
        
        /* Show only package headers as cards on mobile */
        .comparison-header {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            background: none;
            border: none;
        }
        
        .comparison-cell.feature-label {
            display: none;
        }
        
        .comparison-cell.package-header {
            display: flex;
            flex-direction: column;
            background: var(--color-white);
            border: 1px solid var(--color-gray-200);
            border-radius: var(--radius-md);
            padding: var(--space-xl) var(--space-lg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-cell.package-header.featured {
            border: 2px solid var(--color-primary);
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(227, 242, 253, 0.1) 100%);
        }
        
        .package-badge {
            position: relative;
            top: 0;
            left: 0;
            transform: none;
            margin-bottom: var(--space-md);
            align-self: center;
        }
        
        .package-icon {
            width: 56px;
            height: 56px;
        }
        
        .package-name {
            font-size: 1.375rem;
            margin-bottom: 0.375rem;
        }
        
        .package-subtitle {
            font-size: 0.875rem;
            margin-bottom: var(--space-lg);
        }
        
        /* Add feature list inside each package card */
        .comparison-cell.package-header::after {
            content: attr(data-features);
            display: block;
            text-align: left;
            margin-top: var(--space-md);
            padding-top: var(--space-md);
            border-top: 1px solid var(--color-gray-200);
            font-size: 0.875rem;
            line-height: 1.6;
            color: var(--color-gray-700);
            white-space: pre-line;
        }
        
        /* Hide all feature rows on mobile */
        .comparison-row {
            display: none;
        }
    }
    
    /* Work Mobile */
    .work-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .work-card {
        padding: var(--space-lg);
    }
    
    /* Process Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-name {
        font-size: 1.25rem;
    }
    
    .service-features li {
        font-size: 0.875rem;
    }
    
    /* Work Mobile */
    .work-content {
        padding: var(--space-md);
    }
    
    .work-title {
        font-size: 1.125rem;
    }
    
    .work-description {
        font-size: 0.875rem;
    }
    
    /* Process Mobile */
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .step-name {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
    
    /* FAQ Mobile */
    .faq-item {
        padding: var(--space-lg);
    }
    
    .faq-question {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
    }
    
    /* Contact Mobile */
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: var(--space-sm);
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-label {
        font-size: 0.8125rem;
    }
    
    .method-value {
        font-size: 0.9375rem;
    }
    
    .contact-form-section {
        padding: var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--space-2xl) 0;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .header-content {
        height: 75px;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .btn-small {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .hero {
        padding: calc(75px + var(--space-lg)) 0 var(--space-xl);
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .hero-orca {
        max-height: 200px;
    }
    
    .hero-stats {
        gap: var(--space-sm);
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Form Animation Enhancements
   ======================================== */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(227, 242, 253, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.success-icon {
    margin: 0 auto var(--space-lg);
}

.success-icon svg {
    filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.3));
}

.form-success h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
}

.form-success p {
    color: var(--color-gray-600);
    font-size: 1.125rem;
}

/* Button disabled state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Additional Mobile Refinements */
@media (max-width: 768px) {
    /* Ensure text doesn't overflow on cards */
    .service-card-title,
    .work-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-card-description,
    .work-description {
        line-height: 1.6;
    }
    
    /* Better button spacing */
    .service-card-link {
        margin-top: var(--space-md);
    }
    
    /* Ensure proper spacing in navigation */
    .header-nav {
        flex-shrink: 0;
    }
    
    /* Fix any potential logo overflow */
    .logo {
        flex-shrink: 0;
        max-width: 180px;
    }
    
    .logo-img {
        width: 100%;
        height: auto;
        max-height: 90px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }
    
    .logo-img {
        max-height: 75px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.8125rem;
    }
    
    .service-features li {
        font-size: 0.75rem;
    }
    
    .work-grid {
        gap: var(--space-lg);
    }
}
