/* Game Jockey Udaipur - SEO Pages */
.gj-hero {
    background: linear-gradient(135deg, #1a5276 0%, #2e86c1 50%, #3498db 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.gj-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gj-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 30px;
}

.gj-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.gj-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.gj-seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.gj-seo-content h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.gj-seo-content h3 {
    color: var(--secondary-color);
    margin: 25px 0 12px;
}

.gj-seo-content p, .gj-seo-content li {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 15px;
}

.gj-seo-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.gj-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.gj-keyword {
    background: var(--light-bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    border: 1px solid #ddd;
}

.gj-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gj-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.gj-service-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gj-service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gj-video-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.gj-video-section h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.gj-video-section .section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.video-link {
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: none;
}

.video-link:hover {
    text-decoration: underline;
}

.gj-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.gj-cta h2 {
    margin-bottom: 15px;
}

.gj-cta .btn {
    margin: 10px;
}

.gj-faq .game-card {
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
}

.gj-local {
    background: #fff;
    padding: 50px 0;
}

.gj-local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.gj-local-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .gj-hero h1 { font-size: 1.8rem; }
    .video-grid { grid-template-columns: 1fr; }
}
