/* Skip Link for Accessibility */
.skip-link{position:absolute;top:-40px;left:6px;background:#13203B;color:white;padding:8px;text-decoration:none;border-radius:4px;z-index:1000;transition:top .3s}.skip-link:focus{top:6px}

/* Visually Hidden for Screen Readers */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #003d82;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 600;
}

/* Main Container */
.company-page-container {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.company-page-container .row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.company-page-container .col-lg-3,
.company-page-container .col-lg-9 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.sidebar-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Company Info Card */
.company-info-card {
    padding: 2rem;
    text-align: center;
    background: #13203B;
    color: white;
    margin-bottom: 1rem;
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 1rem;
}

.company-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.company-title i {
    font-size: 2rem;
    color: #3498db;
}

.special-day-dates {
    margin-bottom: 1rem;
}

.date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-range i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.company-rating {
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 0.5rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #f4c430;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 1;
    color: #ffffff;
    font-weight: 600;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 1;
    color: #ffffff;
    font-weight: 600;
}

.visit-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.visit-store-btn:hover,
.visit-store-btn:focus {
    background: rgba(255,255,255,0.3);
    color: white;
    transform: translateY(-2px);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}



/* Section Header Badge */
.section-header-badge {
    background: #1e7e34;
    padding: 0.5rem 1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.section-header-badge.similar-brands-badge,
.section-header-badge.how-to-apply-badge,
.section-header-badge.participating-companies-badge {
    background: #13203B;
}

.section-badge-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
}

/* Similar Companies */
.similar-companies {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}



.similar-companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.similar-company-item {
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-company-item:hover,
.similar-company-item:focus {
    border-color: #007bff;
    transform: translateY(-2px);
    outline: 2px solid #007bff;
    outline-offset: 2px;
    text-decoration: none;
    color: inherit;
}

.similar-company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.similar-company-name {
    font-size: 0.8rem;
    color: #13203B;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.no-similar-companies {
    text-align: center;
    color: #13203B;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Participating Companies with Coupon Counts */
.participating-companies-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.participating-company-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.participating-company-item-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.participating-company-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.participating-company-item-link:hover .participating-company-item {
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.company-logo-section {
    flex-shrink: 0;
}

.participating-company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background: white;
    padding: 4px;
}

.participating-company-logo-placeholder {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.participating-company-logo-placeholder i {
    color: #6c757d;
    font-size: 1.5rem;
}

.company-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.participating-company-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #13203B;
    line-height: 1.2;
}

.coupon-count-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Sidebar Content */
.company-summary,
.how-to-apply,
.participating-companies {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.company-summary h2,
.how-to-apply h2,
.similar-companies h2,
.participating-companies h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #13203B;
}

.company-summary p {
    color: #13203B;
    line-height: 1.6;
    font-weight: 600;
    font-size: 0.85rem;
}

.how-to-apply ol {
    padding-left: 1.2rem;
    color: #13203B;
    font-weight: 600;
    font-size: 0.85rem;
}

.how-to-apply li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 600;
    font-size: 0.85rem;
}



/* Main Content */
.main-content {
    padding-left: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.page-header {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 18px;
    font-weight: 700;
    color: #13203B;
    margin-bottom: 0.5rem;
    text-align: left;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0.5px;
}

.page-title i {
    font-size: 16px;
    margin-right: 0.5rem;
    color: #3498db;
}

.page-subtitle {
    font-size: 14px;
    color: #495057;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.page-date {
    font-size: 12px;
    color: #333;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.trend-coupon {
    font-size: 12px;
    color: #13203B;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.trend-label {
    font-weight: 600;
    color: #13203B;
}

.trend-title {
    color: #333;
    margin-left: 0.5rem;
    font-weight: 500;
}

.page-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 0.5rem;
}

.page-stats .stat-item {
    text-align: center;
}

.page-stats .stat-number {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #13203B;
}

.page-stats .stat-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

/* Coupons Grid */
.coupons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Special Day Coupons Grid - Responsive */
.special-day-coupons .coupons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0;
}

/* Popular Coupons Grid - Responsive */
.popular-coupons .coupons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0;
}

