:root {
    --atrai-purple: #6f42c1;
    --atrai-purple-light: #8951ed;
    --atrai-purple-dark: #5a32a3;
    --atrai-purple-transparent: rgba(111, 66, 193, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, var(--atrai-purple-dark) 0%, var(--atrai-purple) 50%, var(--atrai-purple-light) 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: white;
    color: var(--atrai-purple);
    border: 2px solid white;
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-hero-outline:hover {
    background-color: white;
    color: var(--atrai-purple);
    transform: translateY(-3px);
}

.feature-card {
    border: none;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--atrai-purple);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--atrai-purple);
    margin-right: 10px;
    font-weight: bold;
}

/* URL Shortener Specific Styles */
.w2u-hero {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}

.w2u-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Navbar Customization */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.btn-atrai-primary {
    background-color: var(--atrai-purple);
    border-color: var(--atrai-purple);
    color: white;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
}

.btn-atrai-primary:hover {
    background-color: var(--atrai-purple-dark);
    border-color: var(--atrai-purple-dark);
    color: white;
}

.btn-atrai-outline {
    color: var(--atrai-purple);
    border: 2px solid var(--atrai-purple);
    border-radius: 50px;
    padding: 6px 25px;
    font-weight: 600;
    background-color: transparent;
}

.btn-atrai-outline:hover {
    background-color: var(--atrai-purple);
    color: white;
}
