﻿/* Modern design for komfort page */

:root {
    --orange-primary: #003366;
    --orange-light: #004488;
    --orange-accent: #F59C00;
    --white: #FFFFFF;
    --grey-light: #F9F9F9;
    --grey-dark: #333333;
}

/* Animated Objects for Hero */
.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 8%;
    left: 5%;
    animation: floatCircle1 25s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: floatCircle2 28s ease-in-out infinite;
}

.circle-3 {
    width: 110px;
    height: 110px;
    bottom: 20%;
    left: 15%;
    animation: floatCircle3 22s ease-in-out infinite;
}

/* Animated squares */
.animated-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    z-index: 1;
    transform: rotate(45deg);
}

.square-1 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation: floatSquare1 26s ease-in-out infinite;
}

.square-2 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    right: 8%;
    animation: floatSquare2 30s ease-in-out infinite;
}

.square-3 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 25%;
    animation: floatSquare3 24s ease-in-out infinite;
}

/* Keyframes */
@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(30px, -25px) scale(1.12); opacity: 0.7; }
    50% { transform: translate(-20px, -40px) scale(0.95); opacity: 0.6; }
    75% { transform: translate(22px, -15px) scale(1.06); opacity: 0.65; }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.48; }
    30% { transform: translate(-35px, 32px) scale(1.16); opacity: 0.68; }
    60% { transform: translate(28px, -28px) scale(0.92); opacity: 0.58; }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.52; }
    35% { transform: translate(40px, 22px) scale(1.2); opacity: 0.72; }
    70% { transform: translate(-32px, -18px) scale(0.94); opacity: 0.62; }
}

@keyframes floatSquare1 {
    0%, 100% { transform: rotate(45deg) translate(0, 0) scale(1); opacity: 0.44; }
    33% { transform: rotate(58deg) translate(-30px, 35px) scale(1.14); opacity: 0.64; }
    66% { transform: rotate(38deg) translate(35px, -25px) scale(0.93); opacity: 0.54; }
}

@keyframes floatSquare2 {
    0%, 100% { transform: rotate(45deg) translate(0, 0) scale(1); opacity: 0.46; }
    35% { transform: rotate(60deg) translate(35px, -30px) scale(1.17); opacity: 0.66; }
    70% { transform: rotate(32deg) translate(-28px, 28px) scale(0.91); opacity: 0.56; }
}

@keyframes floatSquare3 {
    0%, 100% { transform: rotate(45deg) translate(0, 0) scale(1); opacity: 0.42; }
    38% { transform: rotate(55deg) translate(-25px, 30px) scale(1.13); opacity: 0.62; }
    76% { transform: rotate(35deg) translate(30px, -22px) scale(0.95); opacity: 0.52; }
}

/* Modern Content Sections */
.container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section */
.intro-modern {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.intro-modern h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-modern .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease;
}

.intro-text-box:hover {
    transform: translateY(-5px);
}

.intro-text-box h3 {
    color: var(--orange-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-text-box h3 i {
    font-size: 2rem;
    color: var(--orange-light);
}

.intro-text-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.intro-text-box ul {
    list-style: none;
    padding: 0;
}

.intro-text-box ul li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-text-box ul li::before {
    content: "✓";
    color: var(--orange-primary);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Features Section */
.features-modern {
    padding: 5rem 0;
    background: white;
}

.section-title-modern {
    text-align: center;
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.15);
    border-left-color: var(--orange-primary);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: rotate(360deg);
}

.feature-card-modern h3 {
    font-size: 1.4rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-modern p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Specifications Section */
.specs-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specs-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.12);
}

.spec-card-modern h3 {
    font-size: 1.5rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-card-modern h3 i {
    font-size: 1.8rem;
    color: var(--orange-light);
}

.spec-card-modern ul {
    list-style: none;
    padding: 0;
}

.spec-card-modern ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
}

.spec-card-modern ul li:last-child {
    border-bottom: none;
}

.spec-card-modern ul li strong {
    color: var(--orange-primary);
    display: block;
    margin-bottom: 0.3rem;
}

/* Benefits Grid */
.benefits-modern {
    padding: 5rem 0;
    background: white;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card-modern {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.12);
    border-color: var(--orange-light);
}

.benefit-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card-modern:hover .benefit-icon-modern {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

.benefit-card-modern h4 {
    font-size: 1.2rem;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card-modern p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-modern::before,
.cta-modern::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-modern::before {
    top: -100px;
    left: -100px;
}

.cta-modern::after {
    bottom: -100px;
    right: -100px;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
}

.cta-modern h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-modern p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-modern {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-btn-primary-modern {
    background: white;
    color: var(--orange-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary-modern:hover {
    background: white;
    color: var(--orange-primary);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .intro-modern h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .intro-modern,
    .features-modern,
    .specs-modern,
    .benefits-modern,
    .cta-modern {
        padding: 3rem 0;
    }
    
    .intro-modern h2,
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .features-grid-modern,
    .specs-grid-modern,
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-modern h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container-modern {
        padding: 0 1rem;
    }
    
    .intro-text-box {
        padding: 1.5rem;
    }
    
    .feature-card-modern,
    .spec-card-modern,
    .benefit-card-modern {
        padding: 1.5rem;
    }
}
