/* ============================================
   LIMA DIGITAL STUDIO - CHIC ELEGANT STYLESHEET
   ============================================ */

/* CSS Variables - Warm Brown/Cream Palette */
:root {
    /* Primary browns */
    --color-brown-900: #3d3229;
    --color-brown-800: #5c4d3d;
    --color-brown-700: #7a6552;
    --color-brown-600: #8b7355;
    --color-brown-500: #a08060;
    --color-brown-400: #b8a080;
    --color-brown-300: #d4c4b0;
    --color-brown-200: #e8ddd0;
    --color-brown-100: #f5f0e8;
    --color-brown-50: #faf8f5;
    
    /* Cream & Neutrals */
    --color-cream: #faf8f5;
    --color-warm-white: #ffffff;
    --color-warm-gray: #8a8178;
    --color-text-primary: #3d3229;
    --color-text-secondary: #6b5d4f;
    --color-text-muted: #9a8b7a;
    
    /* Accent */
    --color-accent: #8b7355;
    --color-accent-light: #a08060;
    
    /* Legacy compatibility */
    --color-primary: var(--color-brown-900);
    --color-primary-dark: var(--color-brown-900);
    --color-white: var(--color-warm-white);
    --color-black: var(--color-brown-900);
    --color-gray-50: var(--color-brown-50);
    --color-gray-100: var(--color-brown-100);
    --color-gray-200: var(--color-brown-200);
    --color-gray-300: var(--color-brown-300);
    --color-gray-400: var(--color-brown-400);
    --color-gray-500: var(--color-warm-gray);
    --color-gray-600: var(--color-text-secondary);
    --color-gray-700: var(--color-text-primary);
    --color-gray-800: var(--color-brown-800);
    --color-gray-900: var(--color-brown-900);
    --color-quote-tan: var(--color-brown-300);
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   NAVIGATION BAR - CHIC MINIMAL
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(61, 50, 41, 0.85);
    backdrop-filter: blur(10px);
    padding: 0 60px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    align-items: center;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    position: relative;
}

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

.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0.3);
}

.nav-logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #fff;
    transition: all var(--transition-base);
}

/* ============================================
   HERO BANNER - ELEGANT FULL HEIGHT
   ============================================ */

.hero-banner {
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    background-image: url('../images/HOME2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(61, 50, 41, 0.1) 0%, rgba(61, 50, 41, 0.3) 100%);
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-cta {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: white;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 40px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-cta:hover {
    background: white;
    color: var(--color-text-primary);
    border-color: white;
}

/* ============================================
   INTRO SECTION - CHIC ELEGANT
   ============================================ */

.intro-section {
    width: 100%;
    background: var(--color-cream);
    padding: 80px 0 60px;
    display: flex;
    justify-content: center:
    align-items: center;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.intro-headline {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-brown-800);
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.text-light {
    color: var(--color-brown-300);
    font-style: italic;
}

.intro-subheadline {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--color-brown-700);
    text-transform: uppercase;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    font-weight: 500;
}

.intro-quote {
    position: relative;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 64px 28px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(61, 50, 41, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.intro-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(61, 50, 41, 0.1);
}

.intro-quote:hover .quote-text::before,
.intro-quote:hover .quote-text::after {
    color: var(--color-brown-600);
}

.quote-context {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--color-text-primary);
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-text::before,
.quote-text::after {
    color: var(--color-brown-500);
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-serif);
}

.quote-text::before {
    content: '"';
    margin-right: 1px;
}

.quote-text::after {
    content: '"';
    margin-left: 1px;
}

.quote-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.signature-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-brown-300);
}

.signature-text {
    text-align: center;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.signature-title {
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   ALTERNATIVE HEADER (for other pages)
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--color-cream);
    z-index: 100;
    border-bottom: 1px solid var(--color-brown-200);
}

.header .container {
    height: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.logo-accent {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header .nav-link {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all var(--transition-base);
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
}

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

.header .nav-link:hover::after,
.header .nav-link.active::after {
    width: 100%;
}

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

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background-image: url('../images/aboutmepagex.jpg');
    background-size: cover;
    background-position: center center;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(61, 50, 41, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

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

.section {
    padding: 140px 0;
}

.section-dark {
    background-color: var(--color-brown-900);
    color: var(--color-warm-white);
}

.section-dark .section-tag {
    color: var(--color-brown-300);
}

.section-dark .section-title {
    color: var(--color-warm-white);
}

.section-light {
    background-color: white;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* ============================================
   SERVICES SECTION - HOMEPAGE
   ============================================ */

.services-section-home {
    padding: 140px 0;
    background-color: #faf9f7;
}

.services-home-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-home-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.services-home-headline {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.services-home-footer {
    text-align: center;
    margin-top: 50px;
}

.services-home-link {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.services-home-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.services-home-link:hover::after {
    width: 100%;
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Services Page - elegant layout */
.services-page-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-grid .service-home-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 340px;
    padding: 40px 32px;
    background: white;
    border: 1px solid var(--color-brown-200);
    transition: all 0.3s ease;
}

.services-page-grid .service-home-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(61, 50, 41, 0.08);
}

.services-page-grid .service-home-number {
    font-size: 48px;
    margin-bottom: 16px;
}

.services-page-grid .service-home-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.services-page-grid .service-home-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}

.services-page-grid .service-home-price {
    font-size: 22px;
    margin: 20px 0;
}

.services-page-grid .service-home-btn {
    padding: 14px 28px;
    font-size: 11px;
}

.services-page-grid .service-home-features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    text-align: left;
}

.services-page-grid .service-home-features li {
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.services-page-grid .service-home-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-accent);
    font-size: 12px;
}

.services-page-grid .service-home-extra {
    font-size: 11px;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 12px 0 16px;
    line-height: 1.4;
}

/* Popular Badge */
.service-home-card.popular {
    position: relative;
    border-color: var(--color-accent);
    background: linear-gradient(180deg, white 0%, var(--color-brown-50) 100%);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--color-accent);
    color: white;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 0 0 4px 4px;
}

/* Essential Badge - Teal/Green variant */
.service-badge.badge-essential {
    background: #5a8a7e;
}

.service-home-card.addon:has(.badge-essential),
.service-home-card.addon.essential {
    border-color: #5a8a7e;
}

.service-home-card.addon:has(.badge-essential):hover,
.service-home-card.addon.essential:hover {
    box-shadow: 0 20px 50px rgba(90, 138, 126, 0.15);
}

/* Recommended Badge - Rose/Pink variant */
.service-badge.badge-recommended {
    background: #a07070;
}

.service-home-card.addon:has(.badge-recommended),
.service-home-card.addon.recommended {
    border-color: #a07070;
}

.service-home-card.addon:has(.badge-recommended):hover,
.service-home-card.addon.recommended:hover {
    box-shadow: 0 20px 50px rgba(160, 112, 112, 0.15);
}

/* Add-on Cards (lighter styling) */
.service-home-card.addon {
    background: var(--color-brown-50);
    border-style: dashed;
}

.service-home-card.addon .service-home-number {
    font-size: 40px;
    color: var(--color-brown-300);
}

.service-home-card.addon .service-home-title {
    font-size: 18px;
}

/* Enhanced Card Hover Effects */
.service-home-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61, 50, 41, 0.12);
}

