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

:root {
    --primary-color: #2B6CB0;
    --primary-dark: #215387;
    --text-dark: #1A202C;
    --text-light: #4A5568;
    --bg-light: #EDF2F7;
    --border-color: #E5E7EB;
    --max-width: 1350px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

/* Use Tiempos Headline for all italic text */
em, i, .italic {
    font-family: 'Tiempos Headline', serif;
    font-style: italic;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sticky header with mountain background */
.header.scrolled {
    background-image: url('/images/Mountain-Image-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 120px;
}

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

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

.nav-links a {
    color: #ecf3f2;
    font-weight: 200;
    padding: 0.59em 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.contact-link {
    background: transparent;
    color: #ecf3f2 !important;
    padding: 0.59em 0;
    border-radius: 0;
    font-weight: 200;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: transparent;
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ecf3f2;
    text-decoration: none;
    font-weight: 200;
    padding: 0.59em 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    font-size: 24px;
    color: #ecf3f2;
}

.mobile-menu-toggle .hamburger {
    display: block;
}

.mobile-menu-toggle .close {
    display: none;
}

.mobile-menu-toggle.active .hamburger {
    display: none;
}

.mobile-menu-toggle.active .close {
    display: block;
}

/* Hero Section */
.hero {
    padding-top: 20vh;
    padding-bottom: 10vh;
    text-align: center;
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-image: url('/images/Mountain-Image-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Workshop Hero Section */
.workshop-hero {
    min-height: 10vh;
    background-image: url('/images/Mountain-Image-1.jpg');
    color: white;
    min-width: 100%; 
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
}

.workshop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 1;
}

.workshop-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.workshop-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.workshop-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.workshop-price,
.workshop-duration,
.workshop-audience {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.workshop-price {
    background: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
}

.workshop-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
    text-decoration: none;
}

/* Workshop Content */
.workshop-content {
    padding: 4rem 0;
    background: white;
}

.workshop-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 17px;
}

.workshop-body h2 {
    color: var(--text-dark);
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    font-size: 1.75rem;
}

.workshop-body h2:first-child {
    margin-top: 0;
}

.workshop-body h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.workshop-body h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.workshop-body ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.workshop-body li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.workshop-body li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.workshop-body blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
    font-family: 'Tiempos Headline', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.workshop-body blockquote p:last-child {
    margin-bottom: 0;
}

/* SPARK Marketing Campaign Styles */
.spark-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.spark-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.spark-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1A202C !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.spark-hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: #4A5568 !important;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.spark-hero-section .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid rgba(43, 108, 176, 0.1);
    border-bottom: 2px solid rgba(43, 108, 176, 0.1);
}

.spark-hero-section .stat {
    text-align: center;
}

.spark-hero-section .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spark-hero-section .stat-label {
    font-size: 0.9rem;
    color: #4A5568 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spark-hero-section .hero-cta {
    margin-top: 3rem;
}

.spark-hero-section .hero-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(43, 108, 176, 0.3);
    margin-bottom: 1rem;
}

.spark-hero-section .hero-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(43, 108, 176, 0.4);
    text-decoration: none;
}

.spark-hero-section .hero-guarantee {
    font-size: 0.9rem;
    color: #4A5568 !important;
    margin: 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.credential-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
}

.credential-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.transformation-journey {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.05) 0%, rgba(33, 83, 135, 0.05) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
}

