/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    overflow-x: hidden;
    perspective: 1000px;
}

/* Contact Form Success Message */
.contact-success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
    font-family: 'Inter', sans-serif;
}

.contact-success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-success-message .success-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-success-message .success-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Success Message */
@media (max-width: 768px) {
    .contact-success-message {
        padding: 12px 16px;
        margin-top: 15px;
    }
    
    .contact-success-message .success-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .contact-success-message .success-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-success-message {
        padding: 10px 14px;
        margin-top: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-success-message .success-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.whatsapp-float-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: 2px solid #6c757d;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-float-btn:hover::before {
    left: 100%;
}

.whatsapp-float-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(108, 117, 125, 0.6);
    border-color: #adb5bd;
}

.whatsapp-float-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Popup Button Styles */
.popup-button-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
}

.popup-trigger-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: 2px solid #6c757d;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 2px;
}

.popup-trigger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.popup-trigger-btn:hover::before {
    left: 100%;
}

.popup-trigger-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(108, 117, 125, 0.5);
    border-color: #adb5bd;
}

.popup-trigger-btn i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

.popup-trigger-btn span {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* New Projects Popup */
.new-projects-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 50px;
}

.new-projects-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 3px solid #6c757d;
    border-radius: 25px;
    max-width: 800px;
    width: 95%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.7) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 0;
}

.new-projects-popup.show .popup-content {
    transform: scale(1) translateY(0);
    animation: popupBounce 0.8s ease-out;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.7) translateY(50px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    background: linear-gradient(135deg, #6c757d, #495057);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #adb5bd;
    animation: slideInFromTop 0.6s ease-out 0.2s both;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-header h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(108, 117, 125, 0.5);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(108, 117, 125, 0.8);
    }
}