.service-home-card.popular:hover {
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.2);
}

.services-page-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border: 1px solid var(--color-brown-200);
}

.services-page-note p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.services-page-note a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-accent);
    transition: all 0.3s ease;
}

.services-page-note a:hover {
    color: var(--color-text-primary);
    border-color: var(--color-text-primary);
}

.service-home-card {
    background-color: #f5f4f2;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-home-number {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    color: #d4d0c8;
    line-height: 1;
    margin-bottom: 30px;
}

.service-home-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.service-home-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 280px;
}

.service-home-price {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: #5c5c5c;
    margin-bottom: 30px;
}

.service-home-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-home-btn:hover {
    background-color: #333;
}

/* ============================================
   FEATURED WORK SECTION - HOMEPAGE
   ============================================ */

.featured-work-section {
    width: 100%;
    background: var(--color-brown-900);
    padding: 120px 0;
}

.featured-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.featured-work-content {
    flex: 1;
    max-width: 500px;
}

.featured-work-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-brown-400);
    text-transform: uppercase;
    font-weight: 500;
}

.featured-work-title {
    font-family: var(--font-serif);
    font-size: 52px;
    color: white;
    margin-top: 16px;
    font-weight: 400;
    letter-spacing: -1px;
}

.featured-work-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 24px;
}

.featured-work-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-work-btn:hover {
    background: white;
    color: var(--color-brown-900);
    border-color: white;
}

.featured-work-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-work-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--color-brown-200);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.testimonials-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-cream);
    padding: 40px 32px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-brown-200);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(61, 50, 41, 0.08);
    border-color: var(--color-brown-300);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #d4a853;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--color-brown-200);
    padding-top: 20px;
}

.testimonial-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text-primary);
    font-weight: 500;
}

