/* ========== VARIABLES ULTRA PREMIUM ========== */
:root {
    --cream: #f7f1e8;
    --cream-soft: #fbf6ee;
    --cream-dark: #ede3d5;
    --coffee: #4a2b19;
    --coffee-dark: #2e1b10;
    --coffee-darker: #1a0f08;
    --gold: #c89b3c;
    --gold-light: #d4a959;
    --gold-dark: #b08532;
    --text-main: #3b3430;
    --text-soft: #6a5a4b;
    --border-soft: #e2d4c4;
    --container-padding: 7vw;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, #0a0808 0%, #1a0f08 25%, #0f0a08 50%, #1a0f08 75%, #0a0808 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

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

/* ========== ANIMATED BACKGROUND LAYERS ========== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 155, 60, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 43, 25, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(26, 15, 8, 0.25) 0%, transparent 50%);
    animation: backgroundFloat 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% { 
        transform: translate(5%, -5%) rotate(5deg);
        opacity: 1;
    }
    66% { 
        transform: translate(-5%, 5%) rotate(-5deg);
        opacity: 0.8;
    }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, 
            rgba(200, 155, 60, 0.02) 0px,
            transparent 2px,
            transparent 80px,
            rgba(200, 155, 60, 0.02) 82px),
        repeating-linear-gradient(90deg,
            rgba(200, 155, 60, 0.02) 0px,
            transparent 2px,
            transparent 80px,
            rgba(200, 155, 60, 0.02) 82px);
    pointer-events: none;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}



.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;  !important
}

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

}

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

.imgNews{
    width: 50%;
}

/* ========== CONTAINER SYSTEM ========== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========== MODAL SYSTEM ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-custom {
    background: linear-gradient(135deg, rgba(26, 15, 8, 0.95), rgba(10, 8, 8, 0.98));
    border-radius: 32px;
    padding: 50px 45px;
    max-width: 480px;
    width: 100%;
    border: 2px solid rgba(200, 155, 60, 0.3);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(200, 155, 60, 0.1),
        inset 0 1px 0 rgba(200, 155, 60, 0.2);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content-custom {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(200, 155, 60, 0.1);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    background: rgba(200, 155, 60, 0.25);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
}

.modal-header-custom {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header-custom h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(200, 155, 60, 0.4);
}

.modal-header-custom p {
    color: rgba(247, 241, 232, 0.7);
    font-size: 0.95rem;
}

/* ========== AUTH FORMS ========== */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-custom label {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group-custom input {
    background: rgba(10, 8, 8, 0.7);
    border: 2px solid rgba(200, 155, 60, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    color: rgba(247, 241, 232, 0.95);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group-custom input: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.3);
    background: rgba(10, 8, 8, 0.9);
}

.form-group-custom input::placeholder {
    color: rgba(247, 241, 232, 0.4);
}

.form-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
    min-height: 20px;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-custom input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.form-check-custom label {
    color: rgba(247, 241, 232, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-auth {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 40px rgba(200, 155, 60, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.btn-auth:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(200, 155, 60, 0.8), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-auth:active {
    transform: translateY(-1px) scale(1);
}

.auth-links {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: rgba(247, 241, 232, 0.7);
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.auth-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(200, 155, 60, 0.6);
}

.text-gold {
    color: var(--gold-light);
}

/* ========== SUCCESS TOAST ========== */
.success-toast {
    position: fixed;
    top: 100px;
    right: -100px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95), rgba(56, 142, 60, 0.95));
    color: white;
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 175, 80, 0.3);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transform: translateX(500px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-toast.show {
    transform: translateX(-100);
}

.success-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ========== NAVBAR ULTRA PREMIUM ========== */
.navbar-deni {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px var(--container-padding);
    background: rgba(10, 8, 8, 0.85);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 155, 60, 0.25);
    transition: var(--transition-smooth);
    animation: navSlideDown 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(200, 155, 60, 0.1);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-deni::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 155, 60, 0.15) 50%, 
        transparent 100%);
    animation: navShine 4s ease-in-out infinite;
}

@keyframes navShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.navbar-deni .logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.navbar-deni .logo img {
    width: 140px;
    height: auto;
    transition: var(--transition-smooth);
    filter: 
        drop-shadow(0 0 20px rgba(200, 155, 60, 0.6))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
        filter: 
            drop-shadow(0 0 20px rgba(200, 155, 60, 0.6))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    }
    50% { 
        transform: translateY(-3px);
        filter: 
            drop-shadow(0 0 30px rgba(200, 155, 60, 1))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    }
}

.navbar-deni .logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: 
        drop-shadow(0 0 40px rgba(200, 155, 60, 1))
        drop-shadow(0 8px 25px rgba(0, 0, 0, 0.6));
}

