@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --bg-primary:#28d2c7;
    --bg-secondary:#5850ec;
    --bg-purple:#ad46ff;
    --bg-green:#4ade80;
    --primary-gradient: linear-gradient(135deg, #28d2c7 53%, #5850ec 100%);
    --primary-gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient:linear-gradient(100deg, rgba(40, 210, 199, 1) 53%, rgba(88, 80, 236, 1) 97%);
    --secondary-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins',system-ui, -apple-system, sans-serif;;
}

body {
    background: var(--dark-bg)!important;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Bootstrap modif */
.bg-green-whatsapp{
    background:var(--bg-green)!important;
    color: rgba(15, 15, 35, 0.8)!important;
    border-color:1px solid var(--bg-green)!important;;
}
.nav.nav-pills{
    gap:1.5rem!important;
}
.nav-link{
    background:rgba(0,0,0,0.2)!important;
    color:rgba(255,255,255,0.9)!important;
}
.nav-link:hover{
    background:rgba(0,0,0,0.4)!important;
    transition:0.3s;
}
.nav-link.active{
    background:var(--bg-secondary)!important;
}
/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
    radial-gradient(ellipse at 20% 80%, rgba(40, 210, 199, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(88, 80, 236, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 35, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0!important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem!important;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .menu{
    position:relative;
    margin-top:0.5rem;
}
.navbar .menu>a {

    color:var(--bg-primary);
    font-size:1.2rem;
    font-weight:600;
    transition: 0.3s;
    text-decoration:none;
}
.navbar .menu ul{
    position:absolute;
    width:9.6rem;
    right:-1rem;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius:3px;
    height:0px;
    padding:8px 16px;
    opacity:0;
    list-style:none;
}
.navbar .menu:hover ul{
    height:auto;
    opacity:1;
    transition:0.3s;
}
.navbar .menu ul li a{
    font-size:16px;
    font-weight:500;
    text-decoration:none;
    color:#fff;
}
.navbar .menu ul li a:hover{
    color:var(--bg-primary);
    transition:0.3s;
}

/*
.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hosting-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hosting-card:hover::before {
    transform: scaleX(1);
}
*/
.cart-btn {
    position: relative;
    background: var(--bg-primary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 210, 199, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-gradient-2);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Domain Search */
.domain-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.domain-search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.domain-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.domain-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.domain-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.search-btn {
    background: var(--bg-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(40, 210, 199, 0.4);
}

.search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Domain Results */
.domain-results {
    margin-top: 2rem;
    display: none;
    color:#fff;
}

.domain-result-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(10px);
}

.domain-info h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.domain-info .domain-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.status-available {
    color: #4ade80;
}

.status-taken {
    color: #f87171;
}

.domain-price {
    text-align: right;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4ade80;
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.add-to-cart-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.add-to-cart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Hosting Plans */
.hosting-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color:#fff;
    font-size:0.9rem;
}

.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hosting-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hosting-card:hover::before {
    transform: scaleX(1);
}

.hosting-card.featured {
    border-color: #667eea;
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    /*transform: scale(1.05);*/
}

.hosting-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-gradient-2);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom:1rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size:0.8rem;
}

.features-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list li i {
    color: #4ade80;
}

.select-plan-btn {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* Cart Modal */
.modal-content {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.cart-item-info h6 {
    margin: 0;
    font-weight: 600;
}

.cart-item-info small {
    color: rgba(255, 255, 255, 0.6);
}

.cart-item-price {
    font-weight: 700!important;
    color: #4ade80!important;
    font-size:1rem!important;
}

.remove-item-btn {
    background: rgba(248, 113, 113, 0.2);
    border: none;
    color: #f87171;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: rgba(248, 113, 113, 0.4);
}

.cart-total {
    text-align: right;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.checkout-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Loading Animation */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom:2rem;
    right:2rem;
    z-index:1201;
}

.custom-toast {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Footer Styles */
.site-footer{
    position:relative;
    margin-top:4rem;
}
.container-site-footer{
    padding-top:3rem;
    background: rgba(10, 10, 25, 0.95);
}
.site-footer svg{
    width: 100%;
    height: 100%;
    transform: rotate(180deg);  
}
.footer-waves {
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}


.footer-content {
    /*padding: 0 0 3rem;*/
}

.footer-brand h3 {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.footer-links h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: #667eea;
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.newsletter-section h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-section h4 i {
    color: #f5576c;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.payment-methods span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #667eea;
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    padding-bottom: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-badges .badge {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #a8b2d1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-badges .badge i {
    color: #4ade80;
}

/* Pay Section */
.pay-section{
    color:#fff;
}
.pay-section span{
    color:rgba(255,255,255,0.6);
    font-size:0.8rem;
}
.pay-section h6{
    font-size:0.8rem;
}
.pay-section h5{
    font-size:1rem;
    margin-bottom:0;
}
.container-pay{
    min-height:250px;
    background:rgba(0,0,0,0.5);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:0.5rem;
    padding:1rem;
}
.container-pay .admin{
    display:flex;
    gap:1rem;
}
.container-pay .admin i{
    font-size:2.5rem;
    color:var(--bg-primary);
}
.container-pay .details .more-details{
    background:rgba(0,0,0,0.3);
    padding:1rem;
    border-radius:0.3rem;
    border:1px solid rgba(255,255,255,0.1);
}
.container-pay .details .more-details img{
    width:100px;
    height:100px;
}
.container-pay .details .help-list{
    margin-top:1rem;
    display:flex;
    gap:1rem;
}
.container-pay .details .help-list strong{
    width:2rem;
    height:2rem;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--bg-primary);
    border-radius:50%;
    font-size:1.1rem;
    font-weight:500;
}
/**/
denz{
    display:flex;
    justify-content:center;
}
denz img{
    width:100px;
    height:100px;
}
denz img.denz-1{
    display:none;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .domain-search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .domain-result-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hosting-card.featured {
        /*transform: scale(1);*/
        transform: translateY(0px);
    }
    /**/
    .footer-waves {
        height: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .payment-methods {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }
    .footer-links{
        text-align:center;
    }
}
@media (min-width:768px){
    .navbar .menu{
        margin:0;
    }
    .navbar .menu>a{
        visibility:hidden;
        /*display:none;*/
    }
    .navbar .menu ul{
        width:auto;
        display:flex;
        align-items: stretch;
        opacity:1;
        background: none;
        backdrop-filter:none;
        border:none;
        top:0px;
        gap:0.5rem;
    }.navbar .menu ul:hover{
        background:transparent;
    }
    .navbar .menu ul li a{
        padding-right:1rem;
    }
    /**/
    denz img.denz-1{
        display:block;
    }
    denz img.denz-2{
        display:none;
    }
}