.popup-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    animation: slideInFromTop 0.6s ease-out 0.3s both;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.popup-body {
    padding: 25px;
    max-height: 450px;
    overflow-y: auto;
    animation: slideInFromBottom 0.6s ease-out 0.4s both;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(108, 117, 125, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(173, 181, 189, 0.3);
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease-out both;
}

.project-item:nth-child(1) { animation-delay: 0.5s; }
.project-item:nth-child(2) { animation-delay: 0.6s; }
.project-item:nth-child(3) { animation-delay: 0.7s; }
.project-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.project-item:hover {
    background: rgba(108, 117, 125, 0.25);
    transform: translateX(10px) scale(1.02);
    border-color: #6c757d;
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

.project-icon {
    background: linear-gradient(135deg, #6c757d, #495057);
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-item:hover .project-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(108, 117, 125, 0.5);
}

.project-info {
    flex: 1;
}

.project-info h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.project-item:hover .project-info h4 {
    color: #adb5bd;
}

.project-info p {
    color: #d3d3d3;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.project-status {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(108, 117, 125, 0.25);
    border: 2px solid #6c757d;
    border-radius: 25px;
    color: #d3d3d3;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.project-item:hover .project-status {
    background: rgba(108, 117, 125, 0.35);
    border-color: #adb5bd;
    transform: scale(1.05);
}

.popup-footer {
    padding: 25px;
    border-top: 3px solid #adb5bd;
    background: rgba(108, 117, 125, 0.15);
    animation: slideInFromBottom 0.6s ease-out 0.9s both;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-btn span {
    display: none;
}

/* Scrollbar Styles */
.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: rgba(108, 117, 125, 0.1);
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #495057;
}
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    height: 60px;
}

.navbar.scrolled .nav-logo img:hover {
    transform: scale(1.15) rotate(2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #2c3e50);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #2c3e50;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #2c3e50;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Popup Modal - Enhanced Animations */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.popup-modal.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-modal .popup-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.popup-modal.show .popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: popupBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popupBounce {
    0% {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }
    20% {
        transform: translateY(10px) scale(1.05);
        opacity: 0.8;
    }
    40% {
        transform: translateY(-5px) scale(0.98);
        opacity: 0.9;
    }
    60% {
        transform: translateY(2px) scale(1.01);
        opacity: 1;
    }
    80% {
        transform: translateY(-1px) scale(0.99);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* New Projects Popup - Enhanced Animations */
.new-projects-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.new-projects-popup.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-projects-popup .popup-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px) scale(0.8) rotateX(5deg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.new-projects-popup.show .popup-content {
    transform: scale(1) translateY(0) rotateX(0);
    opacity: 1;
    animation: popupBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Popup Message Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Popup Side Button */
.popup-side-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
    transition: all 0.3s ease;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 60px;
    height: 60px;
    animation: pulse 2s infinite;
}

.popup-side-button:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(108, 117, 125, 0.5);
}

.popup-side-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.popup-side-button:hover i {
    transform: rotate(180deg);
}

.popup-side-button span {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(108, 117, 125, 0.6);
    }
    100% {
        box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
    }
}

/* Remove old popup button container */
.popup-button-container {
    display: none !important;
}

/* Popup Header - Enhanced */
.popup-header {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.popup-header::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.8s ease;
}

.popup-header:hover::before {
    left: 100%;
}

.popup-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-close-btn,
.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-close-btn:hover,
.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Popup Body - Enhanced */
.popup-body {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.popup-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* Popup CTA - Enhanced */
.popup-cta {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.popup-cta::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.6s ease;
}

.popup-cta:hover::before {
    left: 100%;
}

.popup-cta:hover {
    transform: translateY(-3px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.popup-cta:active {
    transform: translateY(-1px) rotateX(5deg) scale(1.02);
}

/* Main Container */
.main-container {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Pages */
.page {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #2c3e50);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

/* Hero Section with Enhanced 3D Slider */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    perspective: 1200px;
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 0.4s ease-out;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    transition: all 0.3s ease-out;
}

.slide.prev {
    transform: translateX(-100%) scale(0.95);
    opacity: 0.2;
    transition: all 0.3s ease-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    transform: scale(0.8);
    transition: all 0.3s ease-out;
    will-change: transform, filter;
}

.slide.active img {
    transform: scale(0.85);
    filter: brightness(0.7);
    transition: all 0.2s ease-out;
}

.slide.prev img {
    transform: scale(0.98);
    filter: brightness(0.6);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.2s ease;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    transform: translateZ(100px);
    opacity: 0;
    transform: translateY(50px) translateZ(100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0) translateZ(100px);
}

.slide-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px !important;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    transform: translateZ(50px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(45deg, #d3d3d3, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.slide-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a9a9a9, #d3d3d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-100%);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active .slide-title::before {
    transform: translateX(0);
}

.slide.active .slide-title {
    animation: titleGlow 2s ease-in-out, slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

.slide-description {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateZ(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    opacity: 0;
    transform: translateY(30px) translateZ(30px);
    line-height: 1.6;
    color: #d3d3d3;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0) translateZ(30px);
    animation: slideInFromRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both, textFadeIn 1.5s ease-out 0.2s both;
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px) translateZ(30px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px);
        transform: translateY(5px) translateZ(30px) scale(1.02);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) translateZ(30px) scale(1);
    }
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    transform: translateZ(20px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide.active .slide-buttons {
    animation: slideInFromBottom 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateZ(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateZ(50px);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateZ(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateZ(30px);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px) translateZ(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(20px);
    }
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 15px 30px;
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
transform-style: preserve-3d;
position: relative;
overflow: hidden;
}

.btn-primary {
background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
color: white;
box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
transform: translateY(-3px) rotateX(10deg) scale(1.05);
box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.btn-secondary:hover {
transform: translateY(-3px) rotateX(10deg) scale(1.05);
box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
background: white;
color: #2c3e50;
border-color: white;
}

.btn-primary:active {
transform: translateY(-1px) rotateX(5deg) scale(1.02);
}

.btn-secondary:active {
transform: translateY(-1px) rotateX(5deg) scale(1.02);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) translateZ(20px) rotateY(10deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-prev:active,
.slider-next:active {
    transform: scale(1.05) translateZ(10px) rotateY(5deg);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-5px);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.3) translateZ(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.dot.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(-5px) scale(1.2);
}

.dot:hover::before {
    opacity: 0.7;
    transform: translate(-50%, -50%) translateZ(-5px) scale(1.1);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.about-btn::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 ease;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: scale(1.2);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-text {
        padding: 25px 15px;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Story Page */
#story {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
}

.portfolio-section {
    text-align: center;
    margin-bottom: 80px;
}

.division-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: block;
    width: 100%;
}

.division-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6c757d, #2c3e50);
    border-radius: 2px;
}

.division-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    transform-style: preserve-3d;
}

.division-card.reverse {
    direction: rtl;
}

.division-card.reverse > * {
    direction: ltr;
}

.division-image {
    position: relative;
    transform: translateZ(50px);
    transition: all 0.3s ease;
}

.division-image:hover {
    transform: translateZ(100px) rotateY(5deg);
}

.division-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.division-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.division-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 20px;
}

.division-content ul {
    list-style: none;
}

.division-content li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
}

.division-content li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #6c757d;
}

.leadership-section {
    margin-top: 100px;
}

.leadership-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.leader-card {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.leader-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.leader-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Brand Page */
#brand {
    padding: 100px 0;
    background: white;
}

.brand-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.brand-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #2c3e50;
    border: 2px solid #6c757d;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.brand-btn.active {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border-color: #2c3e50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.brand-btn:hover {
    transform: translateY(-3px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 117, 125, 0.3);
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border-color: #2c3e50;
}

.brand-btn:active {
    transform: translateY(-1px) rotateX(5deg) scale(1.02);
}

.brand-section {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.brand-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    transform-style: preserve-3d;
}

.project-card:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(108, 117, 125, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateZ(50px);
}

.project-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.project-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.project-features span {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.project-details {
    padding: 30px;
}

.project-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.project-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-amenities {
    list-style: none;
}

.project-amenities li {
    padding: 5px 0;
    color: #6c757d;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.project-amenities li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #6c757d;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    gap: 60px;
}

.discover-hotel-btn {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    transform-style: preserve-3d;
    position: relative;
    margin-top: 20px;
    width: 100%;
}

.discover-hotel-btn:hover {
    transform: translateY(-3px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.discover-hotel-btn:active {
    transform: translateY(-1px) rotateX(5deg) scale(1.02);
}

.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    transform-style: preserve-3d;
}

.hotel-card:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hotel-gallery {
    position: relative;
}

.gallery-main {
    height: 400px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
}

.gallery-thumbnails img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.hotel-info {
    padding: 40px;
}

.hotel-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #6c757d;
}

.hotel-location i {
    color: #6c757d;
}

.hotel-info p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hotel-features h5,
.hotel-amenities h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hotel-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.hotel-features li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.hotel-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6c757d;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.amenities-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

/* History Section */
.history-section {
    margin-top: 80px;
}

.history-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6c757d, #2c3e50);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #6c757d, #2c3e50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 8px;
    line-height: 1.2;
}

.timeline-content {
    width: calc(50% - 60px);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.timeline-btn {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    position: relative;
}

.timeline-btn:hover {
    transform: translateY(-2px) rotateX(8deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.timeline-btn:active {
    transform: translateY(-1px) rotateX(4deg) scale(1.02);
}

/* Hotel Info Section */
.hotel-info-section {
    padding: 40px 0;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hotel-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hotel-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
}

.hotel-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.hotel-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.discover-hotel-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.discover-hotel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discover-hotel-btn:hover::before {
    left: 100%;
}

.discover-hotel-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
}

.discover-hotel-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.discover-hotel-btn:hover i {
    transform: translateX(5px);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.hotel-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-highlights {
        grid-template-columns: 1fr;
    }
    
    .hotel-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hotel-text h3 {
        font-size: 28px;
    }
}

/* Brand Section - Compact Layout */
.brand-info-section {
    padding: 30px 0;
}

.building-content,
.hotel-content,
.resort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.building-text h3,
.hotel-text h3,
.resort-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hotel-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.1;
}

.building-text p,
.hotel-text p,
.resort-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 25px;
}

.building-highlights,
.hotel-highlights,
.resort-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.highlight-item i {
    font-size: 20px;
    color: #6c757d;
    min-width: 20px;
    margin-top: 2px;
}

.highlight-item div h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.highlight-item div p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.building-stats,
.hotel-stats,
.resort-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.discover-building-btn,
.discover-hotel-btn,
.discover-resort-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.discover-building-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discover-building-btn:hover::before {
    left: 100%;
}

.discover-building-btn i,
.discover-hotel-btn i,
.discover-resort-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.discover-building-btn:hover i,
.discover-hotel-btn:hover i,
.discover-resort-btn:hover i {
    transform: translateX(3px);
}

.discover-building-btn:hover,
.discover-hotel-btn:hover,
.discover-resort-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.building-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.building-image:hover img {
    transform: scale(1.05);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.hotel-image:hover img {
    transform: scale(1.05);
}

#resorts .hotel-image {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

#resorts .hotel-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
}

#resorts .hotel-image:hover img {
    transform: scale(1.05);
}

/* Resorts Section - White Background */
#resorts {
    background: #ffffff;
    position: relative;
}

#resorts .hotel-text {
    text-align: left !important;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 20px 20px 20px;
    margin-top: -60px;
}

#resorts .hotel-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.1;
    text-align: left !important;
}

#resorts .hotel-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: left !important;
}

