/* Guides Section */

.guides-section {
    padding: 3rem 0;
    background: #fff;
}

.guides-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.guides-header {
    margin-bottom: 2rem;
}

.guides-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Guides Grid - 3 columns */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Individual Guide Card */
.guide-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 330px;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

/* Image Section */
.guide-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content Section */
.guide-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Guide Text */
.guide-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 auto 0;
    text-align: center;
}

/* Guide Button */
.guide-btn {
    display: inline-block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #334155;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.guide-btn:hover {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
    color: #1e293b;
}

.guide-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.guide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.guide-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .guides-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}