/* Augusta Precious Metals Review Page - Optimized CSS */

/* Critical CSS - Above the fold */
.site-logo-fallback { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Augusta Review Specific Styles */
.augusta-review-reset { margin: 0; transform: none; }
.augusta-company-link { text-decoration: none; color: inherit; }
.augusta-brand-link { text-decoration: none; color: #d4af37; font-weight: 600; }
.augusta-brand-link-light { color: rgba(255,255,255,0.95); text-decoration: none; }

/* Hide text fallback logo completely */
.nav-brand h1 { display: none !important; }

/* Clickable Logo Styles */
.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.site-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Navigation Dropdown - Prevent text wrapping */
.dropdown-menu {
    white-space: nowrap;
}

.dropdown-menu a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero Section Optimizations */
.read-more-text { display: none; }

/* Specs Grid Override */
.augusta-specs-grid { 
    justify-content: space-around; 
    margin: 1.5rem 0; 
}

/* Fee Structure */
.fee-structure-grid {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.fee-item {
    text-align: center;
}

.fee-item h5 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.fee-item p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 2rem auto;
}

.product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 1.5rem;
    color: white;
}

.product-title {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.product-list li {
    margin-bottom: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Additional Services Section */
.services-section {
    max-width: 900px;
    margin: 3rem auto 0;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 2px;
}

.services-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #e8eaf0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.review-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: #666;
    margin: 0;
}

.review-rating {
    color: #d4af37;
    margin-top: 0.5rem;
}

/* Final Verdict Section */
.final-verdict-section {
    margin: 1rem 0;
    transform: none;
    background: linear-gradient(135deg, #fff9e6 0%, #fefbf0 50%, #ffffff 100%);
    border: 3px solid #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    position: relative;
}

.verdict-header {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e777 50%, #d4af37 100%);
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    margin: -3px -3px 1rem -3px;
    border-bottom: 3px solid #d4af37;
}

.verdict-logo {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.verdict-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.verdict-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0.2rem 0 0 0;
    font-weight: 600;
}

.verdict-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.verdict-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.verdict-rating-badge {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
}

.verdict-rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: #d4af37;
    margin-right: 0.8rem;
}

.verdict-rating-stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}

.verdict-rating-rank {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.verdict-summary {
    flex: 1;
    min-width: 250px;
}

.verdict-summary p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.verdict-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.verdict-perfect-for {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #d4af37;
    position: relative;
    flex: 1;
}

.verdict-perfect-for::before {
    content: 'Perfect For';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
}

.perfect-for-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 20px;
}

.perfect-for-item::before {
    content: '✓';
    color: #d4af37;
    margin-right: 0.6rem;
    font-weight: 800;
    font-size: 1rem;
}

.verdict-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed #d4af37;
    flex: 0 0 280px;
}

.verdict-cta-title {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.verdict-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    width: 100%;
    justify-content: center;
}

.verdict-cta-subtext {
    margin-top: 0.8rem;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
}

.verdict-final-summary {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .fee-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .verdict-rating-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .verdict-rating-badge {
        justify-content: center;
    }
    
    .verdict-bottom-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .perfect-for-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .services-section {
        margin: 2rem auto 0;
    }
}

@media (max-width: 480px) {
    .fee-structure-grid {
        padding: 1.5rem 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .verdict-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .verdict-header {
        padding: 0.8rem;
    }
    
    .verdict-title {
        font-size: 1.2rem;
    }
    
    .services-title {
        font-size: 1.3rem;
    }
}

/* Performance Optimizations */
.service-card {
    will-change: transform;
}

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

/* Preload critical fonts */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .service-card {
        transition: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* Best Gold IRA Companies Introduction Section */
.best-companies-intro {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f1f7 100%);
    position: relative;
    overflow: hidden;
}

.best-companies-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23d4af37" opacity="0.03"><circle cx="10" cy="10" r="2"/><circle cx="90" cy="20" r="1.5"/><circle cx="30" cy="80" r="1"/><circle cx="70" cy="70" r="2"/><circle cx="50" cy="40" r="1.5"/></svg>');
    background-size: 200px 200px;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
    border: 2px solid #d4af37;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.intro-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.intro-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.intro-content {
    padding: 2rem;
    text-align: center; /* Center all text in the content area */
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.highlight-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: #b8941f;
    border-bottom-color: #d4af37;
}

.top-choice-highlight {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    gap: 1.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center; /* Center text within */
}

.top-choice-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.choice-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    position: relative;
    z-index: 2;
}

.rank-number {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

.rank-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.choice-content {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center; /* Center text in choice content */
}

.choice-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    text-align: center; /* Center text */
}

.company-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #b8941f;
    border-bottom-color: #d4af37;
}

.review-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.official-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.official-link:hover {
    color: #1e7e34;
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    margin-top: 1.5rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B1538 0%, #A91E47 100%); /* Burgundy color */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3); /* Burgundy shadow */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4); /* Burgundy shadow on hover */
    background: linear-gradient(135deg, #721230 0%, #8B1538 100%); /* Darker burgundy on hover */
} 