.testimonial-role {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Services Page FAQ - split layout with image */
.services-faq {
    background: var(--color-cream);
    padding: 0;
}

.faq-split-container {
    display: flex;
    min-height: 600px;
}

.faq-image-side {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.faq-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.faq-content-side {
    flex: 0 0 55%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-content-side .faq-header {
    text-align: left;
    margin-bottom: 40px;
}

.faq-content-side .faq-title {
    font-size: 36px;
}

.faq-content-side .faq-list {
    border-top: 1px solid var(--color-brown-200);
}

/* ============================================
   HOW IT WORKS / PROCESS SECTION
   ============================================ */

.process-section {
    width: 100%;
    background: #faf9f7;
    padding: 120px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.process-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b7355;
    text-transform: uppercase;
    font-weight: 500;
}

.process-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: #1a1a1a;
    margin-top: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 110px;
    right: 110px;
    height: 1px;
    background: #e5e5e5;
    z-index: 0;
}

.process-step {
    width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 48px;
    height: 48px;
    border: 2px solid #d4c4b0;
    border-radius: 50%;
    background: transparent;
    color: #8b7355;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: #8b7355;
    border-color: #8b7355;
    color: white;
}

.process-step-title {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 24px;
}

.process-step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-btn {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.process-btn:hover {
    background: #8b7355;
}

/* ============================================
   SERVICES SECTION - CHIC CARDS (Legacy)
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    padding: 48px 32px;
    background-color: white;
    border-radius: 2px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid var(--color-brown-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(61, 50, 41, 0.08);
    border-color: var(--color-brown-300);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin: 0 auto 28px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--color-brown-700);
}

.service-icon svg {
    stroke-width: 1;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   WORK SECTION - ELEGANT PORTFOLIO
   ============================================ */

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.work-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-brown-900);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.work-card:hover .work-image::after {
    opacity: 0.2;
}

.work-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-brown-200) 0%, var(--color-brown-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.work-info {
    padding: 28px 0;
    background: transparent;
}

.work-category {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-brown-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.work-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-warm-white);
    margin-top: 8px;
    font-weight: 400;
}

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

/* ============================================
   BUTTONS - CHIC MINIMAL
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 0;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-light {
    background-color: transparent;
    color: var(--color-warm-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

/* ============================================
   STATS SECTION - ELEGANT NUMBERS
   ============================================ */

.stats-section {
    background: white;
    border-top: 1px solid var(--color-brown-200);
    border-bottom: 1px solid var(--color-brown-200);
}

.stats-section.stats-thin {
    padding: 60px 0;
}

.stats-section.stats-thin .stat-number {
    font-size: 42px;
}

.stats-section.stats-thin .stat-label {
    font-size: 11px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--color-brown-100);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

/* ============================================
   FOOTER - ELEGANT DARK
   ============================================ */

.footer {
    background-color: var(--color-brown-900);
    color: var(--color-warm-white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-brand > p {
    color: var(--color-brown-300);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 10px;
    color: var(--color-warm-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--color-brown-300);
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

.footer-newsletter > p {
    color: var(--color-brown-300);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--color-brown-600);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 0;
    border: none;
    background-color: transparent;
    color: var(--color-warm-white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--color-brown-400);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 12px 24px;
    font-size: 10px;
    background: transparent;
    color: var(--color-warm-white);
    border: none;
    border-left: 1px solid var(--color-brown-600);
}

.newsletter-form .btn:hover {
    color: var(--color-brown-300);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-brown-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-brown-400);
    font-size: 12px;
    letter-spacing: 1px;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-filter {
    padding: 40px 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-brown-200);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-brown-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-warm-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.portfolio-grid-section {
    padding-top: 80px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.portfolio-item {
    display: flex;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(61, 50, 41, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    min-height: 240px;
}

.portfolio-image img,
.portfolio-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img,
.portfolio-card:hover .portfolio-image video {
    transform: scale(1.08);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-brown-200) 0%, var(--color-brown-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-placeholder {
    transform: scale(1.05);
}

/* Portfolio items 3, 4, 5 - show full image with contain */
.portfolio-item:nth-child(3) .portfolio-image img,
.portfolio-item:nth-child(4) .portfolio-image img,
.portfolio-item:nth-child(5) .portfolio-image img {
    object-fit: contain;
    padding: 2px;
    background-color: var(--color-cream);
    width: 100%;
    height: 100%;
    max-height: 98%;
}

/* Project 1 - wellbel.png zoomed in */
.portfolio-item:nth-child(1) .portfolio-image img {
    object-fit: cover;
    object-position: center 15%;
    width: 100%;
    height: 100%;
}

/* Coming Soon cards styling */
.portfolio-card.coming-soon .portfolio-placeholder {
    background: linear-gradient(135deg, var(--color-brown-100) 0%, var(--color-brown-200) 100%);
    border: 1px dashed var(--color-brown-300);
    aspect-ratio: 4/3;
}

.portfolio-card.coming-soon .portfolio-info p {
    min-height: 22px;
    line-height: 1.6;
}

.portfolio-info p:empty,
.portfolio-info p:contains('&nbsp;') {
    min-height: 22px;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-brown-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
}

/* Project link in description */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding: 4px 10px;
    background: var(--color-brown-400);
    color: var(--color-cream);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-link:hover {
    background: var(--color-brown-500);
}

/* Lightbox visit site button */
.lightbox-visit-site {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--color-cream);
    color: var(--color-brown-500);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lightbox-visit-site:hover {
    background: var(--color-brown-400);
    color: var(--color-cream);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 50, 41, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.portfolio-link:hover {
    background: white;
    color: var(--color-text-primary);
}

.portfolio-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.portfolio-category {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.portfolio-info h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-text-primary);
    margin: 8px 0 12px;
    font-weight: 400;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(61, 50, 41, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-story {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-brown-200) 0%, var(--color-brown-300) 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   ABOUT ME SECTION - 50/50 SPLIT
   ============================================ */

.about-me-section {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 0;
}

.about-me-image {
    width: 50%;
    height: 100vh;
    background-image: url('../images/aboutmepurse.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    border: none;
}

.about-me-content {
    width: 50%;
    height: 100vh;
    background: #7d6b5d;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    border: none;
}

.about-me-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    color: #c4b8a8;
    text-transform: uppercase;
    font-weight: 500;
}

.about-me-headline {
    font-family: var(--font-serif);
    font-size: 44px;
    color: white;
    line-height: 1.2;
    margin-top: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.about-me-body {
    margin-top: 20px;
}

.about-me-body p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #e8e4df;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-me-body p:last-child {
    margin-bottom: 0;
}

.about-me-signature {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 24px;
}

.about-me-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: white;
    font-weight: 400;
    margin: 0;
}

.about-me-title {
    font-size: 10px;
    letter-spacing: 2px;
    color: #c4b8a8;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 0;
}

/* ============================================
   SKILLS SECTION - ABOUT PAGE
   ============================================ */

.skills-section {
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--color-brown-200);
}

.skills-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.skills-header {
    text-align: center;
    margin-bottom: 60px;
}

.skills-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.skills-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.skill-category {
    padding: 32px;
    background: var(--color-cream);
    border: 1px solid var(--color-brown-200);
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(61, 50, 41, 0.06);
}

.skill-category.wide {
    grid-column: span 2;
}

.skill-category-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-text-primary);
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-brown-200);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-brown-300);
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.skill-tag.cert {
    background: var(--color-brown-100);
    border-color: var(--color-brown-300);
    font-weight: 500;
}

.skill-tag.cert:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ============================================
   APPROACH TIMELINE SECTION - ABOUT PAGE
   ============================================ */

.approach-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.approach-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-text-primary);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.approach-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 0 0 160px;
    text-align: center;
}

.timeline-number {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-accent);
    margin: 0 auto 20px;
    background: white;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-number {
    background: var(--color-accent);
    color: white;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text-primary);
    font-weight: 400;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.timeline-arrow {
    flex: 0 0 30px;
    padding-top: 12px;
    color: var(--color-brown-300);
}

.timeline-arrow svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   PRINCIPLES SECTION - ABOUT PAGE
   ============================================ */

.principles-section {
    padding: 80px 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-brown-200);
}

