/* ========== SECTIONS ULTRA PREMIUM ========== */
.section-padding {
    padding: 120px 0;
    position: relative;
}

.section-soft {
    background: 
        radial-gradient(ellipse at top, rgba(200, 155, 60, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(26, 15, 8, 0.4) 0%, transparent 60%),
        linear-gradient(180deg, 
            rgba(10, 8, 8, 0.9) 0%, 
            rgba(26, 15, 8, 0.95) 50%, 
            rgba(10, 8, 8, 0.9) 100%);
    position: relative;
}

.section-soft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 10%,
        var(--gold-light) 50%,
        var(--gold) 90%,
        transparent 100%);
    animation: topBorderPulse 4s ease-in-out infinite;
}

@keyframes topBorderPulse {
    0%, 100% { 
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(200, 155, 60, 0.3);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 30px rgba(200, 155, 60, 0.8);
    }
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-tag {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: transparent;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--gold-light) 25%,
        #ffffff 50%,
        var(--gold-light) 75%,
        #ffffff 100%);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sectionTitleGradient 8s ease infinite;
    text-shadow: 
        0 0 60px rgba(200, 155, 60, 0.5),
        0 8px 30px rgba(0, 0, 0, 0.4);
}

@keyframes sectionTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        var(--gold-light), 
        var(--gold), 
        transparent);
    border-radius: 2px;
    animation: underlineWave 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.6);
}

@keyframes underlineWave {
    0%, 100% { 
        width: 120px;
        opacity: 0.6;
    }
    50% { 
        width: 180px;
        opacity: 1;
    }
}

/* ========== CARDS ULTRA PREMIUM ========== */
.card-value {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.7) 0%, 
        rgba(26, 15, 8, 0.5) 50%,
        rgba(26, 15, 8, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 42px 36px;
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(200, 155, 60, 0.2);
    border: 2px solid rgba(200, 155, 60, 0.25);
    height: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-value::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        var(--gold) 100%);
    background-size: 400% 100%;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    animation: borderGradientFlow 4s ease infinite;
}

@keyframes borderGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card-value:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(200, 155, 60, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(200, 155, 60, 0.4);
    border-color: var(--gold);
}

.card-value:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(200, 155, 60, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(200, 155, 60, 0.3);
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.card-value:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.5);
}

