:root {
    --primary: #fdf000;
    --secondary: #f0008c;
    --accent: #0dacf0;
    --dark: #231f1f;
    --light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --text-color: #231f1f;
    --bg-color: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
    font-weight: 300;
}

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

/* Navbar */
.navbar {
    background-color: rgba(100, 100, 100, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
    backdrop-filter: blur(3px);
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}



.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4cff;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    padding: 0 20px;
    height: 100%;
    flex-shrink: 0;
}

.navbar-logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}



.logo-img {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    padding: 0 10px 0 0;
    align-items: center;
    height: 100%;
    margin-left: auto;
    margin-right: 15px;
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ff4cff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-shadow: none;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    display: block;
    font-size: 1.0rem;
    height: fit-content;
    text-shadow:
        0 0 2px black,
        0 0 2px black
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding-right: 20px;
    height: 100%;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown-btn {
    background-color: transparent;
    border: none;
    color: #4cfffe;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    font-weight: 500;
    text-shadow:
        0 0 2px black,
        0 0 2px black
}

.lang-dropdown-btn:hover {
    color: var(--primary);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 25%;
    background-color: transparent;
    border: none;
    border-radius: 0;
    z-index: 500;
    min-width: 30px;
    /* margin-top: 0.5rem; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    flex-direction: column;
}

.language-dropdown.active {
    display: flex;
}

.language-dropdown .lang-btn {
    /* padding: 0.7rem 1rem; */
    font-size: 1em;
    border: none;
    border-radius: 0;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: #ff4cff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    font-weight: 500;
}

.language-dropdown .lang-btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.language-dropdown .lang-btn.active {
    background-color: transparent;
    color: #ff4cff;
    font-weight: 600;
    display: none;
}



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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 90%;
    padding: 2rem 20px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    animation: slideInDown 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: capitalize;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin: 0;
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 0, 140, 0.6);
    border: 2px solid var(--secondary);
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 2;
}

.background-icon {
    position: absolute;
    font-size: 200px;
    opacity: 0.15;
}

.icon-1 {
    top: -50px;
    left: 10%;
}

.icon-2 {
    top: 50%;
    right: 5%;
}

.icon-3 {
    bottom: -50px;
    left: 20%;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.hero-overlay-text {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: slideUpModal 0.6s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-overlay-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-overlay-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--light);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
}

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

.about-text {
    color: var(--dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-text p:first-child {
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.3rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.about-logo:hover {
    filter: drop-shadow(0 6px 25px rgba(240, 0, 140, 0.3));
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--white);
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.service-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* cursor: pointer; */
}

.service-card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card-image.auto-active {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(240, 0, 140, 0.4);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-image:hover .service-image {
    transform: scale(1.08);
}

.service-card-image.auto-active .service-image {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    background: linear-gradient(135deg, rgba(35, 31, 31, 0.95), rgba(100, 0, 140, 0.9));
    padding: 1.5rem;
    border-radius: 12px 0 0 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 25%;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overlay h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 300;
}

.service-card-image:hover .service-list,
.service-card-image.auto-active .service-list {
    max-height: 500px;
    opacity: 1;
}

.service-list li {
    padding: 0.4rem 0;
    color: var(--white);
    position: relative;
    padding-left: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: 300;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

/* Responsive for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-content {
        max-width: 550px;
    }

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

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-overlay {
        width: 90%;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Gallery Section */
.gallery {
    width: 100%;
    padding: 80px 20px;
    background-color: var(--light);
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 3rem 2rem;
    row-gap: 3rem;
    column-gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    max-height: calc(280px * 2 + 3rem);
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 40px;
}

.gallery-grid.expanded {
    max-height: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    padding-bottom: 100%; /* Creates 1:1 aspect ratio */
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--dark);
    font-size: 1.2rem;
}

/* Expand Button */
.expand-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 0, 140, 0.4);
}

.expand-btn:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 1.5rem;
        row-gap: 2.5rem;
        column-gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
        row-gap: 2.5rem;
        column-gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
        max-height: calc(50vw * 2 + 1.5rem);
        padding: 0 20px;
        overflow: hidden;   
    }

    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
        max-height: calc(90vw * 2 + 1.5rem);
        padding: 0 10px;
    }

    .gallery h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .gallery {
        padding: 40px 20px;
    }
}

/* Fine-tune for screens between 600px and 768px */
@media (min-width: 601px) and (max-width: 768px) {
    .gallery-grid {
        padding: 0 30px;
        gap: 1.8rem;
        row-gap: 1.8rem;
        column-gap: 1.8rem;
    }
}

