@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
/* NAVIGATION - ENHANCED */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgb(0, 0, 0);
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.96) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
}

nav.scrolled {
    padding: 10px 40px;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

nav.scrolled::before {
    opacity: 0.95;
}

.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.scrolled-up {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

nav.scrolled .logo {
    transform: scale(0.95);
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.nav-link:hover span {
    color: #0170C1;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(1, 112, 193, 0.4);
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0170C1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-link.active span {
    color: #0170C1;
    text-shadow: 0 0 10px rgba(1, 112, 193, 0.5);
}

.nav-link.active::before {
    transform: scaleX(1);
    animation: underlineExpand 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons a {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.book {
    background-color: #0170C1;
    color: rgb(255, 255, 255);
    border: 2px solid #0170C1;
    animation: pulse 2s infinite;
}

.book.btn-hover-effect:hover {
    background-color: #015da1;
    border-color: #015da1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 112, 193, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 112, 193, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(1, 112, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 112, 193, 0);
    }
}
.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-hover-effect:hover::before {
    left: 100%;
}
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #0170C1;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #0170C1;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 80px 40px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .nav-links li a {
        font-size: 18px;
    }
    
    .nav-link:hover span {
        transform: translateX(5px);
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buttons a {
        justify-content: center;
        width: 100%;
    }
    
    .logo img {
        height: 50px;
    }
}

/* Modern Color Theme Variables - Updated for Black & White */
:root {
    --primary-color: #000000; 
    --secondary-color: #ffffff; 
    --accent-color: #ffffff; 
    --text-light: #ffffff; 
    --text-dark: #ffffff;
    --bg-light: #000000; 
    --overlay-dark: rgba(0, 0, 0, 0.85);
    --overlay-medium: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

.contact-hero {
    height: 90vh;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 0.8s ease-out;
}

.contact-hero.loaded .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    opacity: 0;
    animation: fadeInOverlay 1s ease-out 0.5s forwards;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpContent 1s ease-out 0.8s forwards;
}

@keyframes fadeInUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-content h1 {
    font-size: 56px; 
    margin-bottom: 20px;
    letter-spacing: 2px; 
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpTitle 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUpTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.contact-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpText 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUpText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 48px; 
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 42px; 
        letter-spacing: 1.5px; 
    }
    
    .contact-hero-content p {
        font-size: 17px; 
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto 20px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.5) 0%, 
            rgba(0, 0, 0, 0.3) 50%, 
            rgba(0, 0, 0, 0.5) 100%
        );
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 60vh;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
        letter-spacing: 0.5px;
    }
    
    .contact-hero-content p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .contact-hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 14px; 
    }
}

