/* ============================================
   CSS CUSTOM PROPERTIES - DESIGN SYSTEM
   Global variables used throughout index.html
   ============================================ */

:root {
    --primary-blue: #1d3f99;
    --light-blue: #90a1bd;
    --accent-gold: #a18c4c;
    --accent-gold-light: #f7de65;
    --dark-bg: #000000;
    --mid-bg: #000000;
    --light-bg: #4662a2;
    --white-bg: #ffffff;
    --text-light: #f0f4f8;
    --text-mid: #a0b3d1;
    --text-dark: #2c3e50;
    --text-dark-on-white: #1a1a1a;
    --border-color: rgba(0, 156, 255, 0.2);
    --border-color-light: rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESET & BASE STYLES - FOUNDATION
   Global reset and base styles for index.html
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

.scroll-to-form {
    margin-top: 20px;
}

/* ============================================
   BODY & TYPOGRAPHY - MAIN LAYOUT
   Base body styles for index.html layout
   ============================================ */

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ============================================
   CONTAINER & LAYOUT - GRID SYSTEM
   Container styles for index.html sections
   ============================================ */

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

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 60px;
    font-weight: 600;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px var(--accent-gold);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-gold);
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
}

/* ============================================
   HEADER & NAVIGATION - SITE HEADER
   Fixed header styles for index.html navigation
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    pointer-events: auto; /* Ensure header remains interactive */
}

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

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

/* ============================================
   DROPDOWN NAVIGATION - SERVICES MENU
   Dropdown styles for Services navigation
   ============================================ */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.dropdown-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

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

.nav-links a.btn {
    color: black;
}

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

.nav-links a.btn:hover {
    color: black;
}

.nav-links a.active {
    color: var(--accent-gold);
    font-weight: 700;
}

.nav-links .btn.active {
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
    box-shadow: 0 5px 15px var(--accent-gold);
    color: black;
}

.logo img {
    height: 37.5px;
}

/* --- SINGLE PARTICLE SYSTEM --- */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: #000000;
}




/* ============================================
   HERO SECTIONS - LANDING AREAS
   Hero section styles for index.html main content
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 156, 255, 0.5);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-mid);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CONTENT SECTIONS --- */
.content-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    pointer-events: auto; /* Ensure content sections are interactive */
}

.content-section.solid-bg {
    background-color: var(--dark-bg);
}

.social-proof {
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
}

.process {
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
}

.social-proof .container { 
    text-align: center; 
}

.proof-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    filter: grayscale(100%) brightness(1.5);
}

.logo-placeholder {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-mid);
    font-size: 1.2rem;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
    opacity: 0.8;
    background: transparent;
}

.logo-img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.upwork-badge {
    background-color: var(--light-bg);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    font-weight: 600;
}

.upwork-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.upwork-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.upwork-text {
    color: var(--text-light);
    font-size: 1rem;
}

.stats-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--text-light);
}

