/* ========================================
   SIFLY GIFTS - DIGITAL MARKETING THEME
   Modern, Vibrant, Professional
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-bg-main: #0a0e17;
    /* Very dark blue/black */
    --color-bg-secondary: #0f1623;
    /* Slightly lighter for cards */
    --color-primary: #3b82f6;
    /* Bright Blue */
    --color-secondary: #8b5cf6;
    /* Violet */
    --color-accent: #f43f5e;
    /* Rose/Red for highlights */
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;

    --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-text: linear-gradient(to right, #60a5fa, #c084fc);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* UI Elements */
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Background Abstract Elements */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    left: -100px;
    animation: drift 20s infinite alternate;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -100px;
    right: -100px;
    animation: drift 15s infinite alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 30px);
    }
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    backdrop-filter: blur(15px);
    background: rgba(10, 14, 23, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    color: var(--color-text-main);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-muted) !important;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.btn-nav {
    background: var(--gradient-main);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
}

.hero-supertext {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.hero-title .highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.btn-primary-custom {
    background: white;
    color: var(--color-bg-main);
    border: none;
}

.btn-primary-custom:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Services */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card {
    background: var(--color-bg-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* About / Stats */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--color-bg-main), var(--color-bg-secondary));
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Contact Page Specifics */
.contact-header {
    text-align: center;
    padding: 150px 0 60px;
}

.contact-form-wrapper {
    background: var(--color-bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    box-shadow: none;
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-main);
    border: none;
    padding: 1rem;
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    transition: filter 0.2s;
}

.btn-submit:hover {
    filter: brightness(1.2);
}

.contact-info-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-info-link:hover {
    text-decoration: underline;
    color: var(--color-secondary);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }
}