:root {
    --black-matte: #0D0D0D;
    --charcoal-grey: #1C1C1C;
    --gold-dark: #8f6104;
    --gold-medium: #CDA349;
    --gold-light: #E3C06F;
    --white-pure: #FFFFFF;
    --grey-light: #D9D9D9;
    --gold-gradient: linear-gradient(135deg, #B28A3A 0%, #E3C06F 100%);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-matte);
    color: var(--white-pure);
    overflow-x: hidden;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
}

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-bg-gradient {
    background: var(--gold-gradient);
}

/* Navigation */
.navbar {
    background: transparent !important;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    background: var(--black-matte) !important;
    box-shadow: 0 2px 20px rgba(178, 138, 58, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-light) !important;
}

.navbar-nav .nav-link {
    color: var(--white-pure) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light) !important;
    text-shadow: 0 0 10px rgba(178, 138, 58, 0.5);
}

.navbar-toggler {
    border: 1px solid var(--gold-light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23E3C06F' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.footer-logo,
.nav_logo {
    padding-top: .5rem;
    width: 160px;
    height: auto;
    object-fit: cover;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 13, 13, 0.4) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--grey-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: var(--black-matte);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(178, 138, 58, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}
.service-durability {
    color:#CDA349;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 138, 58, 0.5);
    color: var(--black-matte);
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: var(--charcoal-grey);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services {
    background: var(--black-matte);
}

.service-card {
    background: var(--charcoal-grey);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 40px rgba(178, 138, 58, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(178, 138, 58, 0.3);
}

/* Portfolio Section */
.portfolio {
    background: var(--charcoal-grey);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(178, 138, 58, 0.8), rgba(227, 192, 111, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Reviews Section */
.reviews {
    background: var(--black-matte);
}

.review-card {
    background: var(--charcoal-grey);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 0 1rem;
    border-left: 5px solid var(--gold-light);
    min-height: 25rem;
}

.review-stars {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-matte);
    font-weight: bold;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    background: var(--charcoal-grey);
}

.accordion-item {
    background: var(--black-matte);
    border: 1px solid var(--gold-dark);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--black-matte);
    color: var(--white-pure);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gold-dark);
    color: var(--black-matte);
}

.accordion-body {
    background: var(--charcoal-grey);
    color: var(--grey-light);
    /*color: #fff;*/
    position: relative;
    padding: 1.5rem;
}

/* Products Section */
.products {
    background: var(--charcoal-grey);
}

.product-card {
    background: var(--charcoal-grey);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 138, 58, 0.2);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black-matte);
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

/* Blog Section */
.blog {
    background: var(--black-matte);
}

.blog-card {
    background: var(--black-matte);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gold-dark), var(--charcoal-grey));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
}

.blog-content {
    padding: 1.5rem;
}

/* CTA Block */
.cta-block {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-block .overlay,
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-block h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

/* Footer */
.footer {
    background: var(--black-matte);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--gold-dark);
}

.social-icons a {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--white-pure);
    text-shadow: 0 0 15px rgba(178, 138, 58, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cta-block h2 {
        font-size: 2.2rem;
    }

    .service-card,
    .review-card {
        margin-bottom: 2rem;
    }
}

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}


/*auth*/

