:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --gray: #666;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: var(--dark);
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.logo img {
    max-width: 250px;
    height: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .logo img {
        max-width: 150px;
    }

    .nav-container .cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 6rem 2rem 2rem;
        backdrop-filter: blur(10px);
        z-index: 1000;
        justify-content: flex-start;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold);
    }

    .nav-menu::after {
        content: '';
        display: block;
        margin-top: 2rem;
    }

    .mobile-cta {
        display: block;
        background: linear-gradient(45deg, var(--gold), #f4d03f);
        color: var(--dark);
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 2rem;
        transition: all 0.3s ease;
    }

    .mobile-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .logo img {
        max-width: 200px;
    }

    .nav-container .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo img {
        max-width: 160px;
    }

    .nav-container {
        padding: 0 0.8rem;
    }

    .nav-menu {
        padding: 5rem 1rem 2rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(45deg, var(--gold), #f4d03f);
    color: var(--dark);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
    transition: transform 8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image-desktop {
    display: block;
    object-position: center center;
}

.hero-image-mobile {
    display: none;
    object-position: center top;
}

/* Tablet and Desktop */
@media (min-width: 769px) {
    .hero-image-desktop {
        display: block;
    }

    .hero-image-mobile {
        display: none;
    }

    .mobile-cta-container {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        object-position: center 20%;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(26, 26, 26, 0.3) 0%,
                rgba(26, 26, 26, 0.5) 40%,
                rgba(26, 26, 26, 0.8) 100%);
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 2rem;
        text-align: center;
        position: relative;
        z-index: 4;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 1),
            0 0 15px rgba(212, 175, 55, 0.4);
    }

    .slogan-part {
        font-size: 1.2rem;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 1),
            0 0 10px rgba(248, 248, 248, 0.2);
    }

    .hero .description {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-shadow:
            1px 1px 3px rgba(0, 0, 0, 1),
            0 0 8px rgba(248, 248, 248, 0.1);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-image-mobile {
        object-position: center 15%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .slogan-part {
        font-size: 1rem;
    }

    .hero .description {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 0.8rem;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .hero-image-mobile {
        object-position: center 10%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }

    .hero-content {
        margin-top: 1rem;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slogan-container {
        margin-bottom: 1rem;
    }

    .hero .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.1) 0%,
            rgba(45, 45, 45, 0.3) 50%,
            rgba(26, 26, 26, 0.8) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.slogan-container {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    margin-top: -20px;
}

.slogan-part {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--light);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slogan-part.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slogan-part.animate-1 {
    animation: sloganAppear 0.8s ease 2s forwards;
}

.slogan-part.animate-2 {
    animation: sloganAppear 0.8s ease 3s forwards;
}

.slogan-part.animate-3 {
    animation: sloganAppear 0.8s ease 4s forwards;
}

@keyframes sloganAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sloganFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.hero .description {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 4.5s forwards;
}

.hero .cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 5s forwards;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2rem;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 1s ease 5.5s forwards, bounce 2s ease 6.5s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .slogan-container {
        height: 2rem;
    }

    .slogan-part {
        font-size: 1.2rem;
    }

    .hero .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .slogan-part {
        font-size: 1rem;
    }

    .hero .description {
        font-size: 0.9rem;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    position: relative;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background: var(--gold);
    display: block;
    margin: 1rem auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--gold), #f4d03f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: translateY(-10px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(45deg, #2d2d2d, #3d3d3d);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 6 Free';
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.7;
}

.gallery-item:nth-child(1)::before {
    content: '\f001';
}

.gallery-item:nth-child(2)::before {
    content: '\f025';
}

.gallery-item:nth-child(3)::before {
    content: '\f004';
}

.gallery-item:nth-child(4)::before {
    content: '\f1e2';
}

.gallery-item:nth-child(5)::before {
    content: '\f51f';
}

.gallery-item:nth-child(6)::before {
    content: '\f0c3';
}

.video-container {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--gold), #f4d03f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-card p {
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(45, 45, 45, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    width: 50px;
}

.contact-item-content h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), #f4d03f);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.form-group .phone-hint {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0.8;
}

.form-group #phone {
    letter-spacing: 1px;
}

.form-group #phone.valid {
    border-color: #27ae60;
}

.form-group #phone.invalid {
    border-color: #e74c3c;
}

