/* CARD STYLES */
.premium-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(13, 110, 253, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px !important;
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 50%;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.premium-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.contact-btn {
    background: #0d6efd;
    color: white !important;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.contact-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* COMPARISON SECTION */
.comparison-header {
    margin: 40px 0 25px;
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.comparison-subtitle {
    font-size: 14px;
    color: #64748b;
}

.comparison-container {
    background: var(--nav-card);
    border-radius: 16px;
    border: 1px solid var(--nav-border);
    overflow: hidden;
}

.comparison-row {
    display: flex;
    padding: 15px 20px;
}

.header-row {
    background: #f8faff;
    border-bottom: 1px solid var(--nav-border);
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.comparison-item {
    border-bottom: 1px solid var(--nav-border);
    padding: 20px;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-label {
    font-size: 11px;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-label i {
    font-size: 14px;
}

.comparison-grid {
    display: flex;
    gap: 20px;
}

.col-left, .col-right {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
}

.col-right.highlight {
    color: #1e293b;
    font-weight: 600;
    padding-left: 15px;
    border-left: 2px solid rgba(13, 110, 253, 0.2);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .page {
        width: 100%;
        gap: 20px;
    }

    .premium-card h3 {
        font-size: 20px;
    }

    .header-row {
        display: none;
    }

    .comparison-grid {
        flex-direction: column;
        gap: 12px;
    }

    .col-left {
        background: #f8f9fa;
        padding: 10px;
        border-radius: 8px;
        font-size: 13px;
        color: #64748b;
        position: relative;
    }

    .col-left::before {
        content: "LOCAL BUILDER";
        display: block;
        font-size: 9px;
        font-weight: 800;
        margin-bottom: 4px;
        opacity: 0.6;
    }

    .col-right.highlight {
        border-left: none;
        padding-left: 0;
        font-size: 14px;
        color: #0d6efd;
        background: #f0f7ff;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }

    .col-right.highlight::before {
        content: "GONESTRO ADVANTAGE";
        display: block;
        font-size: 9px;
        font-weight: 800;
        margin-bottom: 4px;
        color: #0d6efd;
    }

    .bottom-boxes {
        flex-wrap: wrap;
    }

    .box {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .contact-section {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
    }

    .contact-text {
        text-align: center;
    }
}

/* FORM STYLES */
.form-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--nav-border);
}

.form-container h2 {
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.form-container button {
    background: #0d6efd !important;
    font-size: 16px;
    padding: 15px;
}