.principles-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.principle-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

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

.principle-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.principle-item p {
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown-400);
    margin: 0 auto 28px;
}

.value-icon svg {
    stroke-width: 1;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
    font-weight: 400;
}

.value-card p {
    font-size: 14px;
    color: var(--color-brown-300);
    line-height: 1.7;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-detail-section {
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--color-brown-200);
}

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

.service-detail:nth-child(even) .service-detail-content {
    order: 2;
}

.service-detail:nth-child(even) .service-detail-image {
    order: 1;
}

.service-detail-content h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.service-features li {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: var(--color-accent);
}

.service-detail-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-brown-200) 0%, var(--color-brown-300) 100%);
    border-radius: 2px;
}

/* ============================================
   NEWSLETTER SUBSCRIBE SECTION
   ============================================ */

.newsletter-subscribe-section {
    width: 100%;
    background: white;
    padding: 100px 0;
}

.newsletter-subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-subscribe-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
}

.newsletter-subscribe-title {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 400;
    margin-top: 16px;
    letter-spacing: -0.5px;
}

.newsletter-subscribe-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 16px;
}

.newsletter-subscribe-form {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 40px;
}

.newsletter-subscribe-form input {
    width: 400px;
    height: 56px;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    color: #1a1a1a;
    background: white;
}

.newsletter-subscribe-form input::placeholder {
    color: #999;
}

.newsletter-subscribe-form input:focus {
    outline: none;
    border-color: #7d6b5d;
}

.newsletter-subscribe-form button {
    width: 160px;
    height: 56px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-subscribe-form button:hover {
    opacity: 0.9;
}

.newsletter-subscribe-privacy {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
}

/* Newsletter Success Message - Brown palette */
.newsletter-message {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brown-700);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInMessage 0.4s ease;
}

.newsletter-message.show {
    display: flex;
}

.newsletter-message::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--color-brown-600);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

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

