:root {
    --primary-color: #2196f3;
    --primary-light: #e3f2fd;
    --secondary-color: #1976d2;
    --text-color: #2c3e50;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    text-align: center;
    width: 100%;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-message {
    color: var(--white);
    font-size: 1.2rem;
    margin: 1rem 0;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo {
    width: 200px;
    margin-bottom: 1.5rem;
}

.website-live-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: -1.5rem auto 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.website-live-card p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6rem;
    column-gap: 3rem;
    padding: 4rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.plan-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    animation: bounce 0.5s cubic-bezier(0.36, 0, 0.66, -0.56) 0s 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.plan-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-card h2 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.plan-card p {
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    color: #666;
}

.plan-card.special {
    border: 2px solid var(--primary-color);
    position: relative;
}

.plan-card.special::after {
    content: 'Popular';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #1976d2;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.discount::after {
    content: 'Discount';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #4caf50;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.discount {
    border: 2px solid #4caf50;
    position: relative;
}

.plan-card.whois {
    border: 2px solid #9c27b0;
    position: relative;
}

.plan-card.whois::after {
    content: 'WHOIS Lookup';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #9c27b0;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.sale {
    border: 2px solid #ff5722;
    position: relative;
}

.plan-card.sale::after {
    content: '25% OFF';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #ff5722;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.hot {
    border: 2px solid #f44336;
    position: relative;
}

.plan-card.hot::after {
    content: 'HOT';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #f44336;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.free-domain {
    border: 2px solid #009688;
    position: relative;
}

.plan-card.free-domain::after {
    content: 'Free Domain';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #009688;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.white-label {
    border: 2px solid #795548;
    position: relative;
}

.plan-card.white-label::after {
    content: 'White Label';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #795548;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.free-renewal {
    border: 2px solid #e91e63;
    position: relative;
}

.plan-card.free-renewal::after {
    content: 'Free 1 Year Renewal';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #e91e63;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.plan-card.os-support {
    border: 2px solid #607d8b;
    position: relative;
}

.plan-card.os-support::after {
    content: 'Linux & Windows';
    position: absolute;
    top: -12px;
    right: 10px;
    background: #607d8b;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn {
    background: #1976d2;
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: var(--white);
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    width: 100%;
    left: 0;
    right: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-section h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--white);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: var(--white);
}

.copyright {
    text-align: center;
    color: var(--white);
    opacity: 0.9;
    margin-top: 2rem;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 0.8;
}

.hosting-info {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.hosting-info p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(-15px); }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 3rem 0 5rem;
    }
    
    header h1 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .plans-grid {
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }
}

/* Responsive adjustments for the new grid */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}