#resorts .hotel-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: -30px;
}

#resorts .hotel-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    margin-top: -30px;
}

#resorts .hotel-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    margin-top: -50px;
}

#resorts .hotel-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

#resorts .hotel-image:hover img {
    transform: scale(1.05);
}

#resorts .discover-hotel-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 auto;
    min-height: 40px;
    width: auto;
    margin-top: -30px;
}

#resorts .discover-hotel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#resorts .discover-hotel-btn:hover::before {
    left: 100%;
}

#resorts .discover-hotel-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
}

#resorts .discover-hotel-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

#resorts .discover-hotel-btn:hover i {
    transform: translateX(5px);
}

#resorts .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

#resorts .highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

#resorts .highlight-item i {
    font-size: 20px;
    color: #6c757d;
    min-width: 20px;
    margin-top: 2px;
}

#resorts .highlight-item div {
    text-align: left;
}

#resorts .highlight-item div h4 {
    font-size: 16px;
    font-weight: 620;
    color: #2c3e50;
    margin-bottom: 6px;
}

#resorts .highlight-item div p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

#resorts .stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

#resorts .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#resorts .stat-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

#resorts .stat-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Resorts Section Container - Centered Layout */
#resorts .hotel-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#resorts .hotel-info-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Resorts */
@media (max-width: 768px) {
    #resorts .hotel-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }
    
    #resorts .hotel-image {
        margin: 0 auto;
        align-self: center;
        justify-self: center;
        margin-top: 0;
    }
    
    #resorts .hotel-highlights {
        grid-template-columns: 1fr;
    }
    
    #resorts .hotel-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #resorts .hotel-text h3 {
        font-size: 28px;
        font-weight: 800;
    }
}
@media (max-width: 768px) {
    .building-content,
    .hotel-content,
    .resort-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .building-highlights,
    .hotel-highlights,
    .resort-highlights {
        grid-template-columns: 1fr;
    }
    
    .building-stats,
    .hotel-stats,
    .resort-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .building-text h3,
    .hotel-text h3,
    .resort-text h3 {
        font-size: 24px;
    }
    
    .hotel-text h3 {
        font-size: 28px;
        font-weight: 800;
    }
    
    .building-text p,
    .hotel-text p,
    .resort-text p {
        font-size: 15px;
    }
}