.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-mid);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.service-card p {
    margin-bottom: 30px;
    color: var(--text-mid);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.process-step .icon-container {
    margin-bottom: 25px;
    display: inline-block;
}

.process-step .hexagon {
    width: 100px;
    height: 115.47px;
    background-color: var(--light-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.process-step:hover .hexagon {
    transform: rotate(15deg);
    background-color: var(--primary-blue);
    color: white;
}

.process-step h3 {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 600;
}

.process-step p { 
    color: var(--text-mid); 
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-mid);
}

.main-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.main-footer p { 
    color: var(--text-mid); 
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Page Specific Styles */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.project-row {
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    min-height: 300px;
}

.project-row:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.project-images {
    width: 300px;
    flex-shrink: 0;
    padding: 20px;
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-image.main {
    width: 100%;
    height: 200px;
}

.project-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.project-subtitle {
    color: var(--text-mid);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.project-description {
    color: var(--text-mid);
    margin-bottom: 15px;
    line-height: 1.6;
}

.key-benefits {
    background: rgba(29, 63, 153, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.key-benefits h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
}

.key-benefits li {
    color: var(--text-mid);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.key-benefits li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
    padding: 80px 0;
}

.testimonials-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.testimonial-card {
    flex: 1;
    background: var(--white-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-thumbnail {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color-light);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-title {
    color: var(--text-dark-on-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.project-dates {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-rating-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-score {
    color: var(--text-dark);
    font-weight: 600;
}

.rating-date {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1.1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color-light);
}

.project-cost {
    color: var(--text-dark-on-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.project-type {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Discovery Form Section */
.discovery-form {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
    padding: 80px 0;
}

.discovery-form .section-title {
    color: var(--text-light);
}

.discovery-form p {
    color: var(--text-mid);
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: var(--white-bg);
    padding: 20px;
}

.form-container iframe {
    border: none;
    border-radius: 8px;
    width: 100%;
    min-height: 600px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(1px);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold-light);
    box-shadow: 0 8px 25px rgba(161, 140, 76, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-mid);
    line-height: 1.6;
}

/* SPA Page Sections */
.page-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* SPA Navigation */
.nav-link.active {
    color: var(--accent-gold);
    font-weight: 700;
}

.nav-link.btn.active {
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
    box-shadow: 0 5px 15px var(--accent-gold);
    color: black;
}

/* Services Page Styles */
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    color: var(--text-mid);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-timeline {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 20px;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.competency-card {
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.competency-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.competency-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}

.competency-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 0;
}

.competency-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.skill-tag {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--accent-gold);
}

.process-timeline {
    margin-top: 40px;
}

/* Services page process steps */
.services-section .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services-section .process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.services-section .process-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: black;
    width: 60px;
    height: 60px;
}

/* Process Flowchart Styles */
.process-flowchart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
}

.flowchart-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
}

.flowchart-card {
    background: linear-gradient(135deg, #FFD700, #B8860B, #000000);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    min-height: 630px; /* 40% longer than 450px */
    color: white;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.flowchart-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-number {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.flowchart-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.card-duration {
    background: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid #FFD700;
}

.flowchart-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-deliverables {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-deliverables li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.card-deliverables li:before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.1rem;
}

.card-deliverables li:last-child {
    border-bottom: none;
}

/* Arrow Styles */
.flowchart-arrow {
    width: 40px;
    height: 40px;
    position: relative;
    flex-shrink: 0;
}

.arrow-right::after {
    content: "→";
    font-size: 2rem;
    color: #FFD700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

.arrow-left::after {
    content: "←";
    font-size: 2rem;
    color: #FFD700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

.arrow-down::after {
    content: "↓";
    font-size: 2rem;
    color: #FFD700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .flowchart-card {
        width: 280px;
        min-height: 580px; /* 40% longer than 420px */
    }
    
    .flowchart-row {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .flowchart-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .flowchart-card {
        width: 100%;
        max-width: 350px;
        min-height: 500px;
    }
}

.services-section .process-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.services-section .process-duration {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.services-section .process-deliverables {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-section .process-deliverables li {
    color: var(--text-mid);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.services-section .process-deliverables li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-mid);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Skills Grid Styles */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.skill-card {
    background: linear-gradient(145deg, var(--light-bg), var(--mid-bg));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 156, 255, 0.3);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.skill-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.skill-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { 
        font-size: 3rem; 
    }
    .section-title { 
        font-size: 2.2rem; 
    }
}

/* Portfolio Gallery Responsive Styles */
@media (max-width: 768px) {
    .portfolio-item {
        flex-direction: column !important;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .portfolio-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    .hero h1 { 
        font-size: 2.5rem; 
    }
    .services-grid, .process-grid { 
        grid-template-columns: 1fr; 
    }
    .project-row {
        flex-direction: column;
        min-height: auto;
    }
    .project-images {
        width: 100%;
        min-width: auto;
        height: 250px;
    }
    .project-content {
        padding: 15px;
    }
    .testimonial-row {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-thumbnail {
        width: 100%;
        height: 250px;
        align-self: center;
    }
}

/* ============================================
   PORTFOLIO GALLERY STYLES - SERVICE PAGES
   Styles for portfolio galleries on service pages
   ============================================ */

.portfolio-gallery {
    padding: 100px 0;
}

.portfolio-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-item:nth-child(even) {
    flex-direction: row-reverse;
}

.portfolio-image {
    flex: 1;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-content {
    flex: 1;
    padding: 20px 0;
}

.portfolio-content h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.portfolio-category {
    color: var(--accent-gold-light);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.portfolio-features {
    list-style: none;
    padding: 0;
}

.portfolio-features li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.portfolio-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ============================================
   WHO AND WHY SECTION STYLES - SPA INTEGRATION
   ============================================ */

/* Shop Hero Visual */
.shop-hero-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hands-at-work-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sketching-hands {
    width: 80px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 40px 40px 15px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.tablet {
    width: 60px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 8px;
    position: absolute;
    top: 60%;
    left: 40%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.stylus {
    width: 3px;
    height: 45px;
    background: var(--mid-bg);
    border-radius: 2px;
    position: absolute;
    top: 30%;
    right: 30%;
    transform: rotate(25deg);
}

/* Banner Section */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.parallax-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: center;
    transform: translateY(-25%);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Expertise Background */
.expertise-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.expertise-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.expertise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('assets/Collection-of-me.png');
    background-size: 120% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(var(--parallax-offset, 0%));
    will-change: transform;
}

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

.expertise-bg .section-title {
    color: white;
}

.expertise-bg .skill-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.expertise-bg .skill-card h3 {
    color: var(--accent-color);
}

.expertise-bg .skill-card ul li {
    color: rgba(255, 255, 255, 0.9);
}

.expertise-bg .highlight-quote {
    background: rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--accent-color);
    color: white;
}

.expertise-bg p {
    color: rgba(255, 255, 255, 0.9);
}

/* Rating styling for testimonials */
.rating {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Highlight Quote */
.highlight-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}


/* Tool Visual Elements - Updated for SPA */
.wacom-tablet {
    width: 35px;
    height: 25px;
    background: var(--dark-bg);
    border-radius: 4px;
    position: relative;
}

.tablet-screen {
    width: 100%;
    height: 15px;
    background: var(--mid-bg);
    border-radius: 2px;
    position: absolute;
    top: 2px;
}

.stylus {
    width: 2px;
    height: 20px;
    background: var(--text-mid);
    border-radius: 1px;
    position: absolute;
    right: -4px;
    top: 4px;
    transform: rotate(15deg);
}

.paintbrush-set {
    position: relative;
    width: 25px;
    height: 25px;
}

.paintbrush {
    width: 2px;
    height: 15px;
    background: #8B4513;
    border-radius: 1px;
    position: absolute;
    top: 4px;
    left: 8px;
}

.canvas {
    width: 20px;
    height: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.camera {
    width: 30px;
    height: 20px;
    background: var(--dark-bg);
    border-radius: 6px;
    position: relative;
}

.camera-body {
    width: 100%;
    height: 100%;
    background: var(--mid-bg);
    border-radius: 4px;
}

.camera-lens {
    width: 10px;
    height: 10px;
    background: #1a252f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.microphone {
    position: relative;
    width: 15px;
    height: 25px;
}

.mic-stand {
    width: 2px;
    height: 15px;
    background: var(--text-mid);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mic-head {
    width: 6px;
    height: 6px;
    background: var(--dark-bg);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.guitar-pick {
    width: 12px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(45deg);
}

.engineering-tools {
    position: relative;
    width: 35px;
    height: 25px;
}

.calipers {
    width: 20px;
    height: 2px;
    background: var(--text-mid);
    border-radius: 1px;
    position: absolute;
    top: 8px;
    left: 4px;
}

.blueprint {
    width: 25px;
    height: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    right: 0;
}

.robot-arm {
    position: relative;
    width: 35px;
    height: 25px;
}

.arm-base {
    width: 12px;
    height: 6px;
    background: var(--mid-bg);
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.arm-segment {
    width: 15px;
    height: 3px;
    background: var(--dark-bg);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 8px;
    transform: rotate(15deg);
}

.arm-gripper {
    width: 6px;
    height: 4px;
    background: #1a252f;
    border-radius: 1px;
    position: absolute;
    top: 0;
    right: 0;
}

.laptop {
    width: 35px;
    height: 22px;
    background: var(--dark-bg);
    border-radius: 4px;
    position: relative;
}

.laptop-screen {
    width: 30px;
    height: 15px;
    background: var(--mid-bg);
    border-radius: 2px;
    position: absolute;
    top: 2px;
    left: 2px;
}

.data-charts {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 1px;
    position: relative;
}

.data-charts::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
}

.beaker {
    width: 15px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--text-mid);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.beaker-liquid {
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #3498db, #5dade2);
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: 0;
}

.plant {
    position: relative;
    width: 20px;
    height: 25px;
}

.pot {
    width: 15px;
    height: 12px;
    background: #8B4513;
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.plant-leaves {
    width: 12px;
    height: 12px;
    background: #27ae60;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.passport {
    width: 20px;
    height: 30px;
    background: var(--dark-bg);
    border-radius: 2px;
    position: relative;
}

.passport-cover {
    width: 100%;
    height: 100%;
    background: var(--mid-bg);
    border-radius: 1px;
}

.passport-pages {
    width: 90%;
    height: 80%;
    background: #f5f5f5;
    border-radius: 1px;
    position: absolute;
    top: 10%;
    left: 5%;
}

.coffee-mugs {
    position: relative;
    width: 25px;
    height: 15px;
}

.mug {
    width: 10px;
    height: 12px;
    background: #8B4513;
    border-radius: 0 0 5px 5px;
    position: absolute;
    bottom: 0;
}

.mug-1 {
    left: 0;
}

.mug-2 {
    right: 0;
    transform: scale(0.8);
}

.compass {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
}

.compass-face {
    width: 100%;
    height: 100%;
    background: #f4d03f;
    border-radius: 50%;
    position: relative;
}

.compass-needle {
    width: 1px;
    height: 12px;
    background: #e74c3c;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.llc-document {
    width: 25px;
    height: 35px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
}

.document {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1px;
}

.stamp {
    width: 10px;
    height: 6px;
    background: #e74c3c;
    border-radius: 1px;
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.certificates {
    position: relative;
    width: 30px;
    height: 25px;
}

.certificate {
    width: 25px;
    height: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: absolute;
}

.certificate-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
}

.certificate-2 {
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Client Stories Section */
.client-stories-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.story-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.story-rating {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
}

.story-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-mid);
    margin: 1rem 0;
    line-height: 1.6;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.read-more-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.story-full {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-mid);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 100%);
    color: white;
    text-align: center;
}

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

.contact-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-icon {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workbench-surface {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .tool-item {
        width: 50px;
        height: 50px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        align-items: stretch;
    }
    
    .contact-link {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .philosophy-content p {
        font-size: 1rem;
    }
    
    .workbench-surface {
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    }
    
    .tool-item {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   THE SHOP PAGE STYLES - PROFESSIONAL SHOWCASE
   ============================================ */

/* Shop Hero Section */
.shop-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/hero-hands-at-work.jpg') center/cover;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hands-at-work {
    position: relative;
    width: 200px;
    height: 200px;
}

.sketching-hands {
    width: 100px;
    height: 60px;
    background: #d4af37;
    border-radius: 50px 50px 20px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tablet {
    width: 80px;
    height: 100px;
    background: #2c3e50;
    border-radius: 10px;
    position: absolute;
    top: 60%;
    left: 40%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.stylus {
    width: 4px;
    height: 60px;
    background: #34495e;
    border-radius: 2px;
    position: absolute;
    top: 30%;
    right: 30%;
    transform: rotate(25deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid white;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: #ffffff;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.philosophy-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.philosophy-text.highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

/* Interactive Toolkit Section */
.toolkit-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.toolkit-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    font-style: italic;
}

.workbench {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    min-height: 500px;
}

.workbench-surface {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.tool-item {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tool-item:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Tool Visual Elements */
.wacom-tablet {
    width: 40px;
    height: 30px;
    background: #2c3e50;
    border-radius: 5px;
    position: relative;
}

.tablet-screen {
    width: 100%;
    height: 20px;
    background: #34495e;
    border-radius: 3px;
    position: absolute;
    top: 2px;
}

.stylus {
    width: 3px;
    height: 25px;
    background: #7f8c8d;
    border-radius: 2px;
    position: absolute;
    right: -5px;
    top: 5px;
    transform: rotate(15deg);
}

.paintbrush-set {
    position: relative;
    width: 30px;
    height: 30px;
}

.paintbrush {
    width: 3px;
    height: 20px;
    background: #8B4513;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 10px;
}

.canvas {
    width: 25px;
    height: 20px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.camera {
    width: 35px;
    height: 25px;
    background: #2c3e50;
    border-radius: 8px;
    position: relative;
}

.camera-body {
    width: 100%;
    height: 100%;
    background: #34495e;
    border-radius: 6px;
}

.camera-lens {
    width: 12px;
    height: 12px;
    background: #1a252f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.microphone {
    position: relative;
    width: 20px;
    height: 30px;
}

.mic-stand {
    width: 3px;
    height: 20px;
    background: #7f8c8d;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mic-head {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.guitar-pick {
    width: 15px;
    height: 20px;
    background: #d4af37;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(45deg);
}

.engineering-tools {
    position: relative;
    width: 40px;
    height: 30px;
}

.calipers {
    width: 25px;
    height: 3px;
    background: #7f8c8d;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 5px;
}

.blueprint {
    width: 30px;
    height: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    right: 0;
}

.robot-arm {
    position: relative;
    width: 40px;
    height: 30px;
}

.arm-base {
    width: 15px;
    height: 8px;
    background: #34495e;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.arm-segment {
    width: 20px;
    height: 4px;
    background: #2c3e50;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 10px;
    transform: rotate(15deg);
}

.arm-gripper {
    width: 8px;
    height: 6px;
    background: #1a252f;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
}

.laptop {
    width: 40px;
    height: 25px;
    background: #2c3e50;
    border-radius: 5px;
    position: relative;
}

.laptop-screen {
    width: 35px;
    height: 20px;
    background: #34495e;
    border-radius: 3px;
    position: absolute;
    top: 2px;
    left: 2px;
}

.data-charts {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
    position: relative;
}

.data-charts::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
}

.beaker {
    width: 20px;
    height: 25px;
    background: transparent;
    border: 2px solid #7f8c8d;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.beaker-liquid {
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #3498db, #5dade2);
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 0;
}

.plant {
    position: relative;
    width: 25px;
    height: 30px;
}

.pot {
    width: 20px;
    height: 15px;
    background: #8B4513;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.plant-leaves {
    width: 15px;
    height: 15px;
    background: #27ae60;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.passport {
    width: 25px;
    height: 35px;
    background: #2c3e50;
    border-radius: 3px;
    position: relative;
}

.passport-cover {
    width: 100%;
    height: 100%;
    background: #34495e;
    border-radius: 2px;
}

.passport-pages {
    width: 90%;
    height: 80%;
    background: #f5f5f5;
    border-radius: 1px;
    position: absolute;
    top: 10%;
    left: 5%;
}

.coffee-mugs {
    position: relative;
    width: 30px;
    height: 20px;
}

.mug {
    width: 12px;
    height: 15px;
    background: #8B4513;
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: 0;
}

.mug-1 {
    left: 0;
}

.mug-2 {
    right: 0;
    transform: scale(0.8);
}

.compass {
    width: 25px;
    height: 25px;
    background: #d4af37;
    border-radius: 50%;
    position: relative;
}

.compass-face {
    width: 100%;
    height: 100%;
    background: #f4d03f;
    border-radius: 50%;
    position: relative;
}

.compass-needle {
    width: 2px;
    height: 15px;
    background: #e74c3c;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.llc-document {
    width: 30px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    position: relative;
}

.document {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
}

.stamp {
    width: 12px;
    height: 8px;
    background: #e74c3c;
    border-radius: 2px;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Client Stories Section */
.client-stories-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.story-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.story-rating {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin: 1rem 0;
    line-height: 1.6;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.read-more-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.story-full {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .workbench-surface {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .tool-item {
        width: 60px;
        height: 60px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        align-items: stretch;
    }
    
    .contact-link {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .philosophy-text {
        font-size: 1.1rem;
    }
    
    .workbench-surface {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    }
    
    .tool-item {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   TOOLS GALLERY STYLES - INFINITE SCROLL
   ============================================ */

.tools-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--mid-bg) 100%);
    overflow: hidden;
}

.scroller {
    max-width: 100%;
    margin: 40px 0;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
        var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 120px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.tool-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(161, 140, 76, 0.2);
}

.tool-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.tool-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

.tool-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tools-gallery {
        padding: 60px 0;
    }
    
    .scroller {
        margin: 30px 0;
    }
    
    .scroller__inner {
        gap: 0.75rem;
    }
    
    .tool-item {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .tool-item img {
        width: 50px;
        height: 50px;
    }
    
    .tool-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .scroller__inner {
        gap: 0.5rem;
    }
    
    .tool-item {
        min-width: 80px;
        padding: 12px 8px;
    }
    
    .tool-item img {
        width: 40px;
        height: 40px;
    }
    
    .tool-item span {
        font-size: 0.7rem;
    }
}

/* ============================================
   SERVICE CARD HOVER EFFECTS
   ============================================ */

.service-card {
    transition: transform 0.3s ease;
}

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

.service-card:hover span[style*="color: var(--accent-gold)"] {
    color: #FFD700 !important; /* Bright gold on hover */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

/* ============================================
   SKILL TAGS STYLING
   ============================================ */

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skill-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ============================================
   STATISTICS HOVER EFFECTS
   ============================================ */

.stat-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.stat-item:hover .stat-number {
    color: #FFD700 !important; /* Bright gold on hover */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}
