/* Modern & Next Gen Styles for AdapteHost */
:root {
    --primary-color: #6f42c1;
    --secondary-color: #0d6efd;
    --accent-color: #00d2ff;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* Utilities */
.text-purple { color: #6f42c1 !important; }

/* Buttons */
.btn-transparent {
    border: 2px solid #6f42c1;
    color: #6f42c1;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-block;
    text-decoration: none;
}

.btn-transparent:hover {
    background: #6f42c1;
    color: #fff;
}

/* Logo */
.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-text span {
    color: #6f42c1;
}

/* Hero Section (Home) */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%), url('../images/background/menu-back.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.2) 0%, transparent 60%);
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    color: #cbd5e1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (Subpages) */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #a5b4fc;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #a5b4fc;
}

/* Domain Search Box */
.domain-search-box {
    background: #fff; /* Default for subpages */
    padding: 20px;
    border-radius: 60px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    position: relative;
    z-index: 10;
}

/* Hero specific override */
.hero-section .domain-search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.domain-input {
    border: none;
    flex: 1;
    padding: 15px 30px;
    font-size: 18px;
    outline: none;
    border-radius: 50px;
    background: transparent;
    color: #333; /* Default text color */
}

/* Hero input override */
.hero-section .domain-input {
    color: #fff;
}

.domain-input::placeholder {
    color: #999;
}

.hero-section .domain-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.domain-btn {
    background: linear-gradient(90deg, #6f42c1, #8b5cf6);
    color: #fff;
    border: none;
    padding: 12px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.4);
}

.domain-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(111, 66, 193, 0.6);
}

/* Why Choose Us Box */
.whychoose-one-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.whychoose-one-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.15);
    border-color: #6f42c1;
}

.whychoose-one-box i {
    font-size: 50px;
    color: #6f42c1;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s;
}

.whychoose-one-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Cards */
.pricing-package-three-box {
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-package-three-box:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: #6f42c1;
}

.pricing-package-three-box.featured {
    border: 2px solid #6f42c1;
    background: linear-gradient(180deg, #fff 0%, #f9f5ff 100%);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6f42c1;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.box-title h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.box-price {
    margin-bottom: 20px;
}

.box-price p {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.box-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.box-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.box-list li i {
    color: #6f42c1;
    margin-right: 10px;
    font-size: 14px;
}

.box-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.pricing-package-three-box:hover .box-btn,
.pricing-package-three-box.featured .box-btn {
    background: #6f42c1;
    color: #fff;
}

/* Feature Grid (Generic) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 40px;
    color: #6f42c1;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-section {
        padding: 140px 0 80px;
    }
}
