/* SEO buy and sell page CSS - STARTS */
    /* Enhanced Styles for Gold Trading Platform */
    .gold-trading-hero {
        background: linear-gradient(135deg, #71512F 0%, #71512F 50%, #71512F 100%);
        color: white;
        padding: 10px 0 60px;
        position: relative;
        overflow: hidden;
    }
    
    .trading-hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .highlight-text {
        color: #FFD700;
        font-weight: 700;
    }
    
    .price-ticker {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        margin: 30px 0;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .live-price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #FFD700;
    }
    
    .buy-sell-cta {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }
    
    .buy-btn {
        background: #FFD700;
        color: #1a237e;
    }
    
    .sell-btn {
        background: transparent;
        color: white;
        border: 2px solid #FFD700;
    }
    
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .gold-products-section {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .product-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(212,175,55,0.15);
    }
    
    .product-badge {
        top: 15px;
        left: 15px;
        background: #71512F;
        color: #FFFFFF;
        padding: 5px 15px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    
    .product-details {
        padding: 25px;
    }
    
    .gold-weight {
        font-size: 1.8rem;
        font-weight: 700;
        color: #D4AF37;
        margin: 10px 0;
    }
    
    .buy-now-btn {
        background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .buy-now-btn:hover {
        background: linear-gradient(135deg, #B8941F 0%, #E6C200 100%);
        transform: translateY(-2px);
    }
    
    .selling-process-section {
        padding: 80px 0;
        background: white;
    }
    
    .process-step {
        text-align: center;
        padding: 30px 20px;
        position: relative;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 20px;
    }
    
    .process-connector {
        position: absolute;
        top: 30px;
        right: -25%;
        width: 50%;
        height: 2px;
        background: #D4AF37;
        z-index: 1;
    }
    
    .gold-market-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .market-info-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-top: 4px solid #D4AF37;
    }
    
    .market-trend {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 10px 0;
    }
    
    .trend-up {
        color: #28a745;
    }
    
    .trend-down {
        color: #dc3545;
    }
    
    .comparison-section {
        padding: 80px 0;
        background: #f9f5f0;
    }
    
    .comparison-table {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .comparison-table th {
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        color: white;
        padding: 20px;
        text-align: center;
    }
    
    .comparison-table td {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .advantage-badge {
        background: #d4edda;
        color: #155724;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .disadvantage-badge {
        background: #f8d7da;
        color: #721c24;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .faq-enhanced-section {
        padding: 80px 0;
        background: #f9f5f0;
    }
    
    .faq-enhanced-card {
        background: white;
        border-radius: 15px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .faq-header {
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        color: white;
        padding: 25px;
        text-align: center;
    }
    
    .faq-body {
        padding: 0;
    }
    
    .faq-item {
        border-bottom: 1px solid #eee;
        padding: 20px 25px;
    }
    
    .faq-question {
        font-weight: 600;
        color: #1a237e;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .faq-answer {
        padding-top: 15px;
        display: none;
        color: #666;
    }
    
    .faq-item.active .faq-answer {
        display: block;
    }
    
    .faq-item.active .faq-toggle i {
        transform: rotate(180deg);
    }
    
    .contact-cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        color: white;
        text-align: center;
    }
    
    .contact-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 40px;
        max-width: 600px;
        margin: 0 auto;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    @media (max-width: 768px) {
        .trading-hero-content h1 {
            font-size: 2.5rem;
        }
        
        .live-price {
            font-size: 2rem;
        }
        
        .process-connector {
            display: none;
        }
        
        .buy-sell-cta {
            flex-direction: column;
            gap: 15px;
        }
        
        .cta-btn {
            width: 100%;
            justify-content: center;
        }
    }
/* SEO buy and sell page CSS - ENDS */

/* State wise-specific styles - STARTS */
    .goldbuyandsell-hero-section {
        background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #2196f3 100%);
        color: white;
        padding: 60px 0 40px;
        position: relative;
        overflow: hidden;
    }

    .goldbuyandsell-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('assets/goldbuyandsell-pattern.png') repeat;
        opacity: 0.1;
        pointer-events: none;
    }

    .goldbuyandsell-hero-title {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .goldbuyandsell-hero-description {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255,255,255,0.9);
    }

    .goldbuyandsell-stats {
        display: flex;
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .goldbuyandsell-stat-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        min-width: 120px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .goldbuyandsell-stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        color: #FFD700;
        margin: 0;
        line-height: 1;
    }

    .goldbuyandsell-stat-label {
        font-size: 0.9rem;
        margin: 5px 0 0;
        opacity: 0.9;
    }

    .goldbuyandsell-culture-section {
        padding: 60px 0;
        background: #f9f5f0;
    }

    .goldbuyandsell-culture-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #0d47a1;
        margin-bottom: 40px;
        text-align: center;
    }

    .goldbuyandsell-culture-box {
        background: white;
        border-radius: 15px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-top: 4px solid #2196f3;
    }

    .goldbuyandsell-culture-box h3 {
        color: #1976d2;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .goldbuyandsell-culture-box p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .goldbuyandsell-culture-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .goldbuyandsell-culture-list li {
        padding: 8px 0;
        padding-left: 30px;
        position: relative;
        color: #555;
    }

    .goldbuyandsell-culture-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2196f3;
        font-weight: bold;
    }

    .goldbuyandsell-highlight-box {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-radius: 15px;
        padding: 30px;
        border-left: 5px solid #0d47a1;
        margin-top: 30px;
    }

    .goldbuyandsell-highlight-title {
        color: #0d47a1;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .goldbuyandsell-highlight-text {
        color: #333;
        line-height: 1.6;
        margin: 0;
    }

    .goldbuyandsell-footer-section {
        background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
        color: white;
        padding: 60px 0 30px;
    }

    .goldbuyandsell-footer-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: white;
    }

    .goldbuyandsell-footer-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        color: rgba(255,255,255,0.9);
    }

    .goldbuyandsell-footer-subtitle {
        color: #FFD700;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .goldbuyandsell-footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .goldbuyandsell-footer-list li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.9);
    }

    .goldbuyandsell-footer-list li:last-child {
        border-bottom: none;
    }

    .goldbuyandsell-footer-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .goldbuyandsell-footer-card-title {
        color: #FFD700;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .goldbuyandsell-footer-card-text {
        color: rgba(255,255,255,0.9);
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .goldbuyandsell-footer-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .goldbuyandsell-footer-btn {
        background: #FFD700;
        color: #0d47a1;
        padding: 12px 20px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .goldbuyandsell-footer-btn:hover {
        background: #FFC107;
        color: #0d47a1;
        transform: translateY(-2px);
    }

    .goldbuyandsell-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 30px;
        margin-top: 40px;
        text-align: center;
    }

    .goldbuyandsell-footer-copyright {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        margin: 0;
    }

    /* Override hero section colors for Andaman */
    .gold-trading-hero {
        background: linear-gradient(135deg, #71512F 0%, #71512F 50%, #71512F 100%);
    }

    .state-section-title {
        color: #0d47a1;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }

    .state-section-subtitle {
        color: #666;
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.1rem;
    }

    @media (max-width: 768px) {
        .goldbuyandsell-hero-title {
            font-size: 2rem;
        }
        
        .goldbuyandsell-hero-description {
            font-size: 1rem;
        }
        
        .goldbuyandsell-stat-box {
            min-width: 100px;
            padding: 15px;
        }
        
        .goldbuyandsell-stat-number {
            font-size: 1.8rem;
        }
        
        .goldbuyandsell-stats {
            gap: 15px;
            justify-content: center;
        }
    }

    .about-company-section{margin-top: 30px;}
    .buy-sell-state-section{margin-top: 30px; background-color: #f9f5f0;}

    .district-item a{ text-decoration: none; color: #462901;}
/* State wise-specific styles - ENDS */

/* DISTRICT BUY-SELL SECTION STYLES */
.district-buy-sell-section {
    background-color: #f9f5f0;
    padding: 60px 0;
}

.district-buy-sell-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.district-buy-sell-content h2 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.district-buy-sell-content p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.district-buy-sell-content p strong {
    color: #462901;
    font-weight: 600;
}

/* Benefits Sections */
.district-buy-benefits, .district-sell-benefits {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.district-buy-benefits:hover, .district-sell-benefits:hover {
    transform: translateY(-5px);
}

.district-buy-benefits h3, .district-sell-benefits h3 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.district-buy-benefits ul, .district-sell-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.district-buy-benefits li, .district-sell-benefits li {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.district-buy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
}

.district-sell-benefits li::before {
    content: '₹';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
}

/* District Comparison */
.district-comparison {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.district-comparison h3 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    background-color: #462901;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: none;
}

.comparison-table td {
    font-family: "Poppins", sans-serif;
    padding: 15px;
    border: 1px solid #eee;
}

.comparison-table .text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.comparison-table .text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}

/* Process Section */
.district-process-section {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.district-process-section h3 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: "Poppins", sans-serif;
}

.process-step h4 {
    color: #462901;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .district-buy-sell-section {
        padding: 50px 0;
    }
    
    .district-buy-sell-content {
        padding: 30px;
    }
    
    .district-buy-sell-content h2 {
        font-size: 2rem;
    }
    
    .district-buy-benefits, .district-sell-benefits {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .district-buy-sell-section {
        padding: 40px 0;
    }
    
    .district-buy-sell-content {
        padding: 25px;
    }
    
    .district-buy-sell-content h2 {
        font-size: 1.8rem;
    }
    
    .district-buy-sell-content p {
        font-size: 1rem;
    }
    
    .district-buy-benefits h3, .district-sell-benefits h3 {
        font-size: 1.3rem;
    }
    
    .district-comparison h3, .district-process-section h3 {
        font-size: 1.4rem;
    }
    
    .process-step {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .district-buy-sell-section {
        padding: 30px 15px;
    }
    
    .district-buy-sell-content {
        padding: 20px;
    }
    
    .district-buy-sell-content h2 {
        font-size: 1.6rem;
    }
    
    .district-buy-sell-content p {
        font-size: 0.95rem;
    }
    
    .district-buy-benefits, .district-sell-benefits {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .district-buy-benefits li, .district-sell-benefits li {
        font-size: 0.95rem;
        padding-left: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}