/* Schedury Modern Redesign Styles */
:root {
    --primary-color: #00BCFF;
    --primary-dark: #009BD1;
    --secondary-color: #002D5B;
    --accent-color: #00FFCC;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.custom-fonts {
    font-family: 'Outfit', sans-serif !important;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 160px;
    background: radial-gradient(circle at top right, rgba(0, 188, 255, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(0, 45, 91, 0.05), transparent);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 188, 255, 0.2);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 204, 0.15);
    bottom: -50px;
    left: -50px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.btn-schedury {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 188, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-schedury:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 188, 255, 0.4);
    color: var(--white);
}

/* Section Header */
.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
}