/* Resort Info Section - Same as Building */
.resort-info-section {
    padding: 40px 0;
}

.resort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.resort-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.resort-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
}

.resort-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.resort-highlights .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.resort-highlights .highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.resort-highlights .highlight-item i {
    font-size: 24px;
    color: #6c757d;
    min-width: 24px;
    margin-top: 2px;
}

.resort-highlights .highlight-item div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.resort-highlights .highlight-item div p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.resort-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.discover-resort-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discover-resort-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #495057, #343a40);
    transition: left 0.5s ease;
}

.discover-resort-btn:hover::before {
    left: 100%;
}

.discover-resort-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.4);
}

.discover-resort-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.discover-resort-btn:hover i {
    transform: translateX(5px);
}

.resort-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.resort-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.resort-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Resorts */
@media (max-width: 768px) {
    .resort-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resort-highlights {
        grid-template-columns: 1fr;
    }
    
    .resort-highlights .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .resort-highlights .highlight-item i {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .resort-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resort-text h3 {
        font-size: 28px;
    }
}

/* Roadmap Section */
.roadmap-section {
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.roadmap-section h4 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.roadmap-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #2c3e50);
}

.roadmap-item:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.roadmap-year {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6c757d, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.roadmap-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
}

.roadmap-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.roadmap-status.upcoming {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.roadmap-status.planning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.roadmap-status.vision {
    background: linear-gradient(135deg, #17a2b8, #007bff);
    color: white;
}

.roadmap-status.goal {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
}

/* Hotel Details Page */
.hotel-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hotel-hero-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-hero-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hotel-hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #6c757d;
}

.hotel-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.hotel-gallery-section {
    margin-bottom: 60px;
}

.hotel-gallery-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hotel-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hotel-location-section {
    margin-bottom: 60px;
}

.hotel-location-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.location-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-details h5 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-details p {
    color: #6c757d;
    line-height: 1.6;
}

.location-details ul {
    list-style: none;
}

.location-details li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
}

.location-details li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #6c757d;
}

