/* 
Theme: Cinematic Dark
Colors: Deep Black (#080808), Charcoal Surface (#121212), Neon Cyan (#00E5FF), Cinematic Pink/Red (#FF2A54), Pure White (#FFFFFF)
*/

:root {
    --bg-black: #080808;
    --bg-charcoal: #121212;
    --bg-charcoal-light: #1a1a1a;
    --accent-cyan: #00E5FF;
    --accent-pink: #FF2A54;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 220ms cubic-bezier(.2, .8, .2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Header & Glassmorphism */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

header .logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header .logo a span {
    color: var(--accent-cyan);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-pink);
    transition: var(--transition-smooth);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.contact-phone:hover {
    color: var(--accent-pink);
}

/* Base Card Global Hover Rule */
.card {
    background: var(--bg-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: var(--bg-charcoal-light);
    transform: translateY(-6px);
    border: 1px solid var(--accent-pink);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.1);
}

.card-arsenal:hover {
    border-color: #4B2A6B !important;
    /* Slightly lighter purple for border */
    box-shadow: 0 12px 40px rgba(31, 15, 46, 0.8) !important;
}

.card .icon {
    font-size: 2.5rem;
    transition: var(--transition-smooth);
    color: var(--text-white);
    margin-bottom: 20px;
}

.card:hover .icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.card:hover * {
    color: var(--text-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-black);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    background: #00e6ffea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-outline:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 42, 84, 0.2);
    transform: translateY(-3px);
}

/* Slide Right Hover Effect */
.btn-slide-right {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-out;
}

.btn-slide-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #25D366;
    /* WhatsApp default slide color, can be overridden */
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-slide-right:hover::before {
    left: 0;
}

.btn-slide-right:hover {
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-preset-q:hover {
    background: rgba(0, 229, 255, 0.1) !important;
    border-color: var(--accent-cyan) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-slide-right i {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease-out;
}

/* Social Icons */
.social-icons a {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icons a.icon-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.social-icons a.icon-instagram:hover {
    background: #E1306C;
    color: #fff;
    border-color: #E1306C;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.social-icons a.icon-fiverr:hover {
    background: #1dbf73;
    color: #fff;
    border-color: #1dbf73;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(29, 191, 115, 0.5);
}

.social-icons a.icon-upwork:hover {
    background: #14a800;
    color: #fff;
    border-color: #14a800;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(20, 168, 0, 0.5);
}

.social-icons a.icon-custom:hover {
    background: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: var(--bg-charcoal);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-pink);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-in.appear {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}