html {
    scroll-behavior: smooth;
}
:root {
    --bg-color: #1a0536;
    --gold: #d4af37;
    --gold-hover: #f3cf55;
    --text-main: #ffffff;
    --text-secondary: #cccccc;
    --font-main: 'Arial', sans-serif;
}

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

body {
    position: relative;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(58, 18, 110, 0.85) 0%, rgba(26, 5, 54, 0.96) 70%);
    z-index: -1;
    pointer-events: none; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: block;
    text-decoration: none;
}

.site-logo {
    height: 70px;
    width: auto;
    display: block;
}

.header-contact {
    display: none;
}

.header-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.header-contact a:hover {
    background: var(--gold);
    color: var(--bg-color);
}

@media(min-width: 600px) {
    .header-contact { display: block; }
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: #1a0536;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.features {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.icon {
    font-size: 50px;
    margin-bottom: 25px;
    display: block;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.icon-image {
    height: 55px;
    width: auto;
    display: block;
    margin: 0 auto 25px auto;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: bold;
}

.feature-card p { color: var(--text-secondary); }

.contact-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.form-box {
    background: rgba(26, 5, 54, 0.8);
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    border: none;
    color: #1a0536;
    font-weight: 800;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 40px;
}

footer span { color: var(--gold); font-weight: bold; }

@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .form-box { padding: 30px 20px; }
    .site-logo { height: 50px; } 
    header { flex-direction: column; gap: 15px; }
    .header-contact { display: block; text-align: center; }
}
.bg-collage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 0;
    
    opacity: 0.6;
    filter: grayscale(80%) contrast(120%);
}

.bg-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.side-decor {
    position: absolute;
    top: 0;
    width: 250px;
    z-index: -2;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.left-side {
    left: 0;
}

.right-side {
    right: 0;
}

.side-decor img {
    width: 200px;
    height: 200px;
    
    object-fit: contain;
    
    display: block;
    margin-bottom: -60px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.side-decor img:hover {
    transform: scale(1.2) rotate(0deg) !important;
    z-index: 10;
}

.side-decor img:nth-child(odd) {
    transform: rotate(-15deg) translateX(-20px);
}

.side-decor img:nth-child(even) {
    transform: rotate(15deg) translateX(20px);
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        90deg, 
        rgba(26, 5, 54, 0.2) 0%,
        rgba(26, 5, 54, 0.95) 20%,
        rgba(26, 5, 54, 0.95) 80%,
        rgba(26, 5, 54, 0.2) 100%
    );
    pointer-events: none;
}

@media (max-width: 1200px) {
    .side-decor {
        opacity: 0.15;
        width: 150px;
    }
    .background-glow {
        background: rgba(26, 5, 54, 0.9);
    }
}
.side-decor {
    position: absolute;
    top: 0;
    width: 220px;
    z-index: -2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    
    padding-top: 50px;
    padding-bottom: 50px;
}

.left-side {
    left: 20px;
}

.right-side {
    right: 20px;
}

.side-decor img {
    width: 160px;
    height: 160px;
    object-fit: contain; 
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.side-decor img:hover {
    transform: scale(1.1);
    z-index: 10;
}

@media (max-width: 1400px) {
    .side-decor {
        width: 150px;
    }
    .side-decor img {
        width: 100px;
        height: 100px;
    }
    .left-side { left: 0; }
    .right-side { right: 0; }
}

@media (max-width: 768px) {
    .side-decor {
        display: none;
    }
}
.side-decor {
    position: absolute;
    top: 0;
    height: 100%;
    width: 280px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    
    padding-top: 20px;
    padding-bottom: 100px;
    overflow: visible;
}

.left-side {
    left: 0;
}

.right-side {
    right: 0;
}

.side-decor img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}
.side-decor img:hover {
    transform: scale(1.15);
    z-index: 10;
}
@media (max-width: 1400px) {
    .side-decor { width: 180px; }
    .side-decor img { width: 160px; height: 160px; }
}

@media (max-width: 1024px) {
    .side-decor { display: none; }
}
.social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.social-btn {
    display: flex;
    align-items: center;
    background: rgba(26, 5, 54, 0.9);
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    padding: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), background 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.social-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.btn-text {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s, transform 0.3s;
    font-weight: bold;
    font-size: 16px;
    padding-right: 25px;
    text-transform: uppercase;
    color: #fff;
}

.social-btn:hover {
    width: 180px;
    background: var(--gold);
}

.social-btn:hover svg {
    fill: #1a0536;
    transform: scale(1.1);
}

.social-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
    color: #1a0536;
    transition-delay: 0.1s;
}

@media (max-width: 768px) {
    .social-widget {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
    }

    .social-btn svg {
        width: 24px;
        height: 24px;
    }
    .social-btn:active {
        width: 160px;
        background: var(--gold);
    }
}