/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Michroma&family=Rajdhani:wght@500;600;700&display=swap');

/* CSS Variables for Light Digital Studio Theme */
:root {
    /* Outer Background */
    --bg-outer: #596B7D;
    
    /* Inner App Container */
    --bg-inner: #E6EEF5;
    
    /* Colors */
    --text-dark: #1A2530;
    --text-muted: #5A6A7D;
    --primary-cyan: #00D2FF;
    --secondary-green: #3A7BD5;
    --dark-button: #445465;
    --dark-button-hover: #313d4a;
    
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Michroma', sans-serif;
    --font-heading-alt: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
body {
    background-color: var(--bg-outer);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

.font-heading { font-family: var(--font-heading-alt); }
.text-cyan { color: var(--primary-cyan) !important; }
.bg-light-blue { background-color: rgba(0, 210, 255, 0.1); }
.bg-cyan { background-color: var(--primary-cyan) !important; }
.border-cyan { border-color: var(--primary-cyan) !important; }
.border-light { border-color: rgba(0,0,0,0.05) !important; }
.fs-7 { font-size: 0.85rem; }

/* The Unique App Wrapper (Matches Image Layout) */
.app-wrapper {
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-container {
    background-color: var(--bg-inner);
    border-radius: 40px;
    width: 100%;
    max-width: 1400px;
    min-height: 90vh;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Typography specifics */
.logo-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    text-shadow: 0 4px 10px rgba(26, 37, 48, 0.1);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
}

/* Navbar */
.nav-pills-custom {
    display: flex;
    gap: 0.5rem;
}

.nav-pills-custom .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-pills-custom .nav-link:hover {
    color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.03);
}

.nav-pills-custom .nav-link.active {
    background-color: var(--text-dark);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    min-height: 500px;
}

.hero-ai-img {
    height: 110%;
    object-fit: contain;
    object-position: bottom right;
    transform: translateY(20px);
    filter: drop-shadow(-10px 0px 30px rgba(0, 210, 255, 0.2));
}

/* Follow Widget */
.follow-widget {
    z-index: 10;
}

.follow-circle-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-cyan));
    opacity: 0.4;
    filter: blur(20px);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hover-cyan:hover {
    color: var(--primary-cyan) !important;
}

/* Buttons */
.btn-dark-custom {
    background-color: var(--dark-button);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background-color: var(--dark-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Cards & Sections */
.section-light {
    position: relative;
    z-index: 2;
}

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: rgba(0, 210, 255, 0.3) !important;
}

.premium-card:hover {
    border-color: var(--primary-cyan) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.service-glow {
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    filter: blur(30px);
}

/* Custom Accordion */
.custom-accordion .accordion-button {
    transition: all 0.3s;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-cyan);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .app-wrapper {
        padding: 0;
    }
    
    .app-container {
        border-radius: 0;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ai-img-mobile {
        max-width: 90%;
        filter: drop-shadow(0px 10px 20px rgba(0, 210, 255, 0.3));
    }
}
