/* CSS Variables for consistent colors */
:root {
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --white-bg: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-row {
    min-height: 85vh;
    position: relative;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact section subtitle override */
.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    font-size: 1.3rem !important;
}

/* Features Section */
.features-section {
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.bonus-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.bonus-details h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-value {
    color: #28a745;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bonus-value-item {
    background: rgba(40, 167, 69, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
    margin: 0.5rem 0;
}

.value-price {
    font-weight: 700;
    color: var(--text-dark);
}

.value-divider {
    border-color: #28a745;
    border-width: 2px;
    margin: 1rem 0;
}

.total-value {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255, 193, 7, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.your-price {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: var(--border-radius);
}

.your-price h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
}

.savings {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-box {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid #ffc107;
}

.comparison-box h5 {
    margin-bottom: 1rem;
    color: #dc3545;
    font-weight: 700;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comparison-row.highlight {
    background: rgba(40, 167, 69, 0.2);
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.comparison-label {
    font-weight: 600;
}

.cta-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.feature-card {
    background: var(--white-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Pricing Section */
.pricing-section {
    background: var(--white-bg);
}

.pricing-table {
    background: var(--white-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table th {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1.2rem;
}

.table td {
    padding: 1.2rem;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
}

.price-high {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-medium {
    color: #fd7e14;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-our {
    color: #28a745;
    font-weight: 700;
    font-size: 1.3rem;
}

.table-success {
    background-color: rgba(40, 167, 69, 0.1);
}

/* Trust Section */
.trust-section {
    background: var(--light-bg);
}

/* Partnership Section */
.partnership-section {
    background: var(--white-bg);
}

.partner-logo {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.partner-logo h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.partnership-badge i {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

.trust-benefits {
    list-style: none;
    padding: 0;
}

.trust-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.trust-benefits i {
    margin-right: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white-bg);
}

.testimonial-card {
    background: var(--white-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background: var(--white-bg);
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white-bg);
}

/* Contact Section */
.contact-section {
    background: var(--primary-gradient);
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    color: var(--text-dark);
}

.benefits-list {
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.limited-offer {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #dc3545;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-item {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-section {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-cta {
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.btn-godaddy {
    background: var(--success-gradient);
}

.btn-namecheap {
    background: linear-gradient(135deg, #ff6900 0%, #ff8c00 100%);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Table improvements */
.included-basic {
    color: #6c757d;
    font-style: italic;
}

.included-premium {
    color: #28a745;
    font-weight: 600;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.contact-emails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.email-item a:hover {
    color: #FFD700;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -1rem;
        margin-bottom: -2rem;
        min-height: 60vh;
    }

    .hero-row {
        min-height: 60vh;
    }

    .hero-logo-img {
        max-width: 150px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 0.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }

    .timer-item {
        padding: 0.7rem 0.5rem;
        min-width: 60px;
        font-size: 0.9rem;
    }

    .timer-number {
        font-size: 1.5rem !important;
    }

    .timer-label {
        font-size: 0.7rem !important;
    }
    
    .contact-emails {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .partner-img {
        max-width: 100px;
    }

    .partner-logo {
        padding: 1.5rem 1rem;
    }

    .partnership-badge {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }

    .bonus-card {
        padding: 2rem 1rem;
    }

    .bonus-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem;
    }

    .bonus-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .value-item {
        font-size: 0.9rem;
    }

    .your-price h4 {
        font-size: 1.5rem;
    }

    .comparison-row {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        min-width: 250px;
    }
}