@media (max-width: 640px) {
    .newsletter-subscribe-section {
        padding: 80px 24px;
    }
    
    .newsletter-subscribe-title {
        font-size: 36px;
    }
    
    .newsletter-subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-subscribe-form input,
    .newsletter-subscribe-form button {
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   FAQ ACCORDION SECTION
   ============================================ */



.faq-section {
    padding: 100px 20px;
    background: white;
    overflow: hidden;
}

.faq-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.faq-image-left,
.faq-image-right {
    flex: 0 0 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-image-left {
    align-self: flex-start;
}

.faq-image-right {
    align-self: flex-end;
    margin-top: 100px;
}

.faq-image-left img,
.faq-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-container {
    flex: 1;
    max-width: 650px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-brown-400);
    margin-bottom: 16px;
    font-weight: 500;
    display: block;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-text-primary);
}

.faq-list {
    border-top: 1px solid var(--color-brown-200);
}

.faq-list .faq-item {
    border-bottom: 1px solid var(--color-brown-200);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-number {
    font-size: 13px;
    color: var(--color-brown-400);
    width: 40px;
    flex-shrink: 0;
    font-weight: 400;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    color: var(--color-text-primary);
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--color-brown-400);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 1px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-list .faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
    padding: 0 0 24px 40px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.faq-list .faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */

.tech-stack-section {
    width: 100%;
    background: var(--color-cream);
    padding: 60px 0;
    border-top: 1px solid var(--color-brown-200);
    border-bottom: 1px solid var(--color-brown-200);
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.tech-stack-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 40px;
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.tech-icon-circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-brown-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.tech-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.tech-icon-item span {
    font-size: 11px;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tech-icon-item:hover .tech-icon-circle {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.tech-icon-item:hover .tech-icon-circle svg {
    color: white;
}

.tech-icon-item:hover span {
    color: var(--color-accent);
}

/* Dark Tech Stack (Services Page) */
.tech-stack-dark {
    background: var(--color-brown-800);
    border-color: var(--color-brown-700);
    padding: 70px 0;
}

.tech-stack-dark .tech-stack-eyebrow {
    color: var(--color-brown-100);
}

.tech-stack-dark .tech-icon-circle {
    background: var(--color-cream);
    border-color: var(--color-cream);
}

.tech-stack-dark .tech-icon-circle svg {
    color: var(--color-brown-700);
}

.tech-stack-dark .tech-icon-item span {
    color: var(--color-brown-200);
}

.tech-stack-dark .tech-icon-item:hover .tech-icon-circle {
    background: var(--color-brown-50);
    border-color: var(--color-brown-50);
}

.tech-stack-dark .tech-icon-item:hover .tech-icon-circle svg {
    color: var(--color-brown-800);
}

/* Brands Marquee Section */
.brands-marquee-section {
    background: var(--color-brown-700);
    padding: 20px 0;
    overflow: hidden;
}

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

.brands-marquee-content {
    display: flex;
    gap: 80px;
    animation: marquee-right 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.brands-marquee-content span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-brown-200);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes marquee-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Trust Badges Section */
.trust-badges-section {
    background: var(--color-cream);
    padding: 50px 0;
    border-top: 1px solid var(--color-brown-200);
}

.trust-badges-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-brown-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-brown-600);
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

.trust-badge-divider {
    width: 1px;
    height: 30px;
    background: var(--color-brown-300);
}

/* ============================================
   BEGIN YOUR PROJECT SECTION
   ============================================ */

.begin-project-section {
    background: #7d6b5d;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Contact page version needs margin for fixed header */
.contact-page .begin-project-section {
    margin-top: 0;
}

.begin-project-grid {
    display: flex;
    gap: 0;
    align-items: stretch;
}

/* Left Side - Info (40%) */
.begin-project-info {
    width: 40%;
    padding: 60px 60px 60px 0;
    color: white;
}

.begin-project-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4b8a8;
    font-weight: 500;
}

.begin-project-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
}

.begin-project-description {
    font-size: 14px;
    line-height: 1.7;
    color: #d4ccc4;
    margin-top: 20px;
}

.begin-project-details {
    list-style: none;
    margin-top: 40px;
}

.begin-project-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: white;
}

.begin-project-details li::before {
    content: "✓";
    color: #c4b8a8;
    font-size: 14px;
}

/* Right Side - Form (60%) */
.begin-project-form {
    width: 60%;
    background: white;
    padding: 50px 60px;
}

.begin-project-form .form-group {
    margin-bottom: 20px;
}

.begin-project-form .form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 500;
}

.begin-project-form .form-group input,
.begin-project-form .form-group select,
.begin-project-form .form-group textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    color: #666;
    background: white;
    transition: border-color 0.3s ease;
}

.begin-project-form .form-group input::placeholder,
.begin-project-form .form-group textarea::placeholder {
    color: #999;
}

.begin-project-form .form-group input:focus,
.begin-project-form .form-group select:focus,
.begin-project-form .form-group textarea:focus {
    outline: none;
    border-color: #7d6b5d;
}

.begin-project-form .form-group select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-color: white;
    cursor: pointer;
    color: #999;
}

.begin-project-form .form-group select option {
    color: #666;
}

.begin-project-form .form-group select option[value=""] {
    color: #999;
}

.begin-project-form .form-group textarea {
    height: 120px;
    padding: 16px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #333;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
    border-radius: 2px;
    animation: fadeInMessage 0.4s ease;
}

.form-message.success {
    display: block;
    background: var(--color-brown-100);
    color: var(--color-brown-700);
    border: 1px solid var(--color-brown-300);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.05);
    color: #c75b5b;
    border: 1px solid rgba(199, 91, 91, 0.3);
}

/* ============================================
   CONTACT PAGE STYLES (Legacy Support)
   ============================================ */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 48px;
}

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h4 {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 15px;
    color: var(--color-text-primary);
}

.contact-form {
    background: var(--color-cream);
    padding: 56px;
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 28px;
}

.contact-form .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
    color: var(--color-text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-brown-300);
    transition: border-color var(--transition-base);
}

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

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 1px solid var(--color-brown-300);
    transition: all var(--transition-base);
}

