/* Technical SEO Page Specific Styles */

/* Tech Hero Section */
.tech-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding-top: 80px;
}

.tech-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-hero-title {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tech-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.tech-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Skeleton Doctor Visual */
.skeleton-doctor {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.skeleton {
    font-size: 8rem;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.stethoscope {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.dying-website {
    position: absolute;
    bottom: 20%;
    left: 20%;
    font-size: 4rem;
    animation: shake 3s ease-in-out infinite;
    z-index: 1;
}

.loading-bar {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    z-index: 4;
}

.loading-progress {
    width: 30%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 8px;
    animation: loading 3s ease-in-out infinite;
}

.frowny-face {
    position: absolute;
    top: -30px;
    right: 10px;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% { width: 30%; }
    50% { width: 70%; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    75% { transform: translateX(5px) rotate(2deg); }
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-subtext {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-item:hover::before {
    left: 100%;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.problem-item p {
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.problem-conclusion {
    text-align: center;
}

.conclusion-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Services Checklist */
.services-checklist {
    padding: 6rem 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.checklist-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.checklist-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.checklist-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.checklist-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.checklist-item p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.checklist-item ul {
    list-style: none;
    color: var(--text-light);
}

.checklist-item li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.checklist-item li::before {
    content: '🔧';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.bonus-note {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.bonus-note p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Case Study Section */
.case-study-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.case-study-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
    max-width: 800px;
    margin: 0 auto;
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.case-study-icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.case-study-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.case-study-problem,
.case-study-solution {
    margin-bottom: 1.5rem;
}

.case-study-problem h4,
.case-study-solution h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.case-study-problem p,
.case-study-solution p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.result-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.case-study-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Why Me Section */
.why-me-section {
    padding: 6rem 0;
}

.why-me-content {
    max-width: 1000px;
    margin: 0 auto;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.credential-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credential-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.credential-item p {
    color: var(--text-gray);
    margin: 0;
}

.key-difference {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.key-difference h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.difference-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

/* What You Get Section */
.what-you-get {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deliverable-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.deliverable-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.deliverable-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.deliverable-item p {
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

.bonus-offer {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.bonus-offer p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Tech SEO Page */
@media (max-width: 768px) {
    .tech-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .tech-hero-title {
        font-size: 2.5rem;
    }
    
    .tech-hero-cta {
        justify-content: center;
    }
    
    .skeleton {
        font-size: 6rem;
    }
    
    .stethoscope {
        font-size: 2rem;
    }
    
    .dying-website {
        font-size: 3rem;
    }
    
    .loading-bar {
        width: 150px;
    }
    
    .problem-list {
        grid-template-columns: 1fr;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-results {
        grid-template-columns: 1fr;
    }
    
    .credentials-list {
        grid-template-columns: 1fr;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tech-hero-title {
        font-size: 2rem;
    }
    
    .tech-hero-subtitle {
        font-size: 1rem;
    }
    
    .skeleton {
        font-size: 4rem;
    }
    
    .problem-text {
        font-size: 1.2rem;
    }
    
    .conclusion-text {
        font-size: 1.2rem;
    }
    
    .case-study-card {
        padding: 2rem;
    }
    
    .key-difference {
        padding: 2rem;
    }
} 