/* Fine-tune for screens between 481px and 600px */
@media (min-width: 481px) and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
        gap: 1.2rem;
        row-gap: 1.2rem;
        column-gap: 1.2rem;
        max-height: calc(45vw * 2 + 1.2rem);
    }
}

/* Fine-tune for screens between 350px and 480px */
@media (min-width: 351px) and (max-width: 480px) {
    .gallery-grid {
        padding: 0 15px;
        gap: 1.2rem;
        row-gap: 1.2rem;
    }
}

/* Fine-tune for screens 350px and below */
@media (max-width: 350px) {
    .gallery-grid {
        padding: 0 10px;
        gap: 1rem;
        row-gap: 1rem;
        max-height: calc(88vw * 2 + 1rem);
    }
}

/* Gallery Lightbox Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: var(--primary);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.modal-close:hover {
    color: var(--secondary);
    background-color: rgba(0, 0, 0, 0.9);
    border-color: var(--secondary);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary);
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
}

.modal-nav:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--white);
}

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

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

.contact-block {
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail-item {
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-detail-item a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: #666;
    text-decoration: underline;
}

.address-item a {
    cursor: pointer;
}

/* Facebook Follow Button */
.facebook-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-top: 1.5rem;
    background-color: #ff4cff;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255, 76, 255, 0.3);
    line-height: 1;
}

.facebook-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 76, 255, 0.5);
    transform: scale(1.1);
}

/* Contact Form with Floating Labels */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    padding-top: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--dark);
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #999;
    box-shadow: none;
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: #999;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left;
    font-weight: 300;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0.3rem;
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    transform: translateY(-0.5rem);
}

/* Utility: screen-reader only */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.submit-btn {
    background-color: var(--white);
    color: var(--dark);
    padding: 1rem 2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: none;
}

.submit-btn:hover {
    background-color: #f5f5f5;
    border-color: #999;
    transform: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        cursor: pointer;
        padding: 0;
        margin-right: 10px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background-color: #ff4cff;
        margin: 5px 0;
        transition: 0.3s ease;
        border-radius: 2px;
    }

    /* Mobile menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        max-width: 280px;
        background-color: #3a3a3a;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        z-index: 99;
        border-left: 3px solid #ff4cff;
        align-items: stretch;
        animation: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        height: auto;
        display: block;
    }

    .nav-link {
        padding: 1.2rem 1.5rem;
        display: block;
        font-size: 1rem;
        color: #ff4cff;
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        background-color: #3a3a3a;
        border-bottom: 1px solid rgba(255, 76, 255, 0.2);
        border: none;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.25s ease;
    text-shadow:
        0 0 2px black,
        0 0 2px black
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #2a2a2a;
        color: #fdf000;
        border-left: 3px solid #ff4cff;
        padding-left: 1.8rem;
    }

    .nav-menu li:last-child .nav-link {
        border-bottom: none;
    }

    .hero-section {
        margin-top: 70px;
        min-height: 500px;
    }

    .hero-content {
        width: 95%;
        max-width: 500px;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .navbar-container {
        height: 70px;
        position: relative;
    }

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

    .placeholder-image {
        max-width: 100%;
        height: 300px;
        font-size: 60px;
    }

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

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

    .about h2,
    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
        max-height: calc(50vw * 2 + 1.5rem);
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem 8px;
        height: 70px;
    }

    .navbar-logo {
        gap: 6px;
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .logo-img {
        width: auto;
        height: 35px;
        object-fit: contain;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-right {
        gap: 0.75rem;
        margin-left: auto;
        padding-right: 15px;
    }

    .language-selector {
        display: flex;
        gap: 0.5rem;
    }

    .lang-toggle-btn {
        display: block;
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .theme-toggle {
        width: 26px;
        height: 26px;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-section {
        margin-top: 70px;
        min-height: 400px;
    }

    .hero-content {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem 20px;
    }

    .hero-section::before {
        background: rgba(0, 0, 0, 0.3);
    }

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

    .hero p {
        font-size: 1rem;
        margin: 0;
    }

    .about {
        padding: 40px 10px;
    }

    .services {
        padding: 40px 10px;
    }

    .gallery {
        padding: 40px 10px;
    }

    .contact {
        padding: 40px 10px;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .info-block {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }

    /* Mobile gallery modal */
    .modal-content {
        width: 95%;
        height: 70vh;
    }

    .modal-nav {
        padding: 10px 15px;
        font-size: 24px;
    }

    .modal-nav.prev {
        left: 10px;
    }

    .modal-nav.next {
        right: 10px;
    }

    .modal-close {
        font-size: 30px;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .modal-counter {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .expand-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
        max-height: calc(90vw * 2 + 1.5rem);
        padding: 0 10px;
    }
}