/* Sofokast Plus Page Styles - Compact Version */

/* Variables for Sofokast Plus page */
:root {
    --sofokast-primary: #2C5282;
    --sofokast-secondary: #4299E1;
    --sofokast-accent: #b43744;
    --sofokast-text: #2D3748;
    --sofokast-light-bg: #EBF8FF;
    --sofokast-warning: #f39c12;
    --sofokast-success: #2C5282;
}

/* Hero Banner for Sofokast Plus */
.sofokast-hero {
    background: linear-gradient(135deg, var(--sofokast-primary) 0%, #07054f 100%);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.sofokast-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.sofokast-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sofokast-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sofokast-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}


/* Hero Banner Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-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;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #00bcd4, #4dd0e1);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #0097a7, #00bcd4);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hero-btn.secondary:hover {
    background: white;
    color: var(--enzalutamid-primary);
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2);
}

/* About Section Styles */
.about-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 0;
}

.about-title {
    color: var(--enzalutamid-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    border-bottom: 3px solid var(--enzalutamid-secondary);
    padding-bottom: 10px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--enzalutamid-text);
    margin-bottom: 25px;
    text-align: justify;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg, var(--enzalutamid-accent), #9a2f3a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(180, 55, 68, 0.3);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 55, 68, 0.5);
    color: white;
    text-decoration: none;
}

.about-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(3px);
}

/* Content Sections - Compact */
.sofokast-content {
    background: #f8f9fa;
}

.info-section {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.info-section h2 {
    color: var(--sofokast-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--sofokast-secondary);
    padding-bottom: 8px;
    text-align: center;
}

.info-section h3 {
    color: var(--sofokast-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.info-section h4 {
    color: var(--sofokast-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 8px 0;
}

.info-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--sofokast-text);
    margin-bottom: 10px;
}

/* Compact Info and Warning Boxes */
.info-box {
    background: var(--sofokast-light-bg);
    border-left: 4px solid var(--sofokast-secondary);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.warning-box {
    background: #fff5f5;
    border-left: 4px solid var(--sofokast-warning);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.warning-box p {
    margin: 0;
    color: var(--sofokast-warning);
    font-weight: 600;
}

/* Compact Tables */
.table-responsive {
    overflow-x: auto;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: var(--sofokast-light-bg);
    color: var(--sofokast-primary);
    font-weight: 600;
    padding: 12px 10px;
    text-align: left;
    border-bottom: 2px solid var(--sofokast-secondary);
    font-size: 15px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: var(--sofokast-text);
}

tr:hover {
    background: #f7fafc;
}

/* Compact Feature Cards */
.info-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.info-section .feature-card {
    background: white;
    border: 2px solid var(--sofokast-light-bg);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-section .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--sofokast-secondary);
}

.info-section .feature-card h4 {
    color: var(--sofokast-primary);
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--sofokast-light-bg);
    padding-bottom: 6px;
}

.info-section .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section .feature-card li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    color: var(--sofokast-text);
}

.info-section .feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sofokast-success);
    font-weight: bold;
    font-size: 14px;
}

/* Compact FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin: 10px 0;
    border: 2px solid var(--sofokast-light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--sofokast-secondary);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.faq-item summary {
    padding: 12px 15px;
    background: var(--sofokast-light-bg);
    cursor: pointer;
    font-weight: 600;
    color: var(--sofokast-primary);
    font-size: 15px;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: #dbeafe;
}

.faq-item[open] summary {
    border-bottom: 2px solid var(--sofokast-secondary);
    background: #dbeafe;
}

.faq-item p {
    padding: 15px;
    margin: 0;
    background: white;
    font-size: 14px;
    line-height: 1.5;
    color: var(--sofokast-text);
}

/* Compact CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--sofokast-primary) 0%, #07054f 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--sofokast-accent), #c0392b);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231, 76, 60, 0.6);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--sofokast-primary);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Expert Reviews - Compact */
.expert-review {
    position: relative;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid var(--sofokast-accent);
}

.expert-review .quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: var(--sofokast-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.expert-review blockquote {
    margin: 0;
    padding-left: 45px;
    font-style: italic;
}

.expert-review blockquote p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--sofokast-text);
    margin-bottom: 10px;
}

.expert-review blockquote footer {
    font-style: normal;
    font-weight: 600;
    color: var(--sofokast-primary);
    font-size: 13px;
}

/* Price table specific styles */
.price-table th {
    background: var(--sofokast-primary);
    color: white;
}

.price-table td {
    font-weight: 500;
}

/* Responsive Design - Compact */
@media (max-width: 1024px) {
    .info-section .container {
        padding: 15px 10px;
    }
    
    .info-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .sofokast-hero .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .sofokast-hero .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .sofokast-content {
        padding: 10px 0;
    }
    
    .info-section {
        margin-bottom: 10px;
    }
    
    .info-section .container {
        padding: 15px 10px;
    }
    
    .info-section h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .info-section h3 {
        font-size: 20px;
        margin: 12px 0 8px 0;
    }
    
    .info-section .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 10px 0;
    }
    
    .info-section .feature-card {
        padding: 12px;
    }
    
    .table-responsive {
        font-size: 13px;
    }
    
    th, td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .faq-item summary {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .faq-item p {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sofokast-hero .hero-title {
        font-size: 24px;
    }
    
    .sofokast-hero .hero-description {
        font-size: 14px;
    }
    
    .info-section h2 {
        font-size: 22px;
    }
    
    .info-section h3 {
        font-size: 18px;
    }
    
    .info-section .feature-card h4 {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 20px;
    }
    
    .expert-review {
        padding: 15px 10px;
    }
    
    .expert-review .quote-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: 8px;
        left: 8px;
    }
    
    .expert-review blockquote {
        padding-left: 40px;
    }
    
    .expert-review blockquote p {
        font-size: 13px;
    }
    
    .expert-review blockquote footer {
        font-size: 12px;
    }
}