@media (max-width: 1200px) {
    .special-day-coupons .coupons-grid,
    .popular-coupons .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .special-day-coupons .coupons-grid,
    .popular-coupons .coupons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Special Day Coupon Cards */
.special-day-coupons .coupon-card {
    min-height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-day-coupons .coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Popular Coupon Cards */
.popular-coupons .coupon-card {
    min-height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-coupons .coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.special-day-coupons .coupon-header {
    background: linear-gradient(135deg, #13203B, #1e3a5f);
    padding: 1rem;
}

.special-day-coupons .discount-badge-container {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 2px solid rgba(255,255,255,0.3);
}

.special-day-coupons .verified-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Popular Coupons Header and Badge Styles */
.popular-coupons .coupon-header {
    background: linear-gradient(135deg, #13203B, #1e3a5f);
    padding: 1rem;
}

.popular-coupons .discount-badge-container {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 2px solid rgba(255,255,255,0.3);
}

.popular-coupons .verified-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Company Logo Styles for Special Day Coupons */
.special-day-coupons .coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.special-day-coupons .company-logo-section {
    flex-shrink: 0;
}

.special-day-coupons .company-logo-small {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-day-coupons .company-logo-small:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.special-day-coupons .company-logo-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.special-day-coupons .company-logo-placeholder i {
    color: #6c757d;
    font-size: 2rem;
}

.special-day-coupons .badge-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.special-day-coupons .discount-badge {
    display: flex;
    justify-content: center;
}

.special-day-coupons .verified-badge {
    flex-shrink: 0;
}

/* Company Logo Styles for Popular Coupons */
.popular-coupons .coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.popular-coupons .company-logo-section {
    flex-shrink: 0;
}

.popular-coupons .company-logo-small {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-coupons .company-logo-small:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.popular-coupons .company-logo-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.popular-coupons .company-logo-placeholder i {
    color: #6c757d;
    font-size: 2rem;
}

.popular-coupons .badge-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.popular-coupons .discount-badge {
    display: flex;
    justify-content: center;
}

.popular-coupons .verified-badge {
    flex-shrink: 0;
}

.coupon-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #13203B;
    color: white;
    gap: 1rem;
}

/* Company Logo in Coupon Cards */
.company-logo-section {
    flex-shrink: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.coupon-company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e9ecef;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coupon-company-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.coupon-company-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coupon-company-logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.coupon-company-logo-placeholder i {
    font-size: 1.8rem;
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.discount-badge-container {
    background: linear-gradient(135deg, #13203B, #1e3a5f) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.discount-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}



.verified-badge {
    background: #28a745 !important;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.verified-badge i {
    font-size: 0.7rem;
    color: white !important;
}

.coupon-content {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.coupon-title {
    font-size: 1rem;
    font-weight: 600;
    color: #13203B;
    margin-bottom: 0.75rem;
}

.coupon-description-container {
    flex: 1;
    overflow-y: auto;
    max-height: 120px;
    margin-bottom: 0.75rem;
}

.coupon-description {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.coupon-expiry {
    color: #dc3545;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0.5rem 0;
    border-top: 1px solid #f0f0f0;
}

.expiry-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.share-btn:hover,
.share-btn:focus {
    background: #13203B;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(19, 32, 59, 0.3);
    outline: none;
}

.share-btn i {
    font-size: 0.9rem;
}

.coupon-actions {
    padding: 0.75rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.get-code-btn,
.get-offer-btn {
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: #13203B;
    color: white;
    border: 2px solid #13203B;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.7s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.get-code-btn::before,
.get-offer-btn::before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.7s ease;
    z-index: -1;
}

.get-code-btn:hover::before,
.get-offer-btn:hover::before {
    width: 400%;
    height: 400%;
}

.get-code-btn:hover,
.get-code-btn:focus,
.get-offer-btn:hover,
.get-offer-btn:focus {
    border-color: #1e7e34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 32, 59, 0.3);
    outline: none;
}

.get-code-btn.copied {
    background: #28a745;
}

/* Modal Button Styles */
.cmn-btn.btn-overlay {
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: #13203B;
    color: white;
    border: 2px dashed #4a90e2;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.7s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmn-btn.btn-overlay .coupon-code {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cmn-btn.btn-overlay .show {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cmn-btn.btn-overlay:hover .coupon-code {
    opacity: 1;
}

.cmn-btn.btn-overlay:hover .show {
    opacity: 0;
}

.cmn-btn.btn-overlay:hover {
    border-color: #1e7e34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 32, 59, 0.3);
    outline: none;
}



/* No Coupons */
.no-coupons {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-coupons i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-coupons h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.no-coupons p {
    color: #495057;
    font-weight: 500;
}

/* Company Details */
.company-details {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-details h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-article h2,
.company-article h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-article p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.company-article table {
    margin: 1rem 0;
    width: 100%;
    border-collapse: collapse;
}

.company-article table th,
.company-article table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
}

.company-article table th {
    background: #f8f9fa;
    font-weight: 600;
}

.company-article ul,
.company-article ol {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #666;
}

.company-article li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .sidebar {
        position: static;
        margin-bottom: 2rem;
        max-height: none;
    }
    
    .main-content {
        padding-left: 0 !important;
        padding-top: 0 !important;
    }
    
    .company-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-date {
        font-size: 1rem;
    }
    
    .page-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .coupon-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-companies-grid {
        grid-template-columns: 1fr;
    }
}

/* En güçlü verified-badge kuralı - tüm sayfalarda çalışacak */
.special-day-coupons .coupon-card .coupon-header .verified-badge,
.special-day-coupons .verified-badge,
.coupon-card .verified-badge,
.verified-badge {
    background: #28a745 !important;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.special-day-coupons .coupon-card .coupon-header .verified-badge i,
.special-day-coupons .verified-badge i,
.coupon-card .verified-badge i,
.verified-badge i {
    color: white !important;
    font-size: 0.7rem;
}

/* Özel sınıf için verified-badge stilleri - SEO dostu */
.special-day-verified-badge {
    background: #13203B !important;
    color: white !important;
    font-size: 0.7rem !important;
    padding: 0.25rem 0.75rem !important;
    white-space: nowrap !important;
    max-width: 350px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 0.75rem !important;
    align-self: center !important;
    border-radius: 4px !important;
}

.special-day-verified-badge i {
    color: white !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
}

.special-day-verified-badge span {
    color: white !important;
    font-size: 0.7rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Newsletter Section */
.newsletter-section {
    margin: 30px 0;
    padding: 20px 0;
    background: linear-gradient(135deg, #13203B 0%, #1a2a4a 100%);
    border-radius: 16px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.newsletter-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 20px;
    color: white;
}

.newsletter-text h3 {
    color: white !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.newsletter-text h3,
.newsletter-text h3 * {
    color: white !important;
}

.newsletter-section .newsletter-text h3 {
    color: white !important;
}

.newsletter-section .newsletter-text h3 span {
    color: white !important;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.newsletter-form {
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 450px;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.newsletter-input-group button {
    background: #155724;
    border: none;
    padding: 14px 20px;
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-input-group button:hover {
    background: #1e7e34;
    transform: translateY(-1px);
}

.newsletter-input-group button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
    padding: 30px 0;
    background: #f8f9fa;
    border-radius: 16px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    color: #13203B;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.faq-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #13203B;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #13203B;
    color: white;
}

.faq-question-text {
    flex: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(19, 32, 59, 0.1);
    color: #13203B;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer-content {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin: 0 0 12px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: #13203B;
    font-weight: 600;
}

.faq-answer-content a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 16px;
        font-size: 0.9rem;
    }
}