.navbar-deni nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-deni nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.navbar-deni nav ul li {
    display: inline-block;
}

.navbar-deni nav ul li a {
    color: #f7f1e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 12px 20px;
    display: inline-block;
    transition: var(--transition-smooth);
    border-radius: 12px;
    overflow: hidden;
}

.navbar-deni nav ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(200, 155, 60, 0.2) 0%, 
        rgba(212, 169, 89, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.navbar-deni nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        var(--gold-light), 
        var(--gold), 
        transparent);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--gold);
}

.navbar-deni nav ul li a:hover::before,
.navbar-deni nav ul li a.active::before {
    opacity: 1;
}

.navbar-deni nav ul li a:hover::after,
.navbar-deni nav ul li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-deni nav ul li a:hover,
.navbar-deni nav ul li a.active {
    color: var(--gold-light);
    transform: translateY(-2px);
    text-shadow: 
        0 0 20px rgba(200, 155, 60, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========== NAV AUTH BUTTONS ========== */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    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);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.2);
}

.btn-nav-auth: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.5), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.user-menu {
    position: relative;
}

.btn-user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: rgba(200, 155, 60, 0.15);
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-user-menu:hover {
    background: rgba(200, 155, 60, 0.25);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.4);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(200, 155, 60, 0.5);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: linear-gradient(135deg, rgba(26, 15, 8, 0.98), rgba(10, 8, 8, 0.98));
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(247, 241, 232, 0.9);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(200, 155, 60, 0.15);
    color: var(--gold-light);
    transform: translateX(4px);
}

.dropdown-divider {
    height: 1px;
    background: rgba(200, 155, 60, 0.2);
    margin: 8px 0;
}

section {
    scroll-margin-top: 100px;
    position: relative;
    z-index: 2;
}