.whatsapp-item {
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-item .contact-item-content {
    width: 100%;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-btn {
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn i.fab.fa-whatsapp {
    color: #fff !important;
}

.contact-item.whatsapp-item {
    padding: 1.5rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-item.whatsapp-item:hover {
    transform: translateX(10px);
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(45, 45, 45, 0.8);
}

.phone-valid {
    border-color: #27ae60 !important;
}

.phone-invalid {
    border-color: #e74c3c !important;
}

.phone-format-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.phone-format-error.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .contact-item.whatsapp-item {
        padding: 1.2rem;
    }

    .contact-item.whatsapp-item:hover {
        transform: translateX(5px);
    }
}

.contact-item i.fab.fa-whatsapp {
    color: #25D366;
}

.contact-item i.fas.fa-phone {
    color: var(--gold);
}

.contact-item i.fas.fa-envelope {
    color: var(--gold);
}

.contact-item i.fas.fa-clock {
    color: var(--gold);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.contact-item.whatsapp-item i.fab.fa-whatsapp {
    animation: whatsappPulse 2s ease infinite;
}

.contact-item.whatsapp-item:hover i.fab.fa-whatsapp {
    animation: none;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer p {
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
        padding: 0 40px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.alert {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: 1px solid #229954;
}

.alert-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 1px solid #922b21;
}

.alert i {
    font-size: 1.2rem;
}

.alert-close {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #27ae60;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    display: block;
    text-align: right;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.char-counter.warning {
    color: #f39c12;
}

.char-counter.danger {
    color: #e74c3c;
}

#submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

#submit-btn.loading .spinner {
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.form-group .error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-group .error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-success {
    text-align: center;
    padding: 2rem;
    animation: bounceIn 0.8s ease;
}

.form-success i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .alert {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .alert-close {
        top: 0.3rem;
        right: 0.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
}

.download-offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.download-offer-btn:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

.download-offer-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.download-offer-btn i {
    font-size: 1.3rem;
    color: #c0392b;
}

.download-offer-btn:hover i {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .download-offer-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
    }

    .download-offer-btn i {
        font-size: 1.1rem;
    }
}

/* Service SVG Icons Styles */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-svg {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}

@media (max-width: 768px) {
    .service-svg {
        width: 60px;
        height: 60px;
    }
}

/* Gallery Section - Enhanced */
.gallery {
    background-color: #000000;
    padding: 80px 20px;
}

.gallery-subsection {
    margin-top: 60px;
}

.gallery-subsection:first-of-type {
    margin-top: 0;
}

.gallery-subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Photo Grid - 9 photos in 3x3 */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--gold);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: var(--gold);
    font-size: 2.5rem;
}

/* Video Section */
.video-section {
    margin-top: 80px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941E 100%);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.video-vertical {
    aspect-ratio: 9 / 16;
}

.video-landscape {
    aspect-ratio: 16 / 9;
    grid-column: 1 / -1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-item:hover .video-play-btn {
    transform: scale(1.15);
    background-color: #1a1a1a;
}

.video-play-btn i {
    color: var(--gold);
    font-size: 2rem;
    margin-left: 5px;
}

.video-landscape .video-play-btn {
    width: 100px;
    height: 100px;
}

.video-landscape .video-play-btn i {
    font-size: 2.5rem;
}

/* CTA Button */
.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

.gallery-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941E 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.gallery-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-vertical:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 15px;
    }

    .gallery .section-title {
        font-size: 2.2rem;
    }

    .gallery-subsection-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-vertical:last-child {
        grid-column: 1;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 1.5rem;
    }

    .video-landscape .video-play-btn {
        width: 80px;
        height: 80px;
    }

    .video-landscape .video-play-btn i {
        font-size: 2rem;
    }

    .gallery-cta-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery .section-title {
        font-size: 1.8rem;
    }

    .gallery-subsection-title {
        font-size: 1.4rem;
    }
}

/* Lightbox Styles - Complete with proper centering */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.8);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: auto;
    cursor: pointer;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--gold);
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.8);
    color: #000;
    transform: scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--gold);
}

/* Self-Hosted Video Gallery Styles - ADD to style.css */

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    cursor: pointer;
}

/* Force vertical video aspect ratio */
.video-vertical {
    aspect-ratio: 9 / 16;
}

.video-vertical video {
    object-fit: cover;
    object-position: center;
}

/* Hide video controls initially until loaded */
.video-item video:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Play overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: all;
}

.video-item.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-item.loading .video-play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Loading spinner */
.video-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: videoSpin 1s linear infinite;
    z-index: 3;
}

@keyframes videoSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Poster image styling */
.video-item video[poster] {
    background-size: cover;
    background-position: center;
}

/* Custom video controls overlay on hover */
.video-item:hover .video-play-overlay:not(.video-item.playing .video-play-overlay) {
    background: rgba(0, 0, 0, 0.5);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

/* Video control panel customization */
.video-item video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.video-item video::-webkit-media-controls-play-button,
.video-item video::-webkit-media-controls-current-time-display,
.video-item video::-webkit-media-controls-time-remaining-display {
    color: var(--gold);
}

/* Buffering indicator */
.video-item video::-webkit-media-controls-timeline {
    filter: hue-rotate(45deg);
}

/* Error state */
.video-item.error::before {
    content: 'Eroare la încărcarea video';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e74c3c;
    font-size: 1rem;
    text-align: center;
    z-index: 4;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 10px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .video-item video {
        object-fit: contain;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 1.8rem;
    }

    .video-item.loading::after {
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-vertical {
        aspect-ratio: 16 / 9;
    }
}

/* Preload animation for poster */
@keyframes posterFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-item video[poster] {
    animation: posterFade 0.5s ease;
}

/* Quality indicator badge (optional) */
.video-item::before {
    content: 'HD';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover::before {
    opacity: 1;
}