.achievement-steps {
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-steps h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.25rem;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.process-timeline h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.fit-checker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.perfect-fit {
    background: rgba(76, 175, 80, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.not-for-you {
    background: rgba(255, 152, 0, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 152, 0, 0.2);
}

.alternative-cta {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

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

.story-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.story-card.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(43, 108, 176, 0.1);
}

.story-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-card blockquote {
    background: none;
    border-left: 3px solid var(--primary-color);
    padding: 1rem 0 1rem 1.5rem;
    margin: 1rem 0;
    font-size: 1rem;
}

.outcome {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.pricing-section {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.price-card {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.3);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.cost-items {
    margin-top: 1rem;
}

.cost-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cost-item:last-child {
    border-bottom: none;
}

.price-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.value-comparison {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.value-comparison h4 {
    color: white;
    margin-bottom: 1rem;
}

.value-comparison ul {
    list-style: none;
    padding: 0;
}

.value-comparison li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.final-cta {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-light);
    border-radius: 16px;
    margin: 4rem 0;
}

.final-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin: 2rem 0;
}

.primary-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(43, 108, 176, 0.3);
}

.primary-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(43, 108, 176, 0.4);
    text-decoration: none;
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--text-light);
}

.urgency-message {
    background: rgba(255, 152, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2rem;
}

.workshop-body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 4rem 0;
}

/* Responsive adjustments for SPARK campaign */
@media (max-width: 768px) {
    .fit-checker {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spark-hero-section .hero-title {
        font-size: 2.25rem;
    }
    
    .spark-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .spark-hero-section .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .spark-hero-section .stat-number {
        font-size: 2rem;
    }
    
    .spark-hero-section .hero-content {
        padding: 0 1rem;
    }
    
    .spark-hero-section {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .price-tag {
        font-size: 3rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 5vh;
    margin-bottom: 1rem;
    color: white;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-line1 {
    margin-bottom: 0;
}

.hero-title-line2 {
    margin-top: 0;
}

.rotating-text {
    display: inline-block;
}

.rotating-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: 300;
    opacity: 0.8;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: white;
    margin-top: 30vh;
    margin-bottom: 1.5rem;
    font-style: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 2.0rem;
    color: white;
}

.cta-link {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}



/* Services Overview Section */
.services-overview {
    padding: 4rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.service-item {
    text-align: left;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    background: white;
}

.service-item:not(:last-child) {
    border-right: none;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--border-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 2;
}

.service-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 3;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title .anchor-link {
    opacity: 0;
    margin-left: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s ease;
    position: absolute;
    margin-left: 0.25rem;
}

.section-title:hover .anchor-link {
    opacity: 1;
}

.section-title .anchor-link:hover {
    color: var(--primary-dark);
}

/* IAC Section Titles */
.iac-section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 2.5rem;
}

.team .section-title {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Company Stages Section */
.company-stages {
    padding: 4rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stage-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stage-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(43, 108, 176, 0.1);
    transform: translateY(-4px);
}

.stage-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.stage-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.stage-focus {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.focus-label {
    font-weight: 700;
    color: var(--primary-color);
}

.stage-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-category li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 0.1rem;
}

.features {
    display: block;
    margin-top: 3rem;
}

.feature {
    margin-bottom: 4rem;
    max-width: 1600px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature h3 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e3a5f;
    font-weight: 700;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Timeline Section */
.timeline {
    padding: 0;
}

.timeline-subtitle {
    text-align: left;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 1600px;
    margin: 0 0 4rem;
}

.timeline-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    height: 2px;
    background: var(--border-color);
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

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

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.week {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Writing Section */
.writing {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    color: inherit;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content time {
    display: block;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.full-width {
    grid-column: 1 / -1;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    color: #9CA3AF;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background-image: url('/images/Background-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.team-subtitle {
    text-align: left;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    background-color: #f0f0f0;
}

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

.team-member h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
}

.social-link svg,
.social-link img {
    width: 20px;
    height: 20px;
}

/* Clients Section */
.clients {
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: #f8f9fa;
}

.clients-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    margin: 2rem auto 0;
    align-items: center;
    justify-items: center;
    max-width: 100%;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.client-logo img {
    max-height: 140px;
    max-width: 400px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

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

/* Quotes Section */
.quotes {
    padding: 0;
    background: #fff;
}

.quotes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.quotes-background {
    background-image: url('/images/Helping-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quotes-swiper {
    padding: 4rem 3rem;
    background: #1a1a1a;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.swiper-wrapper {
    position: relative;
    min-height: 200px;
    width: 100%;
}

.swiper-slide {
    opacity: 1;
    width: 100%;
    display: flex;
    align-items: center;
}

.quote {
    opacity: 1;
    width: 100%;
    max-width: 100%;
}

.quote blockquote {
    font-size: 1.5rem;
    line-height: 1.5;
    color: white;
    margin-bottom: 2rem;
    font-family: 'Tiempos Headline', serif;
    font-style: italic;
    position: relative;
    padding-left: 3rem;
    quotes: none;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.quote blockquote::before {
    content: '"';
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: -1rem;
    top: -2rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote blockquote::after {
    content: '';
}

.quote cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 400;
    margin-left: 3rem;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.2);
}

/* Tech Partners in Timeline Section */
.tech-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem auto 0;
    padding-top: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1600px;
}

.tech-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.tech-partner-logo img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 80%;
        padding: 0 2rem;
    }
    
    .hero-title {
        max-width: 85%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-item {
        border: 1px solid var(--border-color);
        border-bottom: none;
    }
    
    .service-item:last-child {
        border-bottom: 1px solid var(--border-color);
    }
    
    .service-item::after,
    .service-item::before {
        display: none;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-partners {
        gap: 2rem;
        max-width: 90%;
    }
    
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quotes-content {
        grid-template-columns: 1fr;
    }
    
    .quotes-background {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        font-size: 1.25rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: white;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        text-align: center;
    }
    
    .nav-links a:hover {
        color: #ffffff;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .contact-link {
        background: transparent !important;
        border: none !important;
        padding: 1rem 0 !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 80% !important;
        text-align: center !important;
    }
    
    .contact-link:hover {
        background: transparent !important;
        color: #ffffff !important;
        font-weight: 500 !important;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
    }
    
    /* Disable hover on mobile, but allow active state */
    .nav-dropdown:not(.active):hover .dropdown-menu {
        max-height: 0 !important;
    }
    
    .dropdown-toggle {
        width: 80%;
        justify-content: center;
        color: white;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .dropdown-toggle:hover {
        color: #ffffff !important;
        font-weight: 500 !important;
        background: transparent !important;
        text-decoration: none !important;
    }
    
    .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important;
        width: 80% !important;
        top: auto !important;
        left: auto !important;
        text-align: center !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0 !important;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        display: block !important;
        padding: 1rem 0 !important;
        border-bottom: none !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        font-weight: 300 !important;
        text-align: center !important;
        width: 100% !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        font-size: 1.25rem !important;
    }
    
    .dropdown-item:hover {
        color: white !important;
        background: transparent !important;
    }
    
    /* Company stages responsive for tablet */
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stage-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 85%;
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        max-width: 95%;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Company stages responsive for mobile tablets */
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .stage-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .stage-title {
        font-size: 1.5rem;
    }
    
    .stage-subtitle {
        font-size: 1rem;
    }
    
    .service-category h4 {
        font-size: 1.125rem;
    }
    
    /* Workshop responsive styles */
    .workshop-hero {
        min-height: 10vh;
    }
    
    .workshop-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .workshop-subtitle {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .workshop-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .workshop-body {
        font-size: 16px;
        padding: 0 1rem;
    }
    
    .workshop-body h2 {
        font-size: 1.5rem;
        margin-top: 3rem;
    }
    
    .workshop-body h3 {
        font-size: 1.25rem;
    }
    
    .nav {
        padding: 1rem;
        min-height: 80px;
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        font-size: 1.25rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: white;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        text-align: center;
    }
    
    .nav-links a:hover {
        color: #ffffff;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .contact-link {
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 2rem !important;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .contact-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .logo img {
        height: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .tech-partners {
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .tech-partner-logo {
        height: 60px;
    }
    
    .tech-partner-logo img {
        max-height: 40px;
        max-width: 120px;
    }
    
    .client-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature h3 {
        font-size: 2rem;
    }
    
    .quote blockquote {
        font-size: 1.25rem;
        padding-left: 2rem;
    }
    
    .quote blockquote::before {
        font-size: 6rem;
        left: -0.5rem;
        top: -1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .tech-partners {
        gap: 1rem;
    }
    
    .tech-partner-logo img {
        max-height: 30px;
        max-width: 100px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature h3 {
        font-size: 1.5rem;
    }
}

/* Responsive hero section */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-bottom: 60px;
    }
    
    .hero-title {
        margin-top: 10vh;
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-top: 2rem;
        font-size: 24px;
    }
    
    .hero-cta {
        font-size: 1.5rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
    
    .clients-subtitle,
    .team-subtitle,
    .timeline-subtitle,
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .quote blockquote {
        font-size: 1.25rem;
        padding-left: 2rem;
    }
    
    .quote blockquote::before {
        font-size: 6rem;
        left: -0.5rem;
        top: -1.5rem;
    }
    
    .quote cite {
        font-size: 0.875rem;
        margin-left: 2rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 70vh;
        padding-bottom: 50px;
    }
    
    .hero-title {
        margin-top: 8vh;
        font-size: 2rem;
        max-width: 95%;
    }
    
    .hero-subtitle {
        margin-top: 2rem;
        font-size: 20px;
    }
    
    .hero-cta {
        font-size: 1.25rem;
    }
    
    .feature p {
        font-size: 0.875rem;
    }
    
    .clients-subtitle,
    .team-subtitle,
    .timeline-subtitle,
    .contact-subtitle {
        font-size: 0.875rem;
    }
    
    .quote blockquote {
        font-size: 1.125rem;
        padding-left: 1.5rem;
    }
    
    .quote blockquote::before {
        font-size: 4rem;
        left: -0.25rem;
        top: -1rem;
    }
    
    .quote cite {
        font-size: 0.625rem;
        margin-left: 1.5rem;
        line-height: 1.3;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .hero {
        min-height: 65vh;
        padding-bottom: 40px;
    }
    
    .hero-title {
        margin-top: 6vh;
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        margin-top: 1.5rem;
        font-size: 18px;
    }
    
    .hero-cta {
        font-size: 1rem;
    }
    
    .feature p {
        font-size: 0.75rem;
    }
    
    .clients-subtitle,
    .team-subtitle,
    .timeline-subtitle,
    .contact-subtitle {
        font-size: 0.75rem;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stage-card {
        padding: 1.5rem;
    }
    
    .stage-header {
        text-align: center;
    }
}