.hero-image {
    max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .hero-overlay,
    .contact-hero-content,
    .contact-hero-content h1,
    .contact-hero-content p {
        animation: none !important;
        transition: none !important;
    }
    
    .contact-hero-content,
    .hero-overlay {
        opacity: 1;
        transform: none;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--black);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.luxury-gallery {
    background-color: #000;
    padding: 60px 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.gallery-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #0170C1;
    margin: 30px auto 0;
}

.page-indicator {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
}

.luxury-title {
    font-size: 3.5rem;
    letter-spacing: 6px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
}

.luxury-title span {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
}

.gallery-website {
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.gallery-website:hover {
    color: white;
}

.gallery-website::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s;
}

.gallery-website:hover::after {
    width: 100%;
}
.gallery-section {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0170C1;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: #0170C1;
}

.section-title::before {
    left: -60px;
}

.section-title::after {
    right: -60px;
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
    text-align: center;
}

.overlay-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.zoom-icon {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s 0.1s;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-label,
.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    border-right: 2px solid white;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    background: rgba(0,0,0,0.7);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: #000;
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.featured-badge i {
    font-size: 14px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 40px 20px;
    max-width: 900px;
    text-align: center;
    color: white;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #0170C1;
}

.current-indicator {
    display: block;
    margin-bottom: 20px;
    color: #0170C1;
    letter-spacing: 2px;
    font-size: 14px;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.image-caption {
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 300;
}

.website-link {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.website-link:hover {
    color: #0170C1;
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.prev-arrow, .next-arrow {
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 0 30px;
    user-select: none;
    pointer-events: auto;
    transition: all 0.3s;
}

.prev-arrow:hover, .next-arrow:hover {
    color: white;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .luxury-title {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .luxury-gallery {
        padding: 50px 20px;
    }
    
    .luxury-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .luxury-title span {
        font-size: 1.3rem;
        letter-spacing: 6px;
    }
    
    .gallery-section {
        margin: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title::before,
    .section-title::after {
        width: 40px;
    }
    
    .section-title::before {
        left: -40px;
    }
    
    .section-title::after {
        right: -40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
        padding: 30px 15px;
    }
    
    .image-caption {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .luxury-gallery {
        padding: 40px 15px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .luxury-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .luxury-title span {
        font-size: 1.1rem;
        letter-spacing: 4px;
        margin-top: 10px;
    }
    
    .gallery-section {
        margin: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0 20px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 30px;
    }
    
    .section-title::before {
        left: -30px;
    }
    
    .section-title::after {
        right: -30px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .gallery-item {
        aspect-ratio: 1/1; 
    }
    .featured-badge {
        top: 5px;
        right: 5px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
   
    .lightbox-modal {
        background-color: rgba(0, 0, 0, 0.98);
    }
    
    .modal-content {
        padding: 60px 15px 30px;
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .close-modal {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10001;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }
    
    .current-indicator {
        margin-bottom: 15px;
        font-size: 13px;
        position: absolute;
        bottom: 90px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    
    .image-caption {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .website-link {
        margin-bottom: 20px;
        font-size: 13px;
    }
    
    .prev-arrow, .next-arrow {
        font-size: 35px;
        padding: 0 15px;
        background: rgba(255, 255, 255, 0.2);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navigation-arrows {
        position: fixed;
        bottom: 20px;
        top: auto;
        width: 100%;
        transform: none;
        justify-content: center;
        gap: 40px;
    }
    
    .slider-icon {
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    

    .image-overlay {
        display: none;
    }
}

/* Video item styling */
.gallery-item.video-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.gallery-item.video-item:hover {
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
    text-align: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.play-button i {
    color: #000;
    font-size: 20px;
    margin-left: 4px;
}

.gallery-item.video-item:hover .video-overlay {
    opacity: 1;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 40px 20px;
    max-width: 900px;
    text-align: center;
    color: white;
}

.video-modal video {
    width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Video Modal Styles */
.modal-video {
    width: 100%;
    max-height: 70vh;
    display: none;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Close button fix */
.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

.close-modal:hover {
    color: #0170C1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 18px;
    }
}
/* Mobile Responsive Styles for Videos */
@media (max-width: 576px) {
    .gallery-item.video-item {
        aspect-ratio: 1/1;
    }
    
    .video-overlay {
        padding: 10px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .play-button i {
        font-size: 16px;
    }
    
    .overlay-label {
        font-size: 10px;
    }
    
    .video-modal video {
        max-height: 50vh;
    }
}

@media (min-width: 1600px) {
    .gallery-item.video-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .gallery-item.video-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .gallery-item.video-item {
        aspect-ratio: 4/3;
    }
    
    .video-modal video {
        max-height: 70vh;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-thumbnail {
        image-rendering: -webkit-optimize-contrast;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item.video-item,
    .video-overlay,
    .play-button,
    .gallery-item.video-item:hover {
        transition: none;
    }
    
    .gallery-item.video-item:hover {
        transform: none;
    }
    
    .gallery-item.video-item:hover .gallery-video {
        transform: none;
    }
}

/* Remove hover effects on mobile and replace with touch-friendly alternatives */
@media (max-width: 768px) {
    /* Always show video overlay on mobile for better UX */
    .gallery-item.video-item .video-overlay {
        opacity: 0.8 !important; /* Show overlay by default on mobile */
    }
    
    /* Reduce the overlay opacity slightly on touch for feedback */
    .gallery-item.video-item:active .video-overlay {
        opacity: 0.9 !important;
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    }
    
    /* Remove hover transformations that don't work on mobile */
    .gallery-item.video-item:hover {
        transform: none;
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: none;
    }
    
    /* Add touch feedback for all gallery items */
    .gallery-item {
        transition: transform 0.2s ease;
    }
    
    .gallery-item:active {
        transform: scale(0.97);
    }
}

/* For devices that support hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .gallery-item.video-item:hover .video-overlay {
        opacity: 1;
    }
    
    .gallery-item.video-item:hover {
        border-color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
    }
}


/*image*/
@media (max-width: 576px) {
    .luxury-gallery {
        padding: 30px 10px;
    }
    
    .gallery-header::after {
        margin: 20px auto 0;
    }
    
    .page-indicator {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .luxury-title {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    
    .luxury-title span {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .gallery-website {
        font-size: 12px;
        margin-top: 15px;
    }
    
    .gallery-section {
        margin: 40px 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 20px;
    }
    
    .section-title::before {
        left: -20px;
    }
    
    .section-title::after {
        right: -20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .image-caption {
        font-size: 1rem;
    }
    
    .prev-arrow, .next-arrow {
        width: 45px;
        height: 45px;
        font-size: 30px;
    }
    
    .navigation-arrows {
        bottom: 15px;
        gap: 30px;
    }
    
    .current-indicator {
        bottom: 80px;
        font-size: 12px;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .prev-arrow, .next-arrow {
        font-size: 30px;
        padding: 0 10px;
    }
}

@media (min-width: 1600px) {
    .luxury-gallery {
        padding: 80px 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        max-width: 1600px;
    }
    
    .luxury-title {
        font-size: 4rem;
    }
    
    .luxury-title span {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .luxury-gallery {
        padding: 30px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-image {
        max-height: 70vh;
    }
    
    .navigation-arrows {
        bottom: 10px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .image-overlay,
    .overlay-label,
    .zoom-icon,
    .gallery-item:hover {
        transition: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    .luxury-gallery {
        background-color: #0a0a0a;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

.premium-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin: 0 auto;
    padding: 0 40px 60px;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4 span {
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0170C1 0%, #00C6FF 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 80px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-column li:hover {
    transform: translateX(5px);
}

.footer-column a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a i {
    width: 20px;
    text-align: center;
    color: #0170C1;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column a:hover i {
    color: #00C6FF;
    transform: scale(1.2);
}

.footer-contact-column .footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-column:hover .footer-contact {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 112, 193, 0.5);
}

.footer-contact p {
    margin: 0 0 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: #0170C1;
    margin-top: 3px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover::after {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 40px;
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: #b0b0b0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 5px;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0170C1;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-copyright p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}



/* Floating Buttons */
.whatsapp-cta,
.back-to-top {
    position: fixed;
    right: 20px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.whatsapp-cta {
    bottom: 80px;
}

.back-to-top {
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Floating Button Style */
.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-cta .floating-btn {
    background-color: #25D366;
}

/* Back to Top Button */
.back-to-top .floating-btn {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
}

/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover i {
    transform: scale(1.15);
}

/* Tooltip on hover */
.floating-btn::after {
    content: attr(aria-label);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-cta .floating-btn::after {
    background-color: #25D366;
    color: white;
}

.back-to-top .floating-btn::after {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    color: white;
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 55px;
}

/* Subtle pulse animation for WhatsApp */
@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-cta .floating-btn {
    animation: subtlePulse 3s infinite ease-in-out;
}
/* Tablet devices (768px and below) */
@media screen and (max-width: 768px) {
    .whatsapp-cta,
    .back-to-top {
        right: 15px;
    }
    
    .whatsapp-cta {
        bottom: 70px;
    }
    
    .back-to-top {
        bottom: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
    
    .floating-btn::after {
        font-size: 11px;
        padding: 5px 10px;
        right: 50px;
    }
    
    .floating-btn:hover::after {
        right: 45px;
    }
}

/* Mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .whatsapp-cta,
    .back-to-top {
        right: 10px;
    }
    
    .whatsapp-cta {
        bottom: 60px;
    }
    
    .back-to-top {
        bottom: 10px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-btn i {
        font-size: 16px;
    }
    
    .floating-btn::after {
        display: none; /* Hide tooltips on very small screens */
    }
    
    /* Reduce animation intensity on mobile */
    .whatsapp-cta .floating-btn {
        animation: subtlePulse 4s infinite ease-in-out;
    }
    
    .floating-btn:hover {
        transform: translateY(-2px);
    }
}

/* Large screens (1200px and above) */
@media screen and (min-width: 1200px) {
    .whatsapp-cta,
    .back-to-top {
        right: 30px;
    }
    
    .whatsapp-cta {
        bottom: 90px;
    }
    
    .back-to-top {
        bottom: 30px;
    }
}

/* Reduced motion preference for accessibility */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-cta,
    .back-to-top,
    .floating-btn,
    .floating-btn i {
        transition: none;
    }
    
    .whatsapp-cta .floating-btn {
        animation: none;
    }
    
    .floating-btn:hover {
        transform: none;
    }
    
    .floating-btn:hover i {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .floating-btn {
        border: 2px solid white;
    }
}


@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 0 15px 30px;
    }
    
    .footer-contact p {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        padding: 0 30px 50px;
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px 30px;
    }
}