:root {
    --deep-purple: #483D8B;
    --midnight-blue: #191970;
    --rich-gold: #FFD700;
    --soft-white: #F5F5F5;
    --dark-bg: #0c0b10;
    --magenta-glow: #8B008B;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--soft-white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--rich-gold);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 { font-size: 3.5rem; text-align: center; }
h2 { font-size: 2.5rem; text-align: center; }
h3 { font-size: 1.8rem; text-align: center; }
h4 { font-size: 1.1rem; color: var(--soft-white); font-style: italic;}

p {
    margin-bottom: 20px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--rich-gold);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(12, 11, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rich-gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--soft-white);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--rich-gold);
    text-shadow: 0 0 10px var(--rich-gold);
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(12, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rich-gold);
    list-style: none;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--soft-white);
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--rich-gold);
    color: var(--dark-bg);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--soft-white);
    transition: all 0.3s ease-in-out;
}

.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.slider .slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    margin-top: 25px;
    background: var(--rich-gold);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--rich-gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--magenta-glow);
}

.cta-button:hover {
    background: transparent;
    color: var(--rich-gold);
    box-shadow: 0 0 25px var(--rich-gold);
}

.content-section {
    padding: 80px 0;
}

.alternate-bg {
    background-color: #111016;
}

.section-title {
    margin-bottom: 50px;
}

.content-image, .content-image-portrait {
    display: block;
    margin: 30px auto;
}

.two-columns {
    display: flex;
    align-items: center;
    gap: 40px;
}
.column-text { flex: 2; }
.column-image { flex: 1; text-align: center; }

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--deep-purple);
}
.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-cta-btn {
    padding: 12px 25px;
    color: var(--soft-white);
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--rich-gold);
}

.service-cta-btn:hover {
    transform: translateY(-3px);
}
.service-cta-btn.whatsapp { border-color: #25D366; }
.service-cta-btn.whatsapp:hover { box-shadow: 0 0 15px #25D366; }
.service-cta-btn.viber { border-color: #7360F2; }
.service-cta-btn.viber:hover { box-shadow: 0 0 15px #7360F2; }

.sub-service {
    margin: 30px 0;
    padding: 20px;
    background: rgba(72, 61, 139, 0.1);
    border-left: 4px solid var(--magenta-glow);
    border-radius: 4px;
}
.sub-service h4 { color: var(--soft-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #1a1920;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--magenta-glow);
}
.testimonial-card p { font-style: italic; margin-bottom: 15px; }
.testimonial-card h4 { text-align: right; font-weight: 600; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #1a1920;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--deep-purple);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--magenta-glow);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-content h3 { font-size: 1.4rem; }
.blog-card-content p { flex-grow: 1; }
.read-more { font-weight: 700; align-self: flex-start; }
.read-more:hover { text-decoration: underline; }

.contact-section { text-align: center; }
.contact-subtitle { max-width: 800px; margin: 0 auto 40px auto; }
.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin: 20px 0;
    color: var(--rich-gold);
    text-shadow: 0 0 10px var(--magenta-glow);
}

footer {
    padding: 20px 0;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--rich-gold);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        align-items: flex-start;
        padding: 1rem 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 0.5rem 0; width: 100%; }
    .nav-link { justify-content: flex-start; padding: 1rem 2rem; width: 100%; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: none;
        border: none;
        backdrop-filter: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
    }
    .nav-item.has-dropdown.active .dropdown-menu { display: block; }
    .nav-item.has-dropdown.active .dropdown-arrow { transform: rotate(180deg); }
    .dropdown-menu li a { background-color: rgba(72, 61, 139, 0.2); padding-left: 3rem; }

    .two-columns { flex-direction: column; }
    .column-image { margin-top: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}