.hotel-features-section {
    margin-bottom: 60px;
}

.hotel-features-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 40px;
    color: #6c757d;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
}

.back-button-container {
    text-align: center;
    margin-top: 40px;
}

.back-to-brand-btn {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    transform-style: preserve-3d;
    position: relative;
}

.back-to-brand-btn:hover {
    transform: translateY(-3px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.back-to-brand-btn:active {
    transform: translateY(-1px) rotateX(5deg) scale(1.02);
}

.back-to-brand-btn i {
    margin-right: 10px;
}

/* Contact Page */
#contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c757d;
    background: white;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-3px) rotateX(8deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2c3e50 0%, #6c757d 100%);
}

.submit-btn:active {
    transform: translateY(-1px) rotateX(4deg) scale(1.02);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    position: relative;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.map-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-overlay-link:hover {
    text-decoration: none;
    color: white;
}

.map-overlay-link:hover .map-overlay {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
}

.map-overlay-link:hover .map-overlay h4 {
    transform: scale(1.05);
    color: #e74c3c;
}

.map-overlay-link:hover .map-overlay p {
    transform: translateY(-2px);
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Mobile View - General Improvements */
@media (max-width: 768px) {
    /* Mobile Typography */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 64px !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 20px !important;
        line-height: 1.3;
    }
    
    /* Mobile Container */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Mobile Navigation */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-links {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        top: 70px;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* Mobile Sections */
    section {
        padding: 60px 0;
    }
    
    /* Mobile Cards */
    .card {
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 15px;
    }
    
    /* Mobile Grid Layouts */
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Contact Form */
    .contact-form {
        padding: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Mobile Animations */
    .fade-in {
        opacity: 1;
        transform: none;
    }
    
    /* Mobile WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

/* Small Mobile View - Phones under 480px */
@media (max-width: 480px) {
    /* Small Mobile Typography */
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    /* Small Mobile Container */
    .container {
        padding: 0 15px;
    }
    
    /* Small Mobile Hero */
    .hero {
        padding: 80px 0 50px;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Small Mobile Sections */
    section {
        padding: 40px 0;
    }
    
    /* Small Mobile Cards */
    .card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* Small Mobile Forms */
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Small Mobile Footer */
    .footer {
        padding: 20px 0 15px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    /* Small Mobile WhatsApp */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}

/* Ultra Small Mobile - Under 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
        font-size: 16px;
    }
}

/* Tablet View - 768px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Landscape Mobile - Max height 500px */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-links a:hover,
    .card:hover {
        transform: none;
    }
    
    .btn:active,
    .nav-links a:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    .whatsapp-float:active {
        transform: scale(0.9);
    }
}

/* High DPI Mobile Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before,
    .section-bg::before {
        background-size: cover;
        background-attachment: scroll;
    }
}

/* Mobile Landscape Orientation */
@media (orientation: landscape) and (max-width: 768px) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        width: auto;
        min-width: 120px;
    }
}

/* Footer */
.footer {
    background: #6c757d;
    color: #ffffff;
    padding: 8px 0 5px;
    position: relative;
    margin-top: 0;
    min-height: auto;
    max-height: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.footer.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6c757d, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 3.5px;
    margin-bottom: 3.5px;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3.5px;
    padding: 3.5px 0;
}

.footer-logo-container {
    text-align: center;
}

.footer-logo-img {
    width: 90px;
    height: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.footer-logo-img:hover {
    transform: scale(1.15) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(108, 117, 125, 0.6));
    transition: all 0.4s ease;
}

.footer-section h4 {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3.5px;
    position: relative;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c757d, #FFFFFF);
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 100%;
}

.footer-about p {
    line-height: 1.8;
    color: #FFFFFF;
    font-size: 14px;
    max-width: 400px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 3.5px;
    padding: 3.5px 0;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(108, 117, 125, 0.8),
                 0 0 20px rgba(108, 117, 125, 0.6),
                 0 0 30px rgba(108, 117, 125, 0.4);
}

.footer-link:hover::before {
    width: 100%;
    box-shadow: 0 0 5px rgba(108, 117, 125, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.whatsapp-link::before {
    content: '??';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.whatsapp-link:hover {
    color: #128C7E !important;
    text-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
}

.whatsapp-link::after {
    background: #25D366 !important;
}

.whatsapp-link:hover::after {
    background: #128C7E !important;
}

.phone-link {
    color: #FFFFFF !important;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.phone-link::before {
    content: '??';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.phone-link:hover {
    color: #17a2b8 !important;
    text-shadow: 0 0 5px rgba(23, 162, 184, 0.5);
}

.phone-link::after {
    background: #FFFFFF !important;
}

.phone-link:hover::after {
    background: #17a2b8 !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.contact-item span {
    color: #FFFFFF;
    font-size: 14px;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:hover i {
    color: #FFFFFF;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(108, 117, 125, 0.2);
    padding-top: 3.5px;
    text-align: center;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Footer Social Media Styles */
.footer-social {
    text-align: center;
    margin-bottom: 3.5px;
    padding: 3.5px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.social-link:hover i {
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Instagram specific hover effect */
.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #f09433;
}

/* LinkedIn specific hover effect */
.social-link[href*="linkedin"]:hover {
    background: #0077B5;
    border-color: #0077B5;
}

/* Facebook specific hover effect */
.social-link[href*="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-bottom p:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(108, 117, 125, 0.6);
}

/* Footer 3D shadow effect */
.footer {
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .division-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .division-card.reverse {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .brand-selector {
        flex-direction: column;
        align-items: center;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo-img {
        width: 150px;
    }

    .footer-about p {
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .slide-title {
        font-size: 28px;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-section h4 {
        font-size: 18px;
    }
}