/* ========== HERO ULTRA PREMIUM ========== */
.hero {
    margin-top: 70px;
    padding: 180px 0 160px;
    background: 
        radial-gradient(ellipse at top, rgba(200, 155, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(26, 15, 8, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #1a0f08 0%, #0a0808 50%, #1a0f08 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.8);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg,
            rgba(200, 155, 60, 0.15) 60deg,
            transparent 120deg,
            rgba(200, 155, 60, 0.2) 180deg,
            transparent 240deg,
            rgba(200, 155, 60, 0.15) 300deg,
            transparent 360deg);
    animation: heroSpiral 40s linear infinite;
    pointer-events: none;
}

@keyframes heroSpiral {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-text {
    flex: 1;
    max-width: 580px;
    animation: fadeInLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--gold-light);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: 
        linear-gradient(135deg, 
            rgba(200, 155, 60, 0.25), 
            rgba(200, 155, 60, 0.1));
    border-radius: 50px;
    border: 2px solid var(--gold);
    margin-bottom: 28px;
    box-shadow: 
        0 0 30px rgba(200, 155, 60, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(200, 155, 60, 0.4),
            0 8px 25px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(200, 155, 60, 0.8),
            0 12px 35px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin: 0 0 12px;
    color: transparent;
    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;
    line-height: 1;
    letter-spacing: -0.03em;
    animation: heroTitleGradient 8s ease infinite;
    position: relative;
    text-shadow: 
        0 0 80px rgba(200, 155, 60, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.hero h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 0 0 32px;
    color: var(--gold-light);
    position: relative;
    display: inline-block;
    animation: subtitleFloat 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(200, 155, 60, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.5);
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 2;
    color: rgba(247, 241, 232, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 44px;
    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%;
    color: #000000;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 
        0 0 40px rgba(200, 155, 60, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 70%);
    animation: buttonShine 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.05);
    background-position: 100% 0;
    box-shadow: 
        0 0 80px rgba(200, 155, 60, 1),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-cta:active {
    transform: translateY(-3px) scale(1.02);
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    animation: fadeInRight 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: 
        drop-shadow(0 0 50px rgba(200, 155, 60, 0.9))
        drop-shadow(0 50px 100px rgba(0, 0, 0, 0.7));
    animation: beanFloat 7s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes beanFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-25px) rotate(-4deg) scale(1.05);
    }
    50% { 
        transform: translateY(-40px) rotate(0deg) scale(1.08);
    }
    75% { 
        transform: translateY(-25px) rotate(4deg) scale(1.05);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.orb.orb1 {
    width: 250px;
    height: 250px;
    background: rgba(200, 155, 60, 0.3);
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.orb.orb2 {
    width: 180px;
    height: 180px;
    background: rgba(74, 43, 25, 0.4);
    bottom: -60px;
    left: -60px;
    animation-delay: 2s;
}

.orb.orb3 {
    width: 200px;
    height: 200px;
    background: rgba(200, 155, 60, 0.25);
    top: 50%;
    left: -80px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.8;
    }
}

/* ========== 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;
    }
}

.lead {
    color: rgba(247, 241, 232, 0.85);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.text-center {
    text-align: center;
}

.max-600 {
    max-width: 600px;
}

.max-700 {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ========== GRID SYSTEM ========== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-12 {
    padding: 0 12px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.g-4 > * {
    padding: 12px;
}

.g-5 > * {
    padding: 20px;
}

.align-items-center {
    align-items: center;
}

/* ========== 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: var(--gold-light);
    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);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    :root {
        --container-padding: 5vw;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image-wrapper {
        margin: 0 auto;
        max-width: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .navbar-deni {
        padding: 16px var(--container-padding);
        flex-wrap: wrap;
        gap: 15px;
    }

    .navbar-deni nav {
        order: 3;
        width: 100%;
    }

    .navbar-deni nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .navbar-deni nav ul li a {
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 6vw;
    }

    .modal-content-custom {
        padding: 40px 30px;
    }

    .success-toast {
        right: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .hero {
        padding: 140px 0 120px;
        margin-top: 100px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }

    .col-md-3,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .card-value,
    .card-service,
    .card-structure {
        padding: 32px 28px;
    }

    .story-badge {
        padding: 35px 30px;
    }

    .download-card {
        padding: 35px 30px;
    }

    .highlight-box {
        padding: 28px 24px;
        flex-direction: column;
    }

    .contact-info-card,
    .contact-form {
        padding: 35px 28px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-links {
        gap: 30px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 5vw;
    }

    html {
        font-size: 15px;
    }

    .modal-content-custom {
        padding: 35px 25px;
    }

    .navbar-deni nav ul li a {
        padding: 8px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .btn-nav-auth {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hero {
        padding: 120px 0 100px;
        margin-top: 120px;
    }

    .hero-inner {
        gap: 30px;
    }

    .hero-image-wrapper {
        max-width: 250px;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 0.75rem;
        width: 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .row {
        margin: 0 -8px;
    }

    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-12,
    .col-lg-6 {
        padding: 0 8px;
        margin-bottom: 20px;
    }

    .g-4 > * {
        padding: 8px;
    }

    .g-5 > * {
        padding: 12px;
    }

    .card-value,
    .card-service,
    .card-structure {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .service-number {
        font-size: 4rem;
        top: 15px;
        right: 20px;
    }

    .story-badge {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .download-card {
        padding: 30px 24px;
    }

    .highlight-box {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-info-card,
    .contact-form {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .footer {
        padding: 50px 0 25px;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 14px;
    }

    .navbar-deni {
        padding: 16px 4vw;
    }

    .navbar-deni .logo img {
        width: 100px;
    }

    .modal-content-custom {
        padding: 30px 20px;
    }

    .hero {
        padding: 100px 0 80px;
        margin-top: 130px;
    }

    .hero-image-wrapper {
        max-width: 200px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .card-value,
    .card-service,
    .card-structure {
        padding: 24px 20px;
    }

    .story-badge {
        padding: 25px 20px;
    }

    .download-card {
        padding: 25px 20px;
    }

    .highlight-box {
        padding: 20px 16px;
    }

    .contact-info-card,
    .contact-form {
        padding: 25px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* ========== ACCESSIBILITY & PERFORMANCE ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    body::before,
    body::after,
    .hero::before,
    .hero-particles,
    .navbar-deni::before,
    .modal-overlay,
    .success-toast,
    .scroll-top,
    .nav-auth {
        display: none;
    }

    .navbar-deni {
        position: relative;
        background: #fff;
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }

    .btn-cta,
    .btn-auth,
    .btn-download {
        border: 2px solid #000;
        background: transparent;
        color: #000;
    }
}
