/* Lighthouse Page Specific Styles */
.lighthouse-page {
    background: var(--dark-bg);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

.lighthouse-page .main-content {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* User Experience Section - At Top */
.user-experience-section {
    padding: 3rem 0 4rem 0;
    position: relative;
}

/* Timeline Break Section - Breaking Card */
.timeline-break-section {
    padding: 3rem 0;
    position: relative;
    background: rgba(0, 204, 255, 0.02);
    border-top: 1px solid rgba(0, 204, 255, 0.1);
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
    margin: 2rem 0;
}

.timeline-break-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.timeline-break-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CCFF, #f57c00);
    border-radius: 25px 25px 0 0;
}

.timeline-break-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.3);
    border-color: rgba(0, 204, 255, 0.4);
}

.timeline-break-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-break-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00CCFF, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
}

.timeline-break-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Main Content Sections */
.main-content-sections {
    padding: 2rem 0 5rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Main Layout Section */
.main-layout-section {
    padding: 3rem 0;
    position: relative;
}

.main-layout-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Left Sidebar - Timeline Card */
.timeline-sidebar {
    position: sticky;
    top: 2rem;
}

.timeline-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00CCFF, #f57c00);
    border-radius: 20px 20px 0 0;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.3);
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00CCFF, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.timeline-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Right Side - Content Columns */
.content-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.column-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Improved Spacing for Sections */
.lighthouse-page .services-section {
    padding: 4rem 0;
}

.lighthouse-page .lighthouse-content {
    padding: 3rem 0;
}

.lighthouse-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00CCFF, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.lighthouse-page .content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lighthouse-page .services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lighthouse-page .content-card,
.lighthouse-page .service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.lighthouse-page .content-card:hover,
.lighthouse-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.3);
}

.lighthouse-page .content-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00CCFF;
}

.lighthouse-page .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00CCFF;
}

.lighthouse-page .content-card p,
.lighthouse-page .service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.lighthouse-page .service-icon {
    width: 60px;
    height: 60px;
    background: #00CCFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--black);
}

.lighthouse-page .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.lighthouse-page .service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.lighthouse-page .service-features li::before {
    content: '•';
    color: #00CCFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.lighthouse-page .service-btn {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), rgba(245, 124, 0, 0.1));
    border: 1px solid rgba(0, 204, 255, 0.2);
    color: #00CCFF;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.lighthouse-page .service-btn:hover {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(245, 124, 0, 0.2));
    border-color: rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.2);
}

/* Improved Feature List Spacing */
.lighthouse-page .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.lighthouse-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lighthouse-page .feature-item:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.2);
    transform: translateY(-2px);
}

.lighthouse-page .feature-item i {
    color: #00CCFF;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.lighthouse-page .feature-content h3 {
    color: #00CCFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lighthouse-page .feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Improved Approach Steps Spacing */
.lighthouse-page .approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lighthouse-page .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

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

.lighthouse-page .step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.lighthouse-page .step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Improved Service Features Spacing */
.lighthouse-page .service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.lighthouse-page .service-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.lighthouse-page .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00CCFF;
    font-weight: bold;
    font-size: 1rem;
}

/* Better Service Icon Spacing */
.lighthouse-page .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00CCFF, var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.lighthouse-page .service-icon i {
    font-size: 2rem;
    color: var(--black);
}

/* Improved Button Spacing */
.lighthouse-page .service-btn {
    background: linear-gradient(135deg, #00CCFF, #f57c00);
    color: var(--black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Container Improvements */
.lighthouse-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .lighthouse-page .section-title {
        font-size: 2rem;
    }
    
    .lighthouse-page .content-card h2,
    .lighthouse-page .service-card h3 {
        font-size: 1.4rem;
    }
    
    .lighthouse-page .content-card p,
    .lighthouse-page .service-card p {
        font-size: 0.9rem;
    }
    
    .timeline-break-title {
        font-size: 2.2rem;
    }
    
    .timeline-break-description {
        font-size: 1rem;
    }
    
    .timeline-break-card {
        padding: 2.5rem 2rem;
        max-width: 800px;
    }
    
    .timeline-link {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .lighthouse-page .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .lighthouse-page .content-grid,
    .lighthouse-page .services-grid {
        gap: 1.5rem;
    }
    
    .lighthouse-page .content-card,
    .lighthouse-page .service-card {
        padding: 1.5rem;
    }
    
    /* Landscape layout for tablet - timeline break card spans full width */
    .timeline-break-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    .lighthouse-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .lighthouse-page .content-card h2,
    .lighthouse-page .service-card h3 {
        font-size: 1.3rem;
    }
    
    .lighthouse-page .content-card p,
    .lighthouse-page .service-card p {
        font-size: 0.85rem;
    }
    
    .timeline-break-title {
        font-size: 2rem;
    }
    
    .timeline-break-description {
        font-size: 1rem;
    }
    
    .timeline-break-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .timeline-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 300px;
    }
    
    .lighthouse-page .container {
        max-width: 700px;
        padding: 0 1rem;
    }
    
    .lighthouse-page .content-grid,
    .lighthouse-page .services-grid {
        gap: 1rem;
    }
    
    .lighthouse-page .content-card,
    .lighthouse-page .service-card {
        padding: 1.2rem;
    }
    
    .lighthouse-page .card-toggle {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .lighthouse-page .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Mobile layout - timeline break card stacks normally */
    .timeline-break-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .lighthouse-page .section-title {
        font-size: 1.5rem;
    }
    
    .timeline-break-title {
        font-size: 1.8rem;
    }
    
    .timeline-break-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .timeline-break-description {
        font-size: 0.9rem;
    }
    
    .lighthouse-page .content-card h2,
    .lighthouse-page .service-card h3 {
        font-size: 1.2rem;
    }
    
    .lighthouse-page .content-card,
    .lighthouse-page .service-card {
        padding: 1rem;
    }
    
    .lighthouse-page .card-toggle {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Animation Improvements */
.lighthouse-page .content-card,
.lighthouse-page .service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.lighthouse-page .content-card:nth-child(1) { animation-delay: 0.1s; }
.lighthouse-page .content-card:nth-child(2) { animation-delay: 0.2s; }
.lighthouse-page .service-card:nth-child(1) { animation-delay: 0.1s; }
.lighthouse-page .service-card:nth-child(2) { animation-delay: 0.2s; }
.lighthouse-page .service-card:nth-child(3) { animation-delay: 0.3s; }
.lighthouse-page .service-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Toggle Styles */
.lighthouse-page .card-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), rgba(245, 124, 0, 0.1));
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: #00CCFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lighthouse-page .card-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(245, 124, 0, 0.2));
    border-color: rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.2);
}

.lighthouse-page .card-toggle.active {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.3), rgba(245, 124, 0, 0.3));
    border-color: rgba(0, 204, 255, 0.6);
}

.lighthouse-page .card-toggle .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.lighthouse-page .card-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.lighthouse-page .card-details {
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    max-height: 0;
    margin-top: 0;
}

.lighthouse-page .card-details.show {
    opacity: 1;
    max-height: 1000px; /* Sufficiently large value */
    margin-top: 1rem;
}

/* Responsive adjustments for toggle */
@media (max-width: 767px) {
    .lighthouse-page .card-toggle {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .lighthouse-page .toggle-icon {
        font-size: 0.7rem;
    }
} 
