/* Premium Styling for Paliuk Light */

:root {
    --bg-color: #05050a;
    --card-bg: rgba(15, 15, 30, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(0, 210, 255, 0.3);
    
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.4);
    --secondary: #8a2be2;
    --secondary-glow: rgba(138, 43, 226, 0.4);
    
    --text-color: #f3f3f6;
    --text-muted: #a0a0b5;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Glowing Blurs */
.glow-bg-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.glow-bg-2 {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 24px 0;
    backdrop-filter: blur(12px);
    background-color: rgba(5, 5, 10, 0.7);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
    color: #020205;
    box-shadow: 0 8px 25px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}

.btn-insta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 39, 67, 0.5);
    filter: brightness(1.1);
}

.btn-block {
    display: flex;
    width: 100%;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
    transition: var(--transition);
}

.phone-btn:hover {
    background-color: var(--primary);
    color: #020205;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: scale(1.03);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 210, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tag {
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 100px;
    background-color: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 65%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}

/* Micro-animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Instagram Counter Section */
.instagram-section {
    padding: 60px 0;
}

.instagram-card {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-color: rgba(220, 39, 67, 0.15);
}

.instagram-card:hover {
    border-color: rgba(220, 39, 67, 0.4);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.08);
}

.insta-logo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}

.insta-icon {
    font-size: 40px;
    color: #fff;
}

.insta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.insta-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 450px;
}

.counter-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 16px 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.counter-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-icon {
    font-size: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
}

.service-desc {
    color: var(--text-muted);
    font-size: 15px;
}

/* Contacts Section */
.contacts-section {
    padding: 80px 0 120px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-desc {
    font-size: 16px;
    color: var(--text-muted);
}

.contact-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-highlight {
    color: var(--primary) !important;
    font-weight: 600;
}

.contact-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    text-shadow: 0 0 15px var(--primary-glow);
}

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-color: rgba(138, 43, 226, 0.2);
}

.promo-card:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.08);
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
}

.promo-desc {
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    background-color: rgba(2, 2, 5, 0.8);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.developer {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Grid adjustments */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-tag {
        align-self: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
