/* Chanex World - Digital Marketing Agency Theme */

:root {
    /* Brand Colors - Vibrant & Professional */
    --primary-color: #6C63FF; /* Electric Violet */
    --primary-gradient: linear-gradient(135deg, #6C63FF 0%, #FF0055 100%);
    --secondary-color: #00E676; /* Bright Green accent */
    --accent-color: #FF0055;
    
    /* Dark Theme Backgrounds */
    --bg-body: #050505;
    --bg-surface: #121212;
    --bg-surface-2: #1A1A1A;
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --text-light: #e0e0e0;
    
    /* Shadows & Effects */
    --glow-primary: 0 0 20px rgba(108, 99, 255, 0.4);
    --glow-accent: 0 0 20px rgba(255, 0, 85, 0.4);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(108, 99, 255, 0.3);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: var(--bg-glass);
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

/* Hero Section */
.hero-section-new {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background : radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 40%),
                 radial-gradient(circle at 90% 80%, rgba(255, 0, 85, 0.1) 0%, transparent 40%);
}

.hero-content-new {
    position: relative;
    z-index: 2;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title-new {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-new {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
}

.btn-primary-new {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--glow-primary);
    border: none;
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.6);
}

.btn-secondary-new {
    background: var(--bg-surface);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: var(--glass-border);
}

.btn-secondary-new:hover {
    background: var(--bg-surface-2);
    transform: translateY(-3px);
}

/* Floating Elements Animation in Hero */
.hero-visual-new {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
    max-width: 250px;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 10%; right: 10%; animation-delay: 0s; }
.element-2 { bottom: 20%; left: 0%; animation-delay: 2s; }
.element-3 { top: 40%; left: -5%; animation-delay: 4s; }
.element-4 { bottom: 10%; right: 15%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.element-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-surface-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

/* Sections */
.section-new {
    padding: 100px 0;
}

.section-header-new {
    margin-bottom: 60px;
}

.section-badge-new {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title-new {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle-new {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-section-new {
    background: var(--bg-surface);
}

.service-card-new {
    background: var(--bg-surface-2);
    padding: 40px;
    border-radius: 24px;
    border: var(--glass-border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon-new {
    width: 60px;
    height: 60px;
    background: var(--bg-body);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.service-card-new h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card-new p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-list-new {
    list-style: none;
    padding: 0;
}

.service-list-new li {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list-new li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Portfolio */
.portfolio-card-new {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-surface);
    border: var(--glass-border);
}

.portfolio-image-new {
    height: 250px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay-new {
    position: absolute;
    inset: 0;
    background: rgba(108, 99, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card-new:hover .portfolio-overlay-new {
    opacity: 1;
}

.portfolio-content-new {
    padding: 30px;
}

.portfolio-tech-new .tech-chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-right: 8px;
    margin-top: 10px;
}

/* Contact Page Specifics */
.contact-hero-section {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.15), transparent 70%);
}

.contact-hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-container {
    background: var(--bg-surface);
    border-radius: 30px;
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.contact-info-card {
    background: var(--primary-gradient);
    padding: 60px;
    height: 100%;
    color: white;
}

.contact-info-card h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info-description {
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p a {
    color: white;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.4);
}

.contact-form-card {
    padding: 60px;
}

.form-control {
    background: var(--bg-body);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
}

.form-control:focus {
    background: var(--bg-body);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    color: white;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
}

/* Footer */
.footer-new {
    background: #000;
    padding: 80px 0 30px;
    border-top: var(--glass-border);
}

.footer-brand-new h3 {
    font-size: 1.5rem;
    margin: 20px 0;
}

.footer-links-new {
    list-style: none;
    padding: 0;
}

.footer-links-new li {
    margin-bottom: 12px;
}

.footer-links-new a {
    color: var(--text-muted);
}

.footer-links-new a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
}