.card-value h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 20px rgba(200, 155, 60, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-value p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(247, 241, 232, 0.85);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ========== STORY BADGE ========== */
.story-badge {
    border-radius: 32px;
    padding: 45px 40px;
    border: 3px dashed rgba(200, 155, 60, 0.5);
    background: 
        linear-gradient(135deg, 
            rgba(26, 15, 8, 0.8), 
            rgba(26, 15, 8, 0.6));
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(200, 155, 60, 0.2),
        inset 0 1px 0 rgba(200, 155, 60, 0.3);
    display: inline-block;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-badge:hover {
    transform: scale(1.08) rotate(-2deg);
    border-style: solid;
    border-color: var(--gold);
    box-shadow: 
        0 30px 90px rgba(200, 155, 60, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(200, 155, 60, 0.5);
}

.story-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(247, 241, 232, 0.7);
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-badge strong {
    display: block;
    margin-top: 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 
        0 0 30px rgba(200, 155, 60, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.badge-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 32px;
    background: linear-gradient(45deg, transparent 30%, rgba(200, 155, 60, 0.1) 50%, transparent 70%);
    animation: badgeShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========== SERVICE CARDS ========== */
.card-service {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.75) 0%, 
        rgba(26, 15, 8, 0.55) 50%,
        rgba(26, 15, 8, 0.75) 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 42px 36px;
    border: 2px solid rgba(200, 155, 60, 0.25);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.4);
    height: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-service:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 90px rgba(200, 155, 60, 0.4),
        0 15px 50px rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
}

.service-number {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(200, 155, 60, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.card-service:hover .service-number {
    color: rgba(200, 155, 60, 0.2);
    transform: scale(1.1);
}

.card-service h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    text-shadow: 
        0 0 20px rgba(200, 155, 60, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-service h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.5);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-service:hover h3::after {
    width: 100px;
}

.card-service p {
    color: rgba(247, 241, 232, 0.85);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 20px;
    line-height: 1.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.card-service ul {
    padding-left: 0;
    margin: 0;
    color: rgba(247, 241, 232, 0.9);
    font-size: clamp(0.85rem, 2vw, 0.98rem);
    line-height: 2;
    list-style: none;
}

.card-service ul li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.card-service ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(200, 155, 60, 0.8);
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

/* ========== STRUCTURE CARDS ========== */
.card-structure {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.7) 0%, 
        rgba(26, 15, 8, 0.5) 50%,
        rgba(26, 15, 8, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 36px 28px;
    border: 2px solid rgba(200, 155, 60, 0.2);
    box-shadow: 
        0 12px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(200, 155, 60, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-structure:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 
        0 20px 70px rgba(200, 155, 60, 0.35),
        0 10px 40px rgba(0, 0, 0, 0.6);
}

.structure-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(200, 155, 60, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(200, 155, 60, 0.3);
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.card-structure:hover .structure-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.5);
}

.card-structure h4 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
}

.card-structure p {
    color: rgba(247, 241, 232, 0.8);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.8;
    margin: 0;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: linear-gradient(135deg, 
        rgba(200, 155, 60, 0.15) 0%, 
        rgba(200, 155, 60, 0.05) 100%);
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 24px;
    padding: 32px 40px;
    text-align: center;
    box-shadow: 
        0 10px 50px rgba(200, 155, 60, 0.2),
        inset 0 1px 0 rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.highlight-box svg {
    color: var(--gold-light);
    flex-shrink: 0;
}

.highlight-box p {
    color: rgba(247, 241, 232, 0.9);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    margin: 0;
}

.highlight-box strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* ========== OFFER & DOWNLOAD CARDS ========== */
.offer-card {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.8) 0%, 
        rgba(26, 15, 8, 0.6) 100%);
}

.download-card {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.75) 0%, 
        rgba(26, 15, 8, 0.55) 50%,
        rgba(26, 15, 8, 0.75) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 35px;
    border: 2px solid rgba(200, 155, 60, 0.25);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 
        0 25px 80px rgba(200, 155, 60, 0.35),
        0 10px 40px rgba(0, 0, 0, 0.6);
}

.download-card svg {
    color: var(--gold-light);
    margin-bottom: 20px;
}

.download-card h4 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.download-card p {
    color: rgba(247, 241, 232, 0.8);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(200, 155, 60, 0.1));
    border: 2px solid rgba(200, 155, 60, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.btn-download:hover {
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.35), rgba(200, 155, 60, 0.25));
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.4);
    color: #fff;
}

/* ========== CONTACT SECTION ========== */
.contact-info-card {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.7) 0%, 
        rgba(26, 15, 8, 0.5) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px;
    border: 2px solid rgba(200, 155, 60, 0.2);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.contact-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(200, 155, 60, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(200, 155, 60, 0.15);
    transition: var(--transition-smooth);
}

.contact-list li:hover {
    background: rgba(200, 155, 60, 0.1);
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateX(5px);
}

.contact-list li svg {
    color: var(--gold-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-list li strong {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-list li span {
    color: rgba(247, 241, 232, 0.85);
    font-size: 0.95rem;
}

.contact-form {
    background: linear-gradient(135deg, 
        rgba(26, 15, 8, 0.6), 
        rgba(26, 15, 8, 0.4));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px;
    border: 2px solid rgba(200, 155, 60, 0.2);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(200, 155, 60, 0.15);
}

.contact-form .form-label {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-control {
    background: rgba(10, 8, 8, 0.6);
    border: 2px solid rgba(200, 155, 60, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    color: rgba(247, 241, 232, 0.9);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
    font-family: inherit;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15), 0 0 20px rgba(200, 155, 60, 0.4);
    background: rgba(10, 8, 8, 0.8);
}

.contact-form .form-control::placeholder {
    color: rgba(247, 241, 232, 0.4);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form .mb-3 {
    margin-bottom: 24px;
}

.contact-form .w-100 {
    width: 100%;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(200, 155, 60, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 160px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(200, 155, 60, 0.4));
}

.footer-logo p {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(247, 241, 232, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 155, 60, 0.15);
}

.footer-bottom p {
    color: rgba(247, 241, 232, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: rgba(200, 155, 60, 0.25);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 50px rgba(200, 155, 60, 0.8), 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* ========== NEWS & MISC ========== */
.imgDeniBreakOrganigramma {
    border: solid 1px;
    border-radius: 20px;
    background-color: rgba(200, 155, 60, 0.2);
}

#news {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.navNews {
    display: flex;
    justify-content: start;
}

.contImgInstagram {
    display: flex;
    justify-content: center;
}

.contImgNews {
    display: flex;
    justify-content: space-between;
    width: 45%;
}

.imgNews {
    width: 50%;
}