.form {
    background: rgba(28, 28, 28, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(178, 138, 58, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(178, 138, 58, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1;
}

.auth__title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.auth__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem auto;
}

.form__inputs {
    margin-bottom: 2rem;
}

.form__input {
    position: relative;
    margin-bottom: 1.5rem;
}

.form__input input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid rgba(178, 138, 58, 0.3);
    border-radius: 12px;
    color: var(--white-pure);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.form__input input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(178, 138, 58, 0.3);
    transform: translateY(-2px);
}

.form__input input::placeholder {
    color: var(--grey-light);
}

.form__input label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: var(--charcoal-grey);
    padding: 0 10px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.form__input input:focus + label {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(178, 138, 58, 0.5);
}

.btn-reset {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-link {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    color: var(--black-matte);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-link::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.5s;
    color: var(--black-matte);
}

.btn-link:hover::before {
    left: 100%;
    color: var(--black-matte);
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 138, 58, 0.4);
}

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

.auth__btn, .auth__verify-btn {
    margin-bottom: 1rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    border: none;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    color: #51cf66;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form {
    animation: fadeInUp 0.8s ease-out;
}

.form__input {
    animation: slideInRight 0.6s ease-out;
}

.form__input:nth-child(2) {
    animation-delay: 0.1s;
}

.auth__btn, .auth__verify-btn {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Logo/Brand Section */
.brand-logo {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.brand-logo i {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 20px rgba(178, 138, 58, 0.5);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    color: var(--grey-light);
    font-size: 0.9rem;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(178, 138, 58, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold-light);
    animation: spin 1s ease-in-out infinite;
}

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

/* Back to Home Link */
.back-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-home:hover {
    color: var(--white-pure);
    text-shadow: 0 0 10px rgba(178, 138, 58, 0.8);
}

.back-home i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .auth__title {
        font-size: 1.8rem;
    }

    .brand-logo i {
        font-size: 2.5rem;
    }

    .back-home {
        top: 1rem;
        left: 1rem;
    }
}

@media (max-width: 576px) {
    .form {
        padding: 1.5rem 1rem;
    }

    .auth__title {
        font-size: 1.6rem;
    }

    .btn-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Floating particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
}


/* Main 404 Content */
.error-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-number {
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(178, 138, 58, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.error-number::before {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.error-subtitle {
    font-size: 1.3rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.error-description {
    color: var(--grey-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Crown Icon */
.crown-icon {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 0 30px rgba(178, 138, 58, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

/* Buttons */
.error-actions {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-home, .btn-contact {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-home {
    background: var(--gold-gradient);
    color: var(--black-matte);
    box-shadow: 0 5px 20px rgba(178, 138, 58, 0.3);
}

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

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

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 138, 58, 0.5);
    color: var(--black-matte);
}

.btn-contact {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.btn-contact:hover {
    background: var(--gold-light);
    color: var(--black-matte);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 138, 58, 0.3);
}

/* Quick Links */
.quick-links {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.quick-links h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.quick-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(178, 138, 58, 0.5);
    transform: translateX(5px);
}

.quick-links i {
    margin-right: 0.5rem;
    color: var(--gold-light);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 70%;
    animation-delay: 3s;
}

/* Decorative Lines */
.decorative-line {
    width: 150px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 2rem auto;
    position: relative;
    animation: expandLine 1s ease-out 1.8s both;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-gradient);
    top: -4px;
}

.decorative-line::before {
    left: -15px;
}

.decorative-line::after {
    right: -15px;
}

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 40px rgba(178, 138, 58, 0.3);
    }
    100% {
        text-shadow: 0 0 60px rgba(178, 138, 58, 0.6);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 150px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-number {
        font-size: 8rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-subtitle {
        font-size: 1.1rem;
    }

    .btn-home, .btn-contact {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        max-width: 300px;
    }

    .crown-icon {
        font-size: 3rem;
    }

    .container {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .error-number {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.8rem;
    }

    .error-subtitle {
        font-size: 1rem;
    }

    .crown-icon {
        font-size: 2.5rem;
    }

    .btn-home, .btn-contact {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}


/*succes page*/


.success-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

/* Success Card */
.success-card {
    background: var(--charcoal-grey);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(178, 138, 58, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

/* Success Icon */
.success-icon {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: checkPulse 2s ease-in-out infinite;
}

/* Success Title */
.success-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--grey-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Appointment Details */
.appointment-details {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.appointment-details h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(178, 138, 58, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--grey-light);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.detail-label i {
    color: var(--gold-light);
    margin-right: 0.5rem;
    width: 16px;
}

.detail-value {
    font-weight: 600;
    color: var(--gold-light);
    text-align: right;
}

/* Action Buttons */
.action-buttons {
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black-matte);
    box-shadow: 0 5px 15px rgba(178, 138, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(178, 138, 58, 0.4);
    color: var(--black-matte);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--black-matte);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
    background: var(--black-matte);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.contact-info h6 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: var(--grey-light);
    font-size: 0.95rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--gold-light);
    margin-right: 0.8rem;
    width: 16px;
}

/* Back Home Link */
.back-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: var(--white-pure);
    text-shadow: 0 0 10px rgba(178, 138, 58, 0.5);
}

.back-home i {
    margin-right: 0.5rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-container {
        padding: 1rem;
    }

    .success-card {
        padding: 2rem 1.5rem;
    }

    .success-title {
        font-size: 1.8rem;
    }

    .success-subtitle {
        font-size: 1rem;
    }

    .appointment-details {
        padding: 1.5rem 1rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .detail-value {
        margin-top: 0.3rem;
        text-align: left;
    }

    .btn-primary, .btn-secondary {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }

    .back-home {
        top: 1rem;
        left: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .success-icon {
        font-size: 3rem;
    }

    .success-title {
        font-size: 1.6rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Simple floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1);
        opacity: 0.3;
    }
}


/* Additional styles specific to Terms & Conditions page */
.terms-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(28, 28, 28, 0.7));
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.terms-content {
    background: var(--charcoal-grey);
    padding: 4rem 0;
}

.terms-card {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-light);
    display: inline-block;
}

.terms-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--gold-light);
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--grey-light);
}

.terms-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--grey-light);
}

.terms-section li::marker {
    color: var(--gold-light);
}

.highlight-box {
    background: rgba(178, 138, 58, 0.1);
    border: 1px solid rgba(178, 138, 58, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h5 {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-box p {
    margin-bottom: 0;
}

.contact-box {
    background: var(--charcoal-grey);
    border: 2px solid var(--gold-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-box h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-item {
    display: inline-block;
    margin: 0.5rem 1rem;
    color: var(--grey-light);
}

.contact-item i {
    color: var(--gold-light);
    margin-right: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--gold-light);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(178, 138, 58, 0.3);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-gradient);
    color: var(--black-matte);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(178, 138, 58, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(178, 138, 58, 0.4);
    color: var(--black-matte);
}

.table-of-contents {
    background: var(--charcoal-grey);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: sticky;
    top: 120px;
    z-index: 10;
}

.table-of-contents h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.8rem;
}

.table-of-contents a {
    color: var(--grey-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.table-of-contents a:hover {
    color: var(--gold-light);
    background: rgba(178, 138, 58, 0.1);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-hero {
        min-height: 30vh;
        padding-top: 80px;
    }

    .terms-card {
        padding: 2rem 1.5rem;
    }

    .terms-section h3 {
        font-size: 1.5rem;
    }

    .terms-section h4 {
        font-size: 1.2rem;
    }

    .table-of-contents {
        position: static;
        margin-bottom: 2rem;
    }

    .contact-item {
        display: block;
        margin: 0.5rem 0;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Animation for sections on scroll */
.terms-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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


/*Contacts*/


.contact-hero {
    min-height: 30vh;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(28, 28, 28, 0.7));
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.contact-content {
    background: var(--charcoal-grey);
    padding: 4rem 0;
}

.contact-card {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.contact-info-card {
    background: var(--charcoal-grey);
    border: 1px solid rgba(178, 138, 58, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(178, 138, 58, 0.1);
    height: 100%;
}

/* Contact Form Styles */
.contact-form h3 {
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-control {
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid rgba(178, 138, 58, 0.3);
    border-radius: 12px;
    color: var(--white-pure);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(13, 13, 13, 0.9);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(178, 138, 58, 0.3);
    color: var(--white-pure);
}

.form-control::placeholder {
    color: var(--grey-light);
}

.form-label {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 0.5rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    color: var(--black-matte);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::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.5s;
}

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(178, 138, 58, 0.4);
}

/* Contact Info Styles */
.contact-info h3 {
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--black-matte);
    border-radius: 15px;
    border: 1px solid rgba(178, 138, 58, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(178, 138, 58, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(178, 138, 58, 0.1);
}

.info-icon {
    background: var(--gold-gradient);
    color: var(--black-matte);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h5 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: var(--grey-light);
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: var(--grey-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--gold-light);
}

/* Working Hours */
.working-hours {
    background: var(--black-matte);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.working-hours h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(178, 138, 58, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--grey-light);
    font-weight: 500;
}

.time {
    color: var(--gold-light);
    font-weight: 600;
}

.closed {
    color: #ff6b6b;
}

/* Social Media */
.social-section {
    background: var(--black-matte);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.social-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #3b5998;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link.tiktok {
    background: #000;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-container {
    background: var(--black-matte);
    border: 2px solid rgba(178, 138, 58, 0.3);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--charcoal-grey));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white-pure);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.map-placeholder p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 300px;
}

/* Alert Messages */
.alert-custom {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.alert-success-custom {
    background: rgba(40, 167, 69, 0.15);
    color: #51cf66;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.alert-error-custom {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Loading Animation */
.loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(178, 138, 58, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold-light);
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 30vh;
        padding-top: 80px;
    }

    .contact-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: var(--gold-light);
    display: none;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    color: var(--gold-light);
    margin-top: 230px;
}

.swiper-pagination-bullet-active {
    background: var(--gold-light);
}

.portfolio-card {
    background: var(--black-matte);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.portfolio-card a {
    text-decoration: none;

}

.portfolio-content {
    background-color: #0D0D0D;
    padding: 15px;
    border-radius: 15px;

}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.portfolio-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    /*background: linear-gradient(135deg, var(--gold-dark), var(--charcoal-grey));*/
    opacity: 0.55;
    pointer-events: none;
}


/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 1rem;
}

.lang-toggle {
    background: transparent;
    border: 2px solid var(--gold-light);
    color: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.lang-toggle:hover {
    background: var(--gold-gradient);
    color: var(--black-matte);
    box-shadow: 0 5px 15px rgba(178, 138, 58, 0.3);
    transform: translateY(-2px);
}

.lang-toggle i {
    transition: transform 0.3s ease;
}

.lang-toggle.active i {
    transform: rotate(180deg);
}

/* Language Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--charcoal-grey);
    border: 2px solid var(--gold-light);
    border-radius: 15px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scaleY(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1002;
    list-style: none;
}

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

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid var(--gold-light);
    z-index: -1;
}

.lang-item {
    padding: 0.8rem 1.2rem;
    color: var(--white-pure);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(178, 138, 58, 0.1);
    font-weight: 500;
    cursor: pointer;
}

.lang-item:last-child {
    border-bottom: none;
}

.lang-item:hover {
    background: rgba(178, 138, 58, 0.1);
    color: var(--gold-light);
    padding-left: 1.5rem;
}

.lang-item.active {
    background: rgba(178, 138, 58, 0.2);
    color: var(--gold-light);
    font-weight: 600;
}

.lang-item.active::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: bold;
}

.lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.lang-name {
    flex: 1;
}

/* Mobile menu */
.navbar-toggler {
    border: 2px solid var(--gold-light);
    padding: 0.25rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(178, 138, 58, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23E3C06F' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-collapse {
    transition: all 0.3s ease;
}

/* Demo Content */
.demo-content {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(28, 28, 28, 0.7));
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.demo-text {
    text-align: center;
    color: var(--white-pure);
}

.demo-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-text p {
    font-size: 1.2rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
}

.lang-info {
    background: var(--charcoal-grey);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(178, 138, 58, 0.3);
    display: inline-block;
}

.lang-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        background: black;
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.7rem 0 !important;
        border-bottom: 1px solid lightgray;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }

    .lang-dropdown::before {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-logo {
        width: 40px;
    }

    .demo-text h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease;
}

.contacts_url {
    text-decoration: none;
    color: white;
}

.product-section {
    background: var(--charcoal-grey);
    padding: 4rem 0;
    min-height: 100vh;
}

.product-container {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--charcoal-grey);
    border: 2px solid rgba(178, 138, 58, 0.3);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-container:hover .single-product-image {
    transform: scale(1.05);
}


.product-info {
    padding-left: 2rem;
}

.product-brand {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.rating-text {
    color: var(--grey-light);
    font-size: 0.9rem;
}

.single-product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}


.product-features h5 {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--gold-light);
    margin-top: 0.2rem;
}


@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .single-product-price {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .product-section {
        padding: 2rem 0;
    }

    .product-container {
        padding: 2rem 1.5rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

}

@media (max-width: 575px) {
    .product-container {
        padding: 1.5rem 1rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.8rem;
    }

}


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

.product-image-container {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.product-info {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}


.blog-section {
    background: var(--charcoal-grey);
    padding: 4rem 0;
    min-height: 100vh;
}


/* Article Container */
.article-container {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

/* Article Header */
.article-category {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black-matte);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-subtitle {
    font-size: 1.3rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(178, 138, 58, 0.2);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-light);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--gold-light);
}

.meta-item strong {
    color: var(--white-pure);
}

/* Featured Image */
.article-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 2px solid rgba(178, 138, 58, 0.3);
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Article Content */
.article-content {
    color: var(--grey-light);
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3 {
    color: var(--gold-light);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.6rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content li::marker {
    color: var(--gold-light);
}

.article-content blockquote {
    background: var(--charcoal-grey);
    border-left: 5px solid var(--gold-light);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--white-pure);
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(178, 138, 58, 0.2);
}


/* Share Section */
.article-share {
    background: var(--charcoal-grey);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.share-title {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--white-pure);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--white-pure);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: var(--gold-gradient);
    color: var(--black-matte);
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
}

.related-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}


/* Responsive */
@media (max-width: 991px) {
    .article-title {
        font-size: 2.2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 2rem 0;
    }

    .article-container {
        padding: 2rem 1.5rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .article-image {
        height: 300px;
    }

    .article-content {
        font-size: 1rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .article-container {
        padding: 1.5rem 1rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-container {
    animation: fadeInUp 0.8s ease;
}

/* Print Styles */
@media print {
    .back-link,
    .article-share,
    .related-articles {
        display: none;
    }

    .article-container {
        box-shadow: none;
        border: none;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    background: #0f0f0f;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1);
    transition: transform .5s ease, filter .5s ease;
    display: block;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.06);
    filter: brightness(.9);
}

.portfolio-overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0));
    opacity: 1;
    transition: opacity .35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

/*.portfolio-item:hover .portfolio-overlay2 { opacity: 1; }*/

.overlay-inner {
    width: 100%;
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: .9rem 1rem;
}

.portfolio-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: #111;
    color: var(--gold-light, #f5d07a);
    font-weight: 600;
    font-size: .8rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    letter-spacing: .02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    max-width: calc(100% - 1.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-section {
    background: var(--charcoal-grey);
    padding: 4rem 0;
    min-height: 100vh;
}

.portfolio-container {
    background: var(--black-matte);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.portfolio-category {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black-matte);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.portfolio-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio-subtitle {
    font-size: 1.3rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(178, 138, 58, 0.2);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-light);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--gold-light);
}

.meta-item strong {
    color: var(--white-pure);
}

.portfolio-featured-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 2px solid rgba(178, 138, 58, 0.3);
    position: relative;
}

.portfolio-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-featured-image:hover img {
    transform: scale(1.03);
}

.portfolio-description {
    color: var(--grey-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 4rem;
}

.portfolio-description p {
    margin-bottom: 1.5rem;
}

.process-section {
    margin-bottom: 4rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-heading::before {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
}

.process-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 15px 30px rgba(178, 138, 58, 0.2);
}

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

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

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(178, 138, 58, 0.8), rgba(227, 192, 111, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-overlay i {
    font-size: 2.5rem;
    color: var(--white-pure);
}

.video-section {
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 30.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(178, 138, 58, 0.3);
    background: var(--charcoal-grey);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: var(--gold-gradient);
    color: var(--black-matte);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-gradient);
    color: var(--black-matte);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
}

/* Project Details Box */
.project-details {
    background: var(--charcoal-grey);
    border: 1px solid rgba(178, 138, 58, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(178, 138, 58, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--grey-light);
    font-weight: 500;
}

.detail-value {
    color: var(--gold-light);
    font-weight: 600;
}

/* Share Section */
.share-section {
    background: var(--charcoal-grey);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.share-title {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-pure);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--white-pure);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.pinterest {
    background: #bd081c;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-title {
        font-size: 2.2rem;
    }

    .portfolio-featured-image {
        height: 450px;
    }

    .process-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding: 2rem 0;
    }

    .portfolio-container {
        padding: 2rem 1.5rem;
    }

    .portfolio-title {
        font-size: 1.8rem;
    }

    .portfolio-subtitle {
        font-size: 1.1rem;
    }

    .portfolio-featured-image {
        height: 350px;
    }

    .portfolio-meta {
        gap: 1rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }

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

    .lightbox-close {
        top: -40px;
        right: -40px;
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .portfolio-container {
        padding: 1.5rem 1rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .portfolio-featured-image {
        height: 250px;
    }

    .lightbox-prev {
        left: -40px;
    }

    .lightbox-next {
        right: -40px;
    }
}

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

.portfolio-container {
    animation: fadeInUp 0.8s ease;
}


/*Before-After*/
.before-after-wrapper {
    /*max-width: 1000px;*/
    margin: 0 auto 3rem;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    display: block;
}

.ba-before {
    position: relative;
    z-index: 1;
}

.ba-after {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: polygon(0 0, calc(var(--pos) * 1%) 0, calc(var(--pos) * 1%) 100%, 0 100%);
    will-change: clip-path;
    transition: clip-path .06s linear;
}

.ba-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(178, 138, 58, .3);
    cursor: ew-resize;
    aspect-ratio: 16/9;
    max-height: 520px;
    --pos: 50;
    will-change: transform;
    touch-action: pan-y;
}

.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    left: calc(var(--pos) * 1%);
    transform: translateX(-50%);
    width: 3px;
    background: var(--gold-gradient);
    box-shadow: 0 0 12px rgba(178, 138, 58, .45);
    pointer-events: auto;
    cursor: ew-resize;
}

.ba-slider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(17, 17, 17, .6);
    border: 2px solid rgba(227, 192, 111, .9);
    backdrop-filter: blur(3px);
}


.mi-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
}

.mi-lightbox.open {
    display: block;
}

.mi-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem 3rem;
    z-index: 1;
}

#miLightboxImg {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .6);
}

.mi-close, .mi-prev, .mi-next {
    position: absolute;
    z-index: 2;
    top: 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    backdrop-filter: blur(6px);
}

.mi-close {
    right: 18px;
}

.mi-prev, .mi-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
}

.mi-prev {
    left: 22px;
}

.mi-next {
    right: 22px;
}

.process-overlay {
    pointer-events: none;
}

@media (min-width: 1200px) {
    .navbar-brand {
        padding-top: .5rem;
    }
}

@media(max-width:991px){
    .hero,
    .cta-block {
        background-position: right;
    }

}

@media(max-width:1199px){
    .hero h1 {
        font-size: 3rem;
        margin-top: 10rem;
    }
}
@media(max-width:991px){
    .hero h1 {
        font-size: 2.8rem;
        margin-top: 15rem;
    }
}
@media(max-width:540px){
    .hero {
        min-height: 85vh;
    }
}

.btn-link:hover,
.btn-text:hover,
.auth__btn:hover{
    color: var(--black-matte)!important;
}

@media (max-width: 767px) {
    #faq{
        background-image: none!important;
    }

}

.service-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

/*
** Cookies Notification
*/
.notification-cookies {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 25px;
    z-index: 99;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.notification-cookies .row {
    display: flex;
    align-items: center;
}

.href_color {
    color: var(--gold-light);

    text-decoration: none;
}

.href_color:hover {
    color: #000
}

@-webkit-keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .notification-cookies {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .notification-cookies {
        width: 90%;
    }

    .notification-cookies button {
        margin-top: 1.5rem;
    }
}