.social-links a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .main-nav {
        padding: 0 40px;
        height: 70px;
    }
    
    .nav-links {
        gap: 28px;
    }
    
    .lang-switcher {
        margin-left: 20px;
    }
    
    .header {
        height: 70px;
    }
    
    .nav-menu {
        gap: 32px;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    /* Hero Banner Tablet */
    .hero-content {
        bottom: 60px;
        gap: 20px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .hero-cta {
        font-size: 10px;
        padding: 14px 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-page-grid .service-home-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 260px;
        padding: 36px 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 15px);
        margin: 0 auto;
    }
    
    .service-home-card {
        padding: 48px 28px;
    }
    
    .service-home-number {
        font-size: 60px;
    }
    
    /* Featured Work Section Tablet */
    .featured-work-section {
        padding: 100px 0;
    }
    
    .featured-work-container {
        padding: 0 40px;
        gap: 60px;
    }
    
    .featured-work-title {
        font-size: 42px;
    }
    
    .featured-work-image img {
        max-height: 400px;
    }
    
    /* Tech Stack Section Tablet */
    .tech-stack-section {
        padding: 50px 0;
    }
    
    .tech-stack-container {
        padding: 0 40px;
    }
    
    .tech-stack-grid {
        gap: 25px;
    }
    
    /* Trust Badges Tablet */
    .trust-badges-container {
        gap: 25px;
        padding: 0 30px;
    }
    
    .trust-badge-text {
        font-size: 13px;
    }
    
    /* FAQ Section Tablet */
    .faq-layout {
        gap: 20px;
    }
    
    .faq-image-left,
    .faq-image-right {
        flex: 0 0 140px;
        height: 140px;
    }
    
    .faq-image-right {
        margin-top: 80px;
    }
    
    .faq-title {
        font-size: 30px;
    }
    
    /* Principles Section Tablet */
    .principles-section {
        padding: 60px 0;
    }
    
    .principles-grid {
        gap: 60px;
    }
    
    .principle-icon {
        width: 40px;
        height: 40px;
    }
    
    .principle-item h3 {
        font-size: 20px;
    }
    
    .tech-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon-circle svg {
        width: 22px;
        height: 22px;
    }
    
    /* Process Section Tablet */
    .process-section {
        padding: 100px 0;
    }
    
    .process-container {
        padding: 0 40px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: calc(50% - 30px);
        max-width: 280px;
    }
    
    /* Skills Section Tablet */
    .skills-section {
        padding: 80px 0;
    }
    
    .skills-container {
        padding: 0 40px;
    }
    
    .skills-title {
        font-size: 36px;
    }
    
    .skills-grid {
        gap: 30px;
    }
    
    .skill-category {
        padding: 24px;
    }
    
    /* Approach Timeline Tablet */
    .approach-section {
        padding: 80px 0;
    }
    
    .approach-container {
        padding: 0 40px;
    }
    
    .approach-title {
        font-size: 36px;
    }
    
    .approach-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .timeline-step {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 150px;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    /* FAQ Split Layout Tablet */
    .faq-split-container {
        flex-direction: column;
    }
    
    .faq-image-side {
        flex: 0 0 300px;
        height: 300px;
    }
    
    .faq-image-side img {
        position: relative;
        height: 300px;
    }
    
    .faq-content-side {
        flex: 1;
        padding: 60px 40px;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .intro-headline {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-detail:nth-child(even) .service-detail-content,
    .service-detail:nth-child(even) .service-detail-image {
        order: unset;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    /* Begin Your Project Tablet */
    .begin-project-info {
        padding: 40px 40px 40px 0;
    }
    
    .begin-project-form {
        padding: 40px;
    }
    
    .begin-project-title {
        font-size: 36px;
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (> 1440px)
   ============================================ */

@media (min-width: 1440px) {
    .hero-content {
        bottom: 120px;
        gap: 40px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 5px;
    }
    
    .hero-cta {
        font-size: 13px;
        padding: 18px 48px;
        letter-spacing: 3px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */

@media (max-width: 768px) {
    .main-nav {
        padding: 0 20px;
        height: 70px;
        background: rgba(61, 50, 41, 0.95);
        pointer-events: none;
    }
    
    .nav-container {
        position: relative;
        width: 100%;
        pointer-events: auto;
    }
    
    .nav-logo-text {
        pointer-events: auto;
    }
    
    .nav-toggle {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        pointer-events: auto;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 15px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-toggle span {
        pointer-events: none;
        width: 22px;
        height: 2px;
    }
    
    .nav-logo img {
        height: 30px;
    }
    
    .nav-logo-text {
        font-size: 18px;
        color: #fff;
        max-width: calc(100% - 55px);
        white-space: nowrap;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: rgba(61, 50, 41, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 0;
        gap: 32px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 3px;
        padding: 12px 0;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #fff;
    }
    
    /* Alternative Header Mobile */
    .header {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 40px 0;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        border-bottom: 1px solid var(--color-brown-200);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .logo-text,
    .logo-accent {
        font-size: 20px;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        height: auto;
        min-height: auto;
        aspect-ratio: 1366/1100;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #f5f5f5;
    }
    
    .hero-content {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 20px;
        background: transparent;
        margin-top: 0;
        gap: 12px;
    }
    
    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
        max-width: 100%;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.95);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 10px;
    }
    
    .hero-cta {
        padding: 8px 18px;
        font-size: 7px;
        letter-spacing: 1.5px;
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    /* Intro Section Mobile */
    .intro-section {
        padding: 30px 0 40px;
    }
    
    .intro-container {
        padding: 0 20px;
    }
    
    .intro-headline {
        font-size: 22px;
        line-height: 1.35;
    }
    
    .intro-subheadline {
        font-size: 10px;
        letter-spacing: 2px;
        margin-top: 12px;
    }
    
    .intro-quote {
        padding: 24px 24px 20px;
        margin-top: 20px;
    }
    
    .quote-context {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 5px;
    }
    
    .quote-text {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 5px;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 22px;
    }
    
    .signature-name {
        font-size: 16px;
    }
    
    .signature-title {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    /* Sections Mobile */
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 36px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    /* Services Preview Mobile */
    .services-section-home {
        padding: 60px 0;
    }
    
    .services-home-headline {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .services-home-footer {
        margin-top: 32px;
    }
    
    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 12px;
    }
    
    /* Skills Section Mobile */
    .skills-section {
        padding: 50px 0;
    }
    
    .skills-container {
        padding: 0 20px;
    }
    
    .skills-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .skill-category.wide {
        grid-column: span 1;
    }
    
    .skill-category {
        padding: 20px;
    }
    
    .skill-category-title {
        font-size: 16px;
    }
    
    .skill-list li {
        font-size: 13px;
    }
    
    /* Approach Timeline Mobile */
    .approach-section {
        padding: 50px 0;
    }
    
    .approach-container {
        padding: 0 20px;
    }
    
    .approach-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    
    .approach-timeline {
        flex-direction: column;
        gap: 24px;
    }
    
    .timeline-step {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 24px 20px;
    }
    
    .timeline-step h4 {
        font-size: 16px;
    }
    
    .timeline-step p {
        font-size: 13px;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    /* FAQ Split Layout Mobile */
    .faq-image-side {
        flex: 0 0 280px;
        height: 280px;
    }
    
    .faq-image-side img {
        height: 280px;
        object-fit: contain;
        object-position: center top;
    }
    
    .faq-content-side {
        padding: 32px 20px;
    }
    
    .faq-content-side .faq-title {
        font-size: 22px;
    }
    
    .faq-content-side .faq-item {
        padding: 0;
    }
    
    .faq-content-side .faq-question {
        padding: 16px 0;
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer;
    }
    
    .faq-content-side .faq-item.active .faq-answer {
        max-height: 500px;
    }
    
    .faq-content-side .faq-answer-content {
        padding-left: 0;
        padding-bottom: 20px;
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .services-page-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .services-page-grid .service-home-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 28px 24px;
    }
    
    .services-page-note {
        margin-top: 32px;
        padding: 20px;
        font-size: 13px;
    }
    
    .service-home-card {
        padding: 32px 24px;
    }
    
    .service-home-number {
        font-size: 48px;
    }
    
    .service-home-title {
        font-size: 20px;
    }
    
    .service-home-desc {
        font-size: 13px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-card {
        height: 280px;
    }
    
    .work-card-content h3 {
        font-size: 18px;
    }
    
    .work-card-content p {
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stats-section.stats-thin {
        padding: 32px 0;
    }
    
    .stats-section.stats-thin .stat-number {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-bottom: none;
    }
    
    .newsletter-form input {
        border-bottom: 1px solid var(--color-brown-600);
        margin-bottom: 16px;
    }
    
    .newsletter-form .btn {
        border-left: none;
        border: 1px solid var(--color-brown-600);
        width: 100%;
    }
    
    /* Portfolio Page Mobile */
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .portfolio-info {
        padding: 20px;
        min-height: auto;
    }
    
    .portfolio-info h3 {
        font-size: 18px;
        margin: 6px 0 8px;
    }
    
    .portfolio-info p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .portfolio-category {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .filter-buttons {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 10px;
    }
    
    /* About Page Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 36px 24px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    /* About Me Section Mobile */
    .about-me-section {
        flex-direction: column;
        height: auto;
    }
    
    .about-me-image {
        width: 100%;
        height: 50vh;
    }
    
    .about-me-content {
        width: 100%;
        height: auto;
        padding: 60px 40px;
    }
    
    /* Principles Section Mobile */
    .principles-section {
        padding: 50px 0;
    }
    
    .principles-grid {
        flex-direction: column;
        gap: 36px;
    }
    
    .principle-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }
    
    .about-me-headline {
        font-size: 32px;
    }
    
    .about-me-signature {
        margin-top: 40px;
    }
    
    /* Contact Page Mobile */
    .contact-form {
        padding: 36px 24px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    /* Begin Your Project Mobile */
    .begin-project-section {
        padding: 60px 0;
    }
    
    .contact-page .begin-project-section {
        margin-top: 0;
    }
    
    .begin-project-grid {
        flex-direction: column;
    }
    
    .begin-project-info {
        width: 100%;
        padding: 40px 24px;
    }
    
    .begin-project-title {
        font-size: 32px;
    }
    
    .begin-project-form {
        width: 100%;
        padding: 40px 24px;
    }
    
    /* FAQ Section Mobile */
    .faq-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-image-left,
    .faq-image-right {
        flex: none;
        width: 150px;
        height: 150px;
        margin-top: 0;
    }
    
    .faq-image-left {
        order: -1;
    }
    
    .faq-image-right {
        order: 1;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .faq-text {
        font-size: 15px;
        padding-right: 10px;
    }
    
    .faq-answer-content {
        padding-left: 0;
        font-size: 14px;
        padding-bottom: 20px;
    }
    
    .faq-list .faq-item.active .faq-answer {
        max-height: 500px;
    }
    
    .faq-number {
        width: 35px;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
    }
    
    /* Featured Work Section Mobile */
    .featured-work-section {
        padding: 80px 0;
    }
    
    .featured-work-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 50px;
    }
    
    .featured-work-content {
        max-width: 100%;
        text-align: center;
    }
    
    .featured-work-title {
        font-size: 36px;
    }
    
    .featured-work-image {
        order: -1;
    }
    
    .featured-work-image img {
        max-height: 300px;
    }
    
    /* Tech Stack Section Mobile */
    .tech-stack-section {
        padding: 40px 0;
    }
    
    .tech-stack-container {
        padding: 0 24px;
    }
    
    .tech-stack-eyebrow {
        font-size: 10px;
        margin-bottom: 30px;
    }
    
    .tech-stack-grid {
        gap: 20px;
    }
    
    .tech-icon-circle {
        width: 44px;
        height: 44px;
    }
    
    .tech-icon-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .tech-icon-item span {
        font-size: 10px;
    }
    
    /* Brands Marquee Mobile */
    .brands-marquee-section {
        padding: 16px 0;
    }
    
    .brands-marquee-content {
        gap: 40px;
        animation: marquee-right 25s linear infinite;
    }
    
    .brands-marquee-content span {
        font-size: 0.85rem;
    }
    
    /* Trust Badges Mobile */
    .trust-badges-section {
        padding: 35px 0;
    }
    
    .trust-badges-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
    }
    
    .trust-badge-divider {
        width: 60px;
        height: 1px;
    }
    
    .trust-badge-text {
        font-size: 13px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 80px 0;
    }
    
    .process-container {
        padding: 0 24px;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-step {
        width: 100%;
        max-width: 280px;
    }
    
    .process-cta {
        margin-top: 50px;
    }
    
    .process-btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Services Page Mobile */
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-headline {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

/* ============================================
   NEW FOOTER - ELEGANT DESIGN
   ============================================ */

.footer-new {
    background-color: #6b5e54;
    padding: 80px 60px 40px;
    color: #fff;
}

.footer-new-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-new-brand {
    max-width: 300px;
}

.footer-new-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-new-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.footer-new-social {
    display: flex;
    gap: 16px;
}

.footer-new-social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-new-social-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-new-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Navigation & Services Columns */
.footer-new-column h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-new-links {
    list-style: none;
}

.footer-new-links li {
    margin-bottom: 16px;
}

.footer-new-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-new-links a:hover {
    color: #fff;
}

/* Newsletter Column */
.footer-new-newsletter h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-new-newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-new-newsletter-form {
    display: flex;
}

.footer-new-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-new-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-new-newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-new-newsletter-btn {
    width: 50px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-new-newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.footer-new-newsletter-btn svg {
    width: 18px;
    height: 18px;
    color: #6b5e54;
}

/* Footer Newsletter Message */
.footer-newsletter-message {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-brown-300);
    display: none;
    align-items: center;
    gap: 8px;
    animation: fadeInMessage 0.4s ease;
}

.footer-newsletter-message.show {
    display: flex;
}

.footer-newsletter-message::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-brown-400);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-new-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-new-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-new-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-new-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-new-brand {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-new {
        padding: 40px 20px 30px;
    }
    
    .footer-new-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-new-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-new-column,
    .footer-new-newsletter {
        width: 100%;
    }
    
    .footer-new-column h4,
    .footer-new-newsletter h4 {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .footer-new-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
    }
    
    .footer-new-links li {
        margin-bottom: 0;
    }
    
    .footer-new-links a {
        font-size: 14px;
    }
    
    .footer-new-newsletter p {
        font-size: 14px;
    }
    
    .footer-new-logo {
        font-size: 28px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .footer-new-tagline {
        font-size: 14px;
    }
    
    .footer-new-newsletter-form {
        max-width: 100%;
    }
    
    .footer-new-newsletter-input {
        padding: 14px 16px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .nav-logo-text {
        font-size: 13px;
        max-width: calc(100% - 50px);
    }
    
    .nav-toggle {
        right: 5px;
        padding: 10px;
    }
    
    .footer-new {
        padding: 32px 16px 24px;
    }
    
    .footer-new-tagline {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .footer-new-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        text-align: center;
        padding-top: 24px;
    }
    
    .footer-new-copyright,
    .footer-new-location {
        font-size: 11px;
    }
    
    .footer-new-logo {
        font-size: 24px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .nav-logo-text {
        font-size: 11px;
        max-width: calc(100% - 45px);
    }
}

/* iPhone 11 / Small phones (375px and below) */
@media (max-width: 375px) {
    .hero-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
        padding: 0 5px;
    }
    
    .quote-context {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    
    .quote-text {
        font-size: 12px;
    }
}

/* ============================================
   LANGUAGE SWITCHER - CHIC ELEGANT
   ============================================ */

.lang-switcher {
    position: relative;
    margin-left: 32px;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-switcher-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.lang-switcher-btn.active {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(61, 50, 41, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: rgba(61, 50, 41, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.lang-option:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.lang-option.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 16px;
        position: relative;
    }
    
    .lang-switcher-btn {
        width: auto;
        min-width: 60px;
        height: 44px;
        font-size: 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0 12px;
    }
    
    .lang-switcher-btn::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid currentColor;
        transition: transform 0.3s ease;
    }
    
    .lang-switcher.open .lang-switcher-btn::after {
        transform: rotate(180deg);
    }
    
    .lang-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        opacity: 0;
        visibility: hidden;
        background: rgba(61, 50, 41, 0.98);

/* ============================================
   LANGUAGE SWITCHER - MOBILE CONTINUED
   ============================================ */

    .lang-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        opacity: 0;
        visibility: hidden;
        background: rgba(61, 50, 41, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        padding: 8px 0;
        margin-top: 8px;
        min-width: 120px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .lang-switcher.open .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .lang-dropdown::before {
        display: none;
    }
    
    .lang-option {
        padding: 12px 20px;
        text-align: center;
        font-size: 12px;
    }
    
    .lang-option:hover,
    .lang-option.active {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   SUCCESS POPUP MODAL - Elegant Brown Theme
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 50, 41, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-cream);
    border-radius: 12px;
    padding: 56px 48px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(61, 50, 41, 0.3);
    transform: scale(0.85) translateY(30px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--color-brown-200);
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: var(--color-brown-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.3);
    animation: modalIconPop 0.5s ease 0.2s both;
}

@keyframes modalIconPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 3;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-brown-900);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.modal-message {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.modal-btn {
    display: inline-block;
    background: var(--color-brown-600);
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--color-brown-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 50, 41, 0.25);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
