/* Offer Page Specific Styles */

/* ========================================
   OFFER PAGE STYLES
======================================== */

/* Offer Hero Section */
.offer-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a4b5c 30%, #2d6a7a 60%, #4a9fb8 100%);
    position: relative;
    overflow: hidden;
}

.offer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.offer-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.offer-content {
    text-align: left;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.offer-badge i {
    font-size: 1.2rem;
}

.offer-title {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.offer-title .highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.offer-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.offer-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-large i {
    font-size: 1.3rem;
}

/* Offer Visual */
.offer-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    animation: discountPulse 3s ease-in-out infinite;
}

.discount-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    animation: rotateCircle 10s linear infinite;
}

.discount-percentage {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.discount-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 10%;
}

.floating-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

/* Offer Details Section */
.offer-details {
    padding: 120px 0;
    background-color: var(--background-dark);
    position: relative;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 4rem;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.benefit-badge {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.benefit-badge:contains("SAVE") {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.benefit-badge:contains("BONUS") {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light);
    font-weight: 600;
}

.comparison-header>div {
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row>div {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-name {
    text-align: left !important;
    justify-content: flex-start !important;
    color: var(--text-light);
    font-weight: 500;
}

.competitor-value {
    color: #ff6b6b;
    font-weight: 600;
}

.urbanpos-value {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Offer CTA Section */
.offer-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a4b5c 30%, #2d6a7a 60%, #4a9fb8 100%);
    position: relative;
    overflow: hidden;
}

.offer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: backgroundPulse 6s ease-in-out infinite;
}

.cta-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-text i {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Styles for Offer Page */
@media (max-width: 1200px) {
    .offer-hero .container {
        gap: 3rem;
    }
    
    .offer-title {
        font-size: 3.5rem;
    }
    
    .discount-circle {
        width: 250px;
        height: 250px;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .discount-text {
        font-size: 1.2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .offer-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .offer-content {
        text-align: left;
    }
    
    .offer-title {
        font-size: 3rem;
    }
    
    .offer-subtitle {
        font-size: 1.1rem;
    }
    
    .offer-cta {
        justify-content: center;
    }
    
    .discount-circle {
        width: 200px;
        height: 200px;
    }
    
    .discount-percentage {
        font-size: 2.5rem;
    }
    
    .discount-text {
        font-size: 1rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.5rem;
    }
    
    .offer-card {
        padding: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
    }
    
    .comparison-header>div {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .comparison-row>div {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .offer-hero {
        padding: 100px 0 80px;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .offer-subtitle {
        font-size: 1rem;
    }
    
    .offer-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .discount-circle {
        width: 180px;
        height: 180px;
    }
    
    .discount-percentage {
        font-size: 2rem;
    }
    
    .discount-text {
        font-size: 0.9rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
    
    .offer-details,
    .comparison-section,
    .offer-cta-section {
        padding: 80px 0;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
    }
    
    .comparison-header>div {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .comparison-row>div {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 0.9rem;
    }
    
    .offer-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .discount-circle {
        width: 150px;
        height: 150px;
    }
    
    .discount-percentage {
        font-size: 1.8rem;
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
    }
    
    .floating-icon i {
        font-size: 1rem;
    }
    
    .offer-details,
    .comparison-section,
    .offer-cta-section {
        padding: 60px 0;
    }
    
    .offer-card {
        padding: 1rem;
    }
    
    .card-header {
        gap: 0.75rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-text h4 {
        font-size: 0.9rem;
    }
    
    .benefit-text p {
        font-size: 0.8rem;
    }
    
    .benefit-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .comparison-header>div {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .comparison-row>div {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
}
