/* Guide Page Specific Styles */

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-block p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-block h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 400;
}

.content-block h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 400;
}

.content-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.content-block strong {
    color: var(--primary-gold);
}

/* Guide Steps */
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.step-number {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 200;
    margin-bottom: 15px;
    opacity: 0.8;
}

.step h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Tips Grid for Buying Guide */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.tip-card:hover::before {
    left: 100%;
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.comparison-grid div {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
}

.comparison-grid h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.comparison-grid li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.comparison-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-card:hover::before {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.process-number {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 200;
    margin-bottom: 20px;
    opacity: 0.7;
}

.process-card h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}
