* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}
header {
    background: linear-gradient(to right, rgba(20,20,40,0.97), rgba(80,20,60,0.97), rgba(20,20,40,0.97));
    color: #fff;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 51, 102, 0.1);
    position: relative;
    z-index: 100;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, background-color, box-shadow;
    backface-visibility: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255, 120, 220, 0.9), transparent);
    z-index: 2;
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
.top-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    margin: 15px auto 10px;
    text-align: center;
    position: relative;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 51, 102, 0.8), transparent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
    pointer-events: none;
}

.logo-link:hover,
.logo-link:focus-visible {
    transform: scale(1.05);
    outline: none;
}

.logo-link:hover::after,
.logo-link:focus-visible::after {
    width: 80%;
}

.logo-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    border-radius: 2px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    background-image: url('../image/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 320px;
    height: 80px;
    text-indent: -9999px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    z-index: 10;
    filter: drop-shadow(0 2px 8px rgba(255, 51, 102, 0.4));
    display: block;
}
.logo:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 51, 102, 0.6)) brightness(1.1);
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 20;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    z-index: -1;
}
.contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    margin-left: 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 38px;
    min-width: 120px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info a::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: 0.5s;
    z-index: 1;
}
.contact-info a:hover::before {
    left: 100%;
}
.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-info a:hover::after {
    opacity: 1;
}
.contact-info a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-position: right center;
}
.contact-info a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
}
.contact-info a svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.contact-info a:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}
.phone-number {
    background-image: linear-gradient(45deg, #4d7bf3, #5e94ff, #4d7bf3);
    background-size: 200% auto;
}
.phone-number:hover {
    background-position: right center;
}
.whatsapp-link {
    background-image: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    background-size: 200% auto;
}
.whatsapp-link:hover {
    background-position: right center;
}
.top-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: background-color, box-shadow;
}

@supports not (backdrop-filter: blur(8px)) {
    .top-nav {
        background: rgba(20, 20, 30, 0.9);
    }
}
.top-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 4px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    will-change: color, transform;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
    color: #ffcccc;
    transform: translateY(-1px);
}

.top-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #ff3366, #ff9980);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 51, 102, 0.5);
    will-change: width;
    pointer-events: none;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
    width: 100%;
}

.top-nav a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.top-nav a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    background: rgba(255, 51, 102, 0.1);
    transform: translateY(-1px);
}

.top-nav a.active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.1), rgba(255, 153, 128, 0.1));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

.top-nav a.active:hover::before {
    opacity: 0.8;
}

.top-nav a.active::after {
    width: 100%;
    background: linear-gradient(to right, #ff3366, #ff9980);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
    opacity: 1;
}
.top-nav a svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    position: relative;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    flex-shrink: 0;
}

.top-nav a:hover svg,
.top-nav a:focus-visible svg {
    transform: translateY(-2px) scale(1.1);
}

.top-nav a.active svg {
    filter: drop-shadow(0 0 4px rgba(255, 51, 102, 0.4));
}
.search-container {
    max-width: 1200px;
    margin: 15px auto 20px;
    padding: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 50;
}
.advanced-search-container {
    background: linear-gradient(to right, rgba(25, 25, 35, 0.8), rgba(35, 25, 45, 0.8), rgba(25, 25, 35, 0.8));
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advanced-search-container:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 51, 102, 0.15);
    transform: translateY(-2px);
}

.advanced-search-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.advanced-search-input {
    flex: 1;
    position: relative;
    min-width: 200px;
}

#advancedSearchInput {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    will-change: border-color, box-shadow, background-color;
    -webkit-appearance: none;
    appearance: none;
}

#advancedSearchInput:focus {
    outline: none;
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.25), inset 0 2px 5px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

#advancedSearchInput:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

#advancedSearchInput:focus {
    outline: none;
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.25), inset 0 2px 5px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

#advancedSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: none;
    transition: all 0.2s ease;
}

.clear-btn:hover {
    color: white;
}

.search-select {
    padding: 0 15px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-select:focus {
    outline: none;
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.25);
    background-color: rgba(0, 0, 0, 0.3);
}

.search-btn {
    padding: 0 25px;
    height: 48px;
    background: linear-gradient(45deg, #ff3366, #ff5722);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.3);
    text-transform: uppercase;
    min-width: 100px;
}

.search-btn:hover {
    background: linear-gradient(45deg, #ff5722, #ff3366);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.4);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 51, 102, 0.4);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 40, 0.95);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 300px;
    overflow-y: auto;
}

.search-suggestion-item {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-suggestion-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.suggestion-icon {
    width: 30px;
    margin-right: 15px;
}

.suggestion-icon svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
}

.suggestion-text {
    flex: 1;
}

.suggestion-name {
    font-weight: 500;
    color: white;
    margin-bottom: 3px;
}

.suggestion-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    border: none;
}

/* Show sticky buttons only after scrolling */
.sticky-contact-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    will-change: opacity, transform;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.sticky-contact-buttons.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-contact-buttons:focus-within {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-contact-buttons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.sticky-contact-buttons a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Enhanced footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ff3366, #ff5722);
    border-radius: 2px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.learn-more-link {
    color: #ff3366;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-link:hover {
    color: #ff5722;
    transform: translateX(5px);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ff3366;
    transform: translateX(5px);
}

.footer-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-contact-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: currentColor;
}

.call-btn {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.call-btn:hover {
    background: linear-gradient(45deg, #43A047, #7CB342);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #1DA851, #0E7669);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer-links {
    display: none;
}

.copyright {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .top-nav {
        margin-left: 0;
    }
    
    .top-nav a {
        margin-left: 15px;
        font-size: 14px;
    }
    
    .contact-info {
        position: relative;
        margin-left: auto;
    gap: 10px;
}
    
    .contact-info a {
        padding: 7px 10px;
        font-size: 13px;
    }
    
    .search-container {
        margin: 10px auto;
    }
    
    .advanced-search-row {
        gap: 8px;
    }
    
    .search-select, 
    #advancedSearchInput,
    .search-btn {
        height: 44px;
        font-size: 14px;
    }
}

/* Mobile and tablet styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
        background: linear-gradient(135deg, #ff3366, #ff5722);
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(255, 51, 102, 0.8);
        width: 50px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 51, 102, 0.9);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .mobile-menu-toggle:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 2px;
    }
    
    /* Full-screen overlay menu - reset conflicting properties */
    .top-nav {
        display: block; /* Always display but use opacity/transform for visibility */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1a1a2a; /* Solid dark background */
        z-index: 9000; /* Below toggle but above other content */
        padding: 80px 20px 40px; /* More padding at top to avoid toggle overlap */
        transition: all 0.4s ease; /* Simpler transition */
        transform: translateY(-100%); /* Hide off-screen initially */
        opacity: 0;
        overflow-y: auto;
    }
    
    .top-nav.active {
        transform: translateY(0); /* Bring on screen when active */
        opacity: 1;
    }
    
    /* Clean up conflicting menu item styles */
    .top-nav a {
        margin: 15px 0; /* More vertical spacing between items */
        font-size: 22px;
        font-weight: 600;
        padding: 18px 25px; /* Larger tappable area */
        width: 90%;
        max-width: 320px;
        color: white;
        background: #2d2d40; /* Solid background */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Left-align content */
        border-left: 4px solid #ff3366; /* Always show left border */
        transition: all 0.3s ease;
    }
    
    .top-nav a:hover,
    .top-nav a:active {
        background: #3d3d55; /* Darker background on hover */
        transform: scale(1.03); /* Subtle scale instead of translateX */
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        padding-left: 30px; /* Indent on hover */
    }
    
    .top-nav a.active {
        background: #ff3366; /* Bright background for active state */
        color: white;
        box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
    }
    
    /* Remove conflicting ::before and ::after */
    .top-nav a::before,
    .top-nav a::after {
        display: none;
    }
    
    .top-nav a svg {
        width: 24px;
        height: 24px;
        margin-right: 15px;
        flex-shrink: 0; /* Prevent icon from shrinking */
    }
    
    /* Ensure overlay is visible */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9); /* Very dark overlay */
        z-index: 8999; /* Below menu but above other content */
        opacity: 0;
        pointer-events: none; /* Don't block clicks when hidden */
        transition: opacity 0.4s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto; /* Allow clicks when active */
    }
    
    .top-bar {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding-top: 10px;
    }
    .logo {
        width: 280px;
        height: 70px;
        margin: 15px auto;
    }
    .logo-link {
        margin: 5px auto;
    }
    .contact-info {
        justify-content: center;
        padding: 8px 15px;
    }
    
    .contact-info a {
        min-width: auto;
        width: 45px;
        height: 45px;
        padding: 0;
        margin-left: 10px;
        font-size: 0;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .contact-info a svg {
        margin-right: 0;
        width: 22px;
        height: 22px;
    }
    
    .search-container {
        margin: 15px auto 10px;
    }
    
    .advanced-search-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .advanced-search-input,
    .search-select,
    .search-btn {
        width: 100%;
    }
    
    .top-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #1a1a2a;
        z-index: 9998;
        padding: 50px 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        overflow-y: auto;
    }
    
    .top-nav.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .top-nav a {
        margin: 10px 0;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 15px 30px;
        width: 85%;
        max-width: 300px;
        text-align: center;
        position: relative;
        color: #fff;
        border: none;
        background: #2d2d40;
        border-radius: 12px;
        backdrop-filter: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .top-nav a::before {
    content: '';
    position: absolute;
        top: 0;
        left: 0;
        width: 4px;
    height: 100%;
        background: linear-gradient(to bottom, #ff3366, #ff5722);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        transform-origin: top;
    }
    
    .top-nav a:hover {
        background: #3d3d55;
        transform: translateX(5px);
    }
    
    .top-nav a:hover::before {
        transform: scaleY(1);
    }
    
    .top-nav a.active {
        background: #ff3366;
        box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
    }
    
    .top-nav a.active::before {
        transform: scaleY(1);
        width: 6px;
    }
    
    .top-nav a svg {
        width: 24px;
        height: 24px;
        margin-right: 15px;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    }
    
    /* Background overlay with improved transition */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: none;
        z-index: 9997;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 30px;
    }
    
    .logo {
        margin: 10px auto;
    }
    
    .top-nav a:last-child {
        border-bottom: none;
    }
    
    .top-nav a::after {
        display: none;
    }
    
    .top-nav a:hover {
        background: rgba(255, 51, 102, 0.2);
        padding-left: 15px;
    }
    
    .top-nav a.active {
        background: rgba(255, 51, 102, 0.2);
        padding-left: 15px !important;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 0 15px;
    }
    .logo {
        width: 240px;
        height: 60px;
        margin: 10px auto;
    }
    .contact-info {
        padding: 5px 10px;
    }
    
    .contact-info a {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
    
    .contact-info a svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile menu toggle styles are now handled in the dedicated section */
    
    .top-nav {
        padding: 70px 15px 30px; /* Adjust padding for smaller screens */
    }
    
    .top-nav a {
        font-size: 18px; /* Smaller font size */
        padding: 14px 20px; /* Smaller padding */
        margin: 10px 0; /* Less margin */
        max-width: 280px; /* Narrower buttons */
    }
    
    .advanced-search-container {
    padding: 10px;
    }
    
    .search-select, 
    #advancedSearchInput,
    .search-btn {
        height: 40px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 0 15px;
    }
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Enhanced Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px auto;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(17, 17, 17, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-button {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    padding: 0 12px;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.page-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-button.active {
    background: #800000;
    color: white;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.3);
}

.page-button.active:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.page-button:disabled {
    background: #1a1a1a;
    color: #555;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.page-button.page-nav {
    font-size: 18px;
    font-weight: normal;
    padding: 0 15px;
    background: #333;
}

.page-button.page-nav:hover {
    background: #800000;
}

.page-button.page-first::before,
.page-button.page-last::after {
    content: '';
    width: 2px;
    height: 12px;
    background: currentColor;
    display: inline-block;
    margin: 0 -2px;
}

.page-info {
    margin: 0 10px;
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.page-jumper {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.page-jumper input {
    width: 50px;
    height: 32px;
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    text-align: center;
    margin: 0 5px;
    padding: 0 5px;
}

.page-jumper button {
    height: 32px;
    background: #444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.page-jumper button:hover {
    background: #800000;
}

@media (max-width: 768px) {
    .pagination {
        padding: 8px;
    gap: 5px;
}
    
    .page-button {
        min-width: 36px;
        height: 36px;
    font-size: 14px;
}
    
    .page-jumper, .page-info {
        display: none;
    }
    
    .page-button.page-dots {
        display: none;
    }
    
    .page-button.page-number:not(.active):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }
    
    .pagination.expanded .page-button.page-number {
        display: flex;
    }
    
    .page-button.page-expand {
        display: flex;
    }
    
    .pagination.expanded .page-button.page-expand {
        display: none;
    }
}

@media (min-width: 769px) {
    .page-button.page-expand {
        display: none;
    }
}

/* Service highlights styles */
.service-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-section {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-section h3 {
    color: #e91e63;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-section p {
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-section ul {
    list-style-type: none;
    padding-left: 0;
}

.highlight-section ul li {
    padding: 6px 0;
    color: #ddd;
    position: relative;
    padding-left: 20px;
}

.highlight-section ul li:before {
    content: "✓";
    color: #e91e63;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .service-highlights {
        grid-template-columns: 1fr;
    }
}

/* Header scroll effects */
.header-scrolled {
    background: linear-gradient(to right, rgba(30, 30, 50, 0.95), rgba(60, 10, 40, 0.95)) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(5px);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Footer section animations */
.footer-section-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Add delay to each section for staggered animation */
.footer-section-animated:nth-child(1) {
    transition-delay: 0.1s;
}

.footer-section-animated:nth-child(2) {
    transition-delay: 0.3s;
}

.footer-section-animated:nth-child(3) {
    transition-delay: 0.5s;
}

/* Sticky Contact Buttons */
.sticky-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-contact-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-call {
    background: linear-gradient(135deg, #ff3366, #ff5e62);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Modern Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.9), rgba(255, 87, 34, 0.9));
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 51, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden; /* For ripple effect */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed; /* Ensure it's fixed */
    }
    
    /* Ripple effect for touch feedback */
    .mobile-menu-toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        transform: scale(0);
        opacity: 0;
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
        pointer-events: none;
    }
    
    .mobile-menu-toggle:active::after {
        transform: scale(1);
        opacity: 1;
        transition: 0s;
    }
    
    .mobile-menu-toggle span {
        display: block;
        position: relative;
        height: 3px;
        width: 24px;
        background: #fff;
        border-radius: 6px;
        opacity: 1;
        transform: rotate(0deg);
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        z-index: 2; /* Ensure above the ripple */
    }

    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        content: '';
        position: absolute;
        height: 3px;
        width: 24px;
        background: #fff;
        border-radius: 6px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        z-index: 2;
    }

    .mobile-menu-toggle span::before {
        top: -8px;
        width: 16px;
        right: 0;
        left: auto;
        transform-origin: center;
    }

    .mobile-menu-toggle span::after {
        top: 8px;
        width: 16px;
        transform-origin: center;
    }

    .mobile-menu-toggle.active span {
        background: transparent;
        transform: rotate(180deg);
    }

    .mobile-menu-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
        width: 24px;
        left: 0;
    }

    .mobile-menu-toggle.active span::after {
        transform: rotate(-45deg);
        top: 0;
        width: 24px;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 51, 102, 0.6);
        background: linear-gradient(135deg, rgba(255, 51, 102, 1), rgba(255, 87, 34, 1));
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 51, 102, 0.3);
        transition: all 0.1s ease;
    }
    
    /* Add pulse animation for better visibility */
    @keyframes pulse-modern {
        0% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 51, 102, 0.4); }
        50% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 51, 102, 0.6); }
        100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 51, 102, 0.4); }
    }
    
    /* Apply animation only when menu is closed */
    .mobile-menu-toggle:not(.active) {
        animation: pulse-modern 3s infinite;
    }
    
    /* Add hover effect for menu button lines */
    .mobile-menu-toggle:hover span::before {
        width: 24px;
    }
    
    .mobile-menu-toggle:hover span::after {
        width: 24px;
    }
    
    /* Modern fullscreen overlay menu */
    .top-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: -100vh; /* Start off-screen from top */
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(20,20,40,0.95), rgba(60,20,60,0.95));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 95;
        padding: 20px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .top-nav.active {
        top: 0;
    }

    .top-nav a {
        margin: 8px 0;
        width: 85%;
        max-width: 350px;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        border-radius: 12px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .top-nav.active a {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Staggered animation for menu items */
    .top-nav a:nth-child(1) { transition-delay: 0.1s; }
    .top-nav a:nth-child(2) { transition-delay: 0.15s; }
    .top-nav a:nth-child(3) { transition-delay: 0.2s; }
    .top-nav a:nth-child(4) { transition-delay: 0.25s; }
    .top-nav a:nth-child(5) { transition-delay: 0.3s; }
    .top-nav a:nth-child(6) { transition-delay: 0.35s; }
    .top-nav a:nth-child(7) { transition-delay: 0.4s; }

    .top-nav a svg {
        margin-right: 12px;
        width: 22px;
        height: 22px;
    }
    
    .top-nav a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .top-nav a.active {
        background: linear-gradient(135deg, rgba(255, 51, 102, 0.8), rgba(255, 87, 34, 0.8));
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 576px) {
    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
        right: 15px;
        top: 15px;
    }
    
    .mobile-menu-toggle span,
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        width: 22px;
    }
    
    .mobile-menu-toggle.active span::before,
    .mobile-menu-toggle.active span::after {
        width: 22px;
    }
    
    .top-nav a {
        margin: 6px 0;
        width: 90%;
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .top-nav a svg {
        margin-right: 10px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 360px) {
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        right: 10px;
        top: 10px;
    }
    
    .top-nav a {
        margin: 5px 0;
        padding: 12px 14px;
        font-size: 15px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle {
        animation: none !important;
        transition: none !important;
    }
    
    .mobile-menu-toggle span,
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: more) {
    .mobile-menu-toggle {
        background: #ff3366;
        border: 2px solid white;
    }
}

/* Modern nav overlay with blur effect */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.active {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

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

/* Prevent body scrolling when menu is open */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Profile Grid Layout - Consolidated from profile-section.css */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Profile Card Styling */
.profile-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(30, 30, 40, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform, box-shadow;
    position: relative;
    backface-visibility: hidden; /* Fix for Safari animation glitches */
    transform: translateZ(0); /* Hardware acceleration */
    -webkit-font-smoothing: antialiased; /* Smoother text rendering */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.profile-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 102, 0.2);
}

/* Profile Image Container */
.profile-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 3/4;
    background: linear-gradient(45deg, rgba(30, 30, 40, 0.9), rgba(50, 50, 70, 0.9));
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 3/4) {
    .profile-image-container {
        height: 0;
        padding-bottom: 133.33%; /* 4/3 = 133.33% */
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-image.loaded {
    opacity: 1;
}

/* Fallback for IE11 which doesn't support object-fit */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .profile-image-container {
        height: 280px;
    }
    
    .profile-image {
        width: auto;
        height: 100%;
        min-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .profile-card:hover .profile-image {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Image placeholder for errors */
.profile-image:not([src]), 
.profile-image[src=""],
.profile-image[src="#"],
.profile-image.error {
    opacity: 0.8;
}

/* Create a placeholder overlay for image errors */
.profile-image.error + .image-error-placeholder {
    display: flex;
}

.image-error-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(30, 30, 40, 0.9), rgba(50, 50, 70, 0.9));
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-error-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    fill: rgba(255, 255, 255, 0.5);
}

.star {
    transition: transform 0.2s ease;
}

.profile-card:hover .star {
    animation: pulse 0.6s ease-in-out;
}

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

/* Accessibility improvements */
.action-btn {
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

@media (prefers-reduced-motion: reduce) {
    .profile-card, 
    .profile-image, 
    .badge::before, 
    .action-btn::before,
    .profile-card:hover .star {
        transition: none;
        animation: none;
    }
    
    .profile-card:hover {
        transform: none;
    }
    
    .profile-card:hover .profile-image {
        transform: none;
    }
}

.profile-info {
    padding: 15px;
    position: relative;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.profile-location {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.profile-location svg {
    width: 14px;
    height: 14px;
    fill: #ff3366;
    margin-right: 5px;
    flex-shrink: 0;
}

.rating {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 14px;
}

.profile-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 36px;
}

.action-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: currentColor;
}

.call-btn {
    background: linear-gradient(to right, #ff3366, #ff5e62);
}

.whatsapp-btn {
    background: linear-gradient(to right, #25d366, #128c7e);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Location Cards Responsiveness */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: -15px auto 30px;
    max-width: 700px;
}

.location-card {
    padding: 25px;
    background: rgba(30, 30, 40, 0.7);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    min-height: 320px;
    backdrop-filter: blur(10px);
}

.location-card-enhanced {
    padding: 0;
    height: 380px;
    display: block;
    transform: translateY(0);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.location-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff3366, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.location-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.location-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.location-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.location-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.location-stat strong {
    color: #ff3366;
    font-weight: bold;
    margin-right: 4px;
}

.location-cta {
    background: linear-gradient(135deg, #ff3366, #ff5722);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.location-card-enhanced:hover .location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.location-card-enhanced:hover .location-icon {
    transform: translateY(-5px);
}

.location-card-enhanced:hover .location-cta {
    transform: translateY(0);
    opacity: 1;
}

.view-all-locations {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.view-all-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 51, 102, 0.2);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .location-card-enhanced {
        height: 280px;
    }
    
    .location-title {
        font-size: 18px;
    }
    
    .location-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .location-stats {
    display: flex;
    gap: 12px;
    margin: 5px 0;
    flex-wrap: wrap;
}
    
    .location-stat {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .location-cta {
        padding: 8px 12px;
        font-size: 14px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card-enhanced {
        height: 240px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* Enhanced Footer Responsiveness */
footer {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(30, 30, 40, 0.9));
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff3366;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #ff3366, transparent);
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #ff3366;
}

.learn-more-link {
    color: #ff3366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: #ff5e62;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ff3366;
    transform: translateX(5px);
}

.footer-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-contact-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: currentColor;
}

.footer-links {
    max-width: 1200px;
    margin: 30px auto 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 5px 10px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3366;
}

.copyright {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .location-card {
        padding: 15px;
    }
    
    .location-title {
        font-size: 16px;
    }
    
    .location-desc {
        font-size: 13px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-info {
        padding: 10px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .action-btn svg {
        width: 14px;
        height: 14px;
        margin-right: 3px;
    }
    
    .footer-contact-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 8px;
    }

    .profile-image-container {
        height: auto;
        aspect-ratio: 3/4;
        min-height: 180px;
    }

    .profile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .profile-info {
        padding: 10px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sticky-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
    }
    
    .sticky-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .profile-name {
        font-size: 15px;
    }
    
    .profile-location, .rating {
        font-size: 12px;
    }
    
    .action-btn {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .action-btn svg {
        width: 12px;
        height: 12px;
        margin-right: 2px;
    }
    
    .profile-image-container {
        padding-bottom: 130%;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .top-nav a {
        padding: 12px 15px;
    }
    
    /* Simplified search for mobile */
    .advanced-search-container {
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Better spacing for touch */
    .action-btn {
        min-height: 36px;
    }
    
    /* Remove hover effects that don't work well on touch */
    .profile-card:hover .profile-image {
        transform: none;
    }
    
    .location-card:hover {
        transform: none;
    }
    
    .footer-column a:hover {
        transform: none;
    }
    
    /* Show sticky buttons sooner on mobile */
    .sticky-contact-buttons.visible {
        bottom: 15px;
    }
}

/* Touch-friendly enhancements for elements */
.search-btn, .action-btn, .footer-contact-btn, a.location-item, .sticky-btn {
    -webkit-tap-highlight-color: transparent;
}

/* Improved focus states for accessibility */
input:focus, select:focus, button:focus, a:focus {
    outline: 2px solid rgba(255, 51, 102, 0.5);
    outline-offset: 2px;
}

/* Fix for video background on mobile */
.video-showcase {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 30px 30px;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(20,20,40,0.4), rgba(20,20,40,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 3;
}

.video-overlay h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 30px rgba(255,51,102,0.5);
    font-weight: 700;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
    animation: fadeInUp 1s forwards;
}

.video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.video-cta-btn {
    padding: 12px 28px;
    font-size: 16px;
    background: linear-gradient(45deg, #ff3366, #ff5722);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    animation: fadeInUp 1s 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.video-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 7px 20px rgba(255, 51, 102, 0.5);
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.video-control {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(20, 20, 40, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-control:hover, .video-control.active {
    background: linear-gradient(135deg, #ff3366, #ff5722);
    border-color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 51, 102, 0.5);
}

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

/* Modern Showcase Section */
.showcase-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 60, 0.95), rgba(60, 20, 80, 0.95));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
    animation: sparkle 10s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-title {
    font-size: 3.2rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #FFD700, #FF8C00, #FF1493);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    animation: titleGlow 2s ease-in-out infinite;
    text-align: center;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

.showcase-subtitle {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.5px;
}

.location-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.location-card.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.location-card.glass:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.location-card.glass:hover .location-name h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(5px);
}

.location-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.2));
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: iconGlow 3s infinite;
}

@keyframes iconGlow {
    0% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(-10px); opacity: 0.8; }
    100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
}

.location-icon svg {
    width: 48px;
    height: 48px;
    fill: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.location-card.glass:hover .location-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 215, 0, 0.3));
}

.location-card.glass:hover .location-icon svg {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.location-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.location-name h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.elite-tag {
    background: linear-gradient(45deg, #FFD700, #FF6B6B);
    padding: 6px 18px;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px -3px rgba(255, 215, 0, 0.4);
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0% { box-shadow: 0 4px 15px -3px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 20px 0px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 4px 15px -3px rgba(255, 215, 0, 0.4); }
}

.location-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.amenities span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.amenities span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.amenities i {
    color: #FFD700;
}

.explore-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.explore-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-link:hover::before {
    transform: translateX(0);
}

.explore-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.explore-link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.explore-link i {
    transition: transform 0.3s ease;
}

.explore-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .showcase-section {
        margin: 40px auto;
    }

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

    .location-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .card-content {
        padding: 20px;
    }

    .amenities {
        grid-template-columns: 1fr;
    }
}
/* Remove extra closing brace */

/* Additional Styles */
.custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

.custom-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
/* Remove extra closing brace */

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* End of mobile styles */

/* Sticky Contact Buttons */
.sticky-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    z-index: 998;
    opacity: 1;
    transform: translateY(0);
    height: 60px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    height: 60px;
}

.sticky-btn svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}

.btn-text {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.sticky-call {
    background: linear-gradient(135deg, #ff3366, #ff5722);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Add padding to footer to prevent content being hidden */
footer {
    padding-bottom: 70px !important;
}

/* Ensure scroll-to-top button is above sticky buttons */
.scroll-to-top {
    bottom: 70px !important;
    z-index: 999 !important;
}

@media (max-width: 576px) {
    .btn-text {
        font-size: 12px;
    }
    
    .sticky-btn {
        height: 50px;
        padding: 10px;
    }
    
    .sticky-btn svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    /* Adjust footer padding for smaller buttons on mobile */
    footer {
        padding-bottom: 60px !important;
    }
    
    /* Adjust scroll-to-top button position on mobile */
    .scroll-to-top {
        bottom: 60px !important;
        right: 20px !important;
    }
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.card-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.card-features span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.card-features i {
    color: #FFD700;
    margin-right: 5px;
}

.explore-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.explore-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-subtitle {
        font-size: 1rem;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

  /* End of Showcase Section Styles */
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.location-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 51, 102, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.location-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.location-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.location-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.location-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-stat {
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-stat strong {
    color: #ff3366;
}

.location-cta {
    background: linear-gradient(135deg, #ff3366, #ff5722);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: auto;
}

.location-card-enhanced:hover .location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.location-card-enhanced:hover .location-icon {
    transform: translateY(-5px);
}

.location-card-enhanced:hover .location-cta {
    transform: translateY(0);
    opacity: 1;
}

.view-all-locations {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.view-all-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 51, 102, 0.2);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .location-card-enhanced {
        height: 320px;
    }
    
    .location-content {
        padding: 20px;
        gap: 10px;
    }
    
    .location-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .location-desc {
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    line-clamp: 3; /* Standard property for compatibility */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
    
    .location-stats {
        gap: 8px;
        margin: 3px 0;
    }
    
    .location-stat {
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
    
    .location-cta {
        padding: 10px 15px;
        font-size: 14px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card-enhanced {
        height: 240px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* Add testimonial section */
.testimonials-section {
    padding: 60px 0;
    background-color: rgba(30, 30, 40, 0.7);
    font-family: 'Playfair Display', serif;
}

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

.testimonials-slider {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 50%; /* Make each slide take up 50% of the container width */
    max-width: 50%; /* Ensure slide width is capped at 50% */
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: rgba(40, 40, 60, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.testimonial-card:hover {
    background-color: rgba(50, 50, 70, 0.9);
    border-left: 3px solid #ff3366;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card:hover .testimonial-content {
    color: #ffffff;
}

.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.testimonial-rating .star {
    color: #ff6b6b;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-rating .rating-text {
    margin-left: 5px;
    font-weight: bold;
    color: #e0e0e0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    font-size: 17px;
    color: #ffffff;
}

.author-location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #cccccc;
    margin-top: 5px;
}

.author-location svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    fill: #ff3366;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background-color: rgba(40, 40, 60, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #ff3366;
    color: #fff;
    border-color: #ff3366;
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #ff3366;
    transform: scale(1.2);
}

/* Add stats section */
.stats-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px 20px;
    position: relative;
    background: rgba(20, 20, 30, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.05), rgba(255, 153, 128, 0.05));
    z-index: -1;
}

.stats-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: -5px auto 30px;
    max-width: 700px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-card {
    background: rgba(25, 25, 35, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(35, 35, 45, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 51, 102, 0.2);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: #ff3366;
    filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.5));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff3366, #ff9980);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 51, 102, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-overlay h2 {
        font-size: 2.5rem;
    }
    
    .stats-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        height: 60vh;
        min-height: 350px;
    }
    
    .video-overlay h2 {
        font-size: 2rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }

    .video-controls {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .video-showcase {
        height: 50vh;
        min-height: 300px;
    }
    
    .video-overlay h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-section {
        padding: 25px 15px;
        margin-bottom: 60px;
    }
    
    .stats-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .stat-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .video-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .video-control {
        width: 35px;
        height: 35px;
    }
}

/* Add location background images for cards */
.location-card[href="kukatpally.html"] {
    background-image: url('image/location-kukatpally.jpg');
}

.location-card[href="gachibowli.html"] {
    background-image: url('image/location-gachibowli.jpg');
}

.location-card[href="ameerpet.html"] {
    background-image: url('image/location-ameerpet.jpg');
}

.location-card[href="kolhapur.html"] {
    background-image: url('image/location-kolhapur.jpg');
}

/* Add animation classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s forwards;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

/* All Locations Section Enhancement */
.all-locations-section {
    margin-top: 50px;
    padding: 40px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.all-locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.05), rgba(255, 153, 128, 0.05));
    z-index: -1;
}

.all-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: rgba(40, 40, 60, 0.7);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.0), rgba(255, 153, 128, 0.0));
    transition: all 0.4s ease;
    z-index: -1;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 51, 102, 0.2);
    background: linear-gradient(45deg, rgba(40, 40, 60, 0.9), rgba(50, 50, 70, 0.9));
}

.location-item:hover::before {
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.2), rgba(255, 153, 128, 0.2));
}

.location-item-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.8), rgba(255, 87, 34, 0.8));
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.location-item:hover .location-item-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
}

.location-item-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.location-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    transition: all 0.3s ease;
}

.location-item:hover .location-item-name {
    color: rgba(255, 153, 128, 1);
}

.location-item-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.location-item:hover .location-item-count {
    color: rgba(255, 255, 255, 0.9);
}

.highlight-section {
    background: rgba(40, 40, 60, 0.7);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.3);
    border: 1px solid rgba(255, 51, 102, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .all-locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .all-locations-section {
        padding: 30px 20px;
    }
    
    .location-item-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .location-item-name {
        font-size: 14px;
    }
    
    .location-item-count {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .all-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .all-locations-section {
        padding: 25px 15px;
    }
}

/* Additional responsive fixes */
@media (max-width: 480px) {
    .all-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
        font-family: 'Playfair Display', serif;
        text-align: center;
        color: #fff;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, transparent, #ff3366, transparent);
        border-radius: 2px;
    }
}

/* Video CTA button enhancement */
.video-cta-btn {
    position: relative;
    overflow: hidden;
}

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

.video-cta-btn:hover::after {
    left: 100%;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff3366, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.top-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    width: 240px;
    display: inline-block;
}

.testimonial-rating .star.half:after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ffcc00;
}

.testimonial-rating .star.half:before {
    content: "☆";
    color: #ffcc00;
}

.rating-text {
    margin-left: 5px;
    font-size: 14px;
    color: #ccc;
    font-weight: bold;
}

/* Touch Support for Testimonial Slider */
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .testimonial-rating .star {
        font-size: 16px;
    }
    
    .rating-text {
        font-size: 12px;
    }
}

.highlight-section {
    background: rgba(40, 40, 60, 0.7);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.3);
    border: 1px solid rgba(255, 51, 102, 0.2);
    transform: translateY(-5px);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content {
        font-size: 14px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-prev svg,
    .testimonial-next svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-content {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .testimonial-controls {
        margin-top: 15px;
        gap: 15px;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-author .author-name {
        font-size: 14px;
    }
    
    .testimonial-author .author-location {
        font-size: 12px;
    }
}

/* Profile Badges Styling */
.profile-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-badges {
    transform: translateX(-5px);
}

.badge {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.badge::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: all 0.6s ease;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.badge:hover::before {
    left: 100%;
}

.verified-badge {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-badge {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cod-badge {
    background: linear-gradient(45deg, #3F51B5, #303F9F);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-card:hover .badge-count {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .badge {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .badge-count {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .profile-badges {
        top: 5px;
        right: 5px;
        gap: 3px;
    }
    
    .badge {
        padding: 2px 5px;
        font-size: 8px;
    }
    
    .badge-count {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: 5px;
        left: 5px;
    }
}

.video-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff5722, #ff3366);
    background-size: 200% 100%;
    z-index: 5;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Enhanced Video Showcase Section */
.video-showcase {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    margin-bottom: 70px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 51, 102, 0.2);
    border-radius: 0 0 40px 40px;
    z-index: 10;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.8), transparent);
    z-index: 5;
    animation: shimmerHorizontal 4s infinite;
}

@keyframes shimmerHorizontal {
    0% { opacity: 0.3; background-position: -100% 0; }
    50% { opacity: 1; }
    100% { opacity: 0.3; background-position: 200% 0; }
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
    transition: all 1.5s ease;
    transform-origin: center center;
    animation: subtle-zoom 20s infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(20,20,40,0.7) 0%, 
                rgba(20,20,40,0.4) 50%,
                rgba(80,20,60,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 3;
}

.video-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(10,10,20,0.8), transparent);
    z-index: -1;
}

.video-overlay h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.7), 0 0 30px rgba(255,51,102,0.6);
    font-weight: 800;
    letter-spacing: 1px;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
    animation: fadeInUp 1.2s forwards;
    position: relative;
}

.video-overlay h2 .glowing-text {
    position: relative;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,51,102,0.8), 0 0 20px rgba(255,51,102,0.4);
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 10px rgba(255,51,102,0.6), 0 0 20px rgba(255,51,102,0.3); }
    100% { text-shadow: 0 0 15px rgba(255,51,102,0.9), 0 0 30px rgba(255,51,102,0.6); }
}

.premium-service-badge {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ff3366, #ff5722);
    color: white;
    font-size: 1rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: 15px;
    vertical-align: middle;
    top: -5px;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.video-overlay p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.video-overlay p .glowing-text {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255,51,102,0.8), 0 0 20px rgba(255,51,102,0.4);
    animation: pulse-glow 2s infinite alternate;
}

.video-cta-btn {
    padding: 15px 35px;
    font-size: 18px;
    background: linear-gradient(45deg, #ff3366, #ff5722);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5);
    animation: fadeInUp 1s 0.5s forwards, pulse 2s infinite;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.video-cta-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: all 0.6s ease;
}

.video-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 51, 102, 0.6);
}

.video-cta-btn:hover::before {
    left: 100%;
    transition: all 0.6s ease;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5); }
    50% { box-shadow: 0 8px 25px rgba(255, 51, 102, 0.8); }
    100% { box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5); }
}

@media (max-width: 992px) {
    .video-overlay h2 {
        font-size: 3.5rem;
    }
    
    .video-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        height: 70vh;
        min-height: 450px;
        margin-bottom: 50px;
    }
    
    .video-overlay h2 {
        font-size: 2.8rem;
    }
    
    .video-overlay p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .premium-service-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .video-cta-btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .video-showcase {
        height: 60vh;
        min-height: 400px;
        border-radius: 0 0 25px 25px;
    }
    
    .video-overlay h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .video-overlay p {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 90%;
    }
    
    .premium-service-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-left: 8px;
        top: -3px;
    }
    
    .video-cta-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Add animated bottom border to video showcase */
.video-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff5722, #ff3366);
    background-size: 200% 100%;
    z-index: 5;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Rate Chart Section */
.rate-chart-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.97), rgba(30, 20, 40, 0.97));
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rate-chart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/luxury-pattern.png') repeat;
    opacity: 0.05;
    animation: shimmerBg 15s linear infinite;
}

@keyframes shimmerBg {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.rate-chart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.rate-chart-section .section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff3366, #ff9eb5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(255, 51, 102, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.rate-chart-section .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #ff9eb5;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.rate-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.rate-chart {
    background: rgba(45, 45, 65, 0.7);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rate-chart:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 51, 102, 0.3);
}

.rate-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff3366, #ff9eb5);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.rate-chart:hover::before {
    height: 7px;
    opacity: 1;
}

.rate-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-chart h3 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rate-badge {
    background: linear-gradient(45deg, #ff3366, #ff9eb5);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
    letter-spacing: 0.5px;
}

.rate-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.rate-table th, 
.rate-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.rate-table th {
    font-weight: 600;
    color: #ff9eb5;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.05);
}

.rate-table tr:last-child td {
    border-bottom: none;
}

.rate-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.07);
    transform: scale(1.01);
}

.rate-table td:first-child {
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
}

.rate-table td:nth-child(2) {
    color: #ff9eb5;
    font-weight: 600;
    font-size: 1.1rem;
}

.rate-table td:nth-child(3) {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 768px) {
    .rate-chart-section {
        padding: 60px 0;
    }
    
    .rate-chart-section .section-title {
        font-size: 2.2rem;
    }
    
    .rate-charts {
        grid-template-columns: 1fr;
    }
    
    .rate-chart {
        padding: 20px;
    }
    
    .rate-chart h3 {
        font-size: 1.5rem;
    }
    
    .rate-table th, 
    .rate-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Rate Chart Responsive Styles */
@media (max-width: 1200px) {
    .rate-charts {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .rate-chart-section .section-title {
        font-size: 2.8rem;
    }

    .rate-chart-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .rate-chart-section {
        padding: 80px 0;
    }

    .rate-chart-section .section-title {
        font-size: 2.5rem;
    }

    .rate-chart-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .rate-chart {
        padding: 25px;
    }

    .rate-chart h3 {
        font-size: 1.8rem;
    }

    .rate-badge {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .rate-charts {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rate-chart-section {
        padding: 60px 0;
    }

    .rate-chart-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .rate-chart-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .rate-chart {
        padding: 20px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .rate-chart-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .rate-chart h3 {
        font-size: 1.6rem;
    }

    .rate-badge {
        padding: 5px 12px;
        font-size: 0.85rem;
    }

    .rate-table th, 
    .rate-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .rate-table td:first-child {
        font-size: 1rem;
    }

    .rate-table td:nth-child(2) {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .rate-chart-section {
        padding: 40px 0;
    }

    .rate-chart-section .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .rate-chart-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .rate-charts {
        gap: 20px;
    }

    .rate-chart {
        padding: 15px;
        margin: 0 5px;
        border-radius: 12px;
    }

    .rate-chart-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .rate-chart h3 {
        font-size: 1.4rem;
    }

    .rate-badge {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .rate-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .rate-table::-webkit-scrollbar {
        height: 6px;
    }

    .rate-table::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .rate-table::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .rate-table th, 
    .rate-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .rate-table td:first-child {
        font-size: 0.9rem;
    }

    .rate-table td:nth-child(2) {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .rate-chart-section .section-title {
        font-size: 1.6rem;
    }

    .rate-chart-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .rate-chart {
        padding: 12px;
        margin: 0 3px;
    }

    .rate-chart h3 {
        font-size: 1.3rem;
    }

    .rate-table th, 
    .rate-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    .rate-badge {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
}

/* Add smooth scrolling for the rate table on touch devices */
@media (hover: none) {
    .rate-table {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* Prevent hover effects on touch devices */
@media (hover: none) {
    .rate-chart:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .rate-table tr:hover td {
        transform: none;
        background-color: transparent;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .rate-chart {
        background: rgba(35, 35, 50, 0.7);
    }

    .rate-table th {
        background: rgba(255, 255, 255, 0.03);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .rate-chart {
        border: 2px solid #fff;
    }

    .rate-table th, 
    .rate-table td {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .rate-chart {
        transition: none;
    }

    .rate-chart:hover {
        transform: none;
    }

    .rate-table tr:hover td {
        transform: none;
    }
}

/* Enhanced Home Screen Responsive Styles */

/* Video Showcase Responsive */
@media (max-width: 992px) {
    .video-showcase {
        height: 70vh;
        min-height: 500px;
        border-radius: 0 0 30px 30px;
    }

    .video-overlay h2 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .video-overlay p {
        font-size: 1.1rem;
    }

    .premium-service-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        height: 60vh;
        min-height: 400px;
        border-radius: 0 0 25px 25px;
    }

    .video-overlay h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .video-overlay p {
        font-size: 1rem;
        max-width: 90%;
    }

    .video-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .video-showcase {
        height: 50vh;
        min-height: 350px;
        border-radius: 0 0 20px 20px;
    }

    .video-overlay h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .video-overlay p {
        font-size: 0.9rem;
        max-width: 95%;
    }

    .video-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Profile Grid Responsive */
@media (max-width: 1200px) {
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .profile-image-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .profile-image-container {
        height: 200px;
    }

    .profile-info {
        padding: 12px;
    }

    .profile-name {
        font-size: 1.1rem;
    }

    .profile-location {
        font-size: 0.85rem;
    }

    .action-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 8px;
    }

    .profile-image-container {
        height: 180px;
    }

    .profile-info {
        padding: 10px;
    }

    .profile-name {
        font-size: 1rem;
    }

    .profile-location {
        font-size: 0.8rem;
    }

    .action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Location Cards Responsive */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .location-card-enhanced {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .location-card-enhanced {
        height: 280px;
    }

    .location-title {
        font-size: 1.4rem;
    }

    .location-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .location-card-enhanced {
        height: 250px;
    }

    .location-title {
        font-size: 1.2rem;
    }

    .location-desc {
        font-size: 0.85rem;
    }

    .location-stats {
        flex-direction: column;
        gap: 5px;
    }

    .location-stat {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card-enhanced {
        height: 220px;
    }

    .location-title {
        font-size: 1.1rem;
    }

    .location-desc {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .location-stat {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Stats Section Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        padding: 12px;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 15px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content {
        font-size: 0.9rem;
    }

    .testimonial-author .author-name {
        font-size: 1rem;
    }

    .testimonial-author .author-location {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 15px;
    }

    .testimonial-content {
        font-size: 0.85rem;
    }

    .testimonial-controls {
        margin-top: 20px;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
}

/* Navigation and Header Responsive */
@media (max-width: 992px) {
    .top-bar {
        padding: 0 15px;
    }

    .logo {
        width: 200px;
    }

    .contact-info a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0 12px;
    }

    .logo {
        width: 180px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-info {
        display: none;
    }

    .search-container {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 0 10px;
    }

    .logo {
        width: 160px;
    }

    .search-container {
        padding: 10px;
    }

    .advanced-search-input {
        font-size: 0.9rem;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

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

@media (max-width: 576px) {
    .footer-content {
        padding: 0 12px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-contact-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Utility Classes for Responsive Design */
.hide-on-mobile {
    display: none !important;
}

@media (min-width: 769px) {
    .hide-on-desktop {
        display: none !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .profile-card:hover,
    .location-card:hover,
    .stat-card:hover {
        transform: none;
    }

    .action-btn:hover,
    .location-cta:hover,
    .footer-contact-btn:hover {
        transform: none;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .location-card-enhanced,
    .location-icon,
    .location-cta,
    .mobile-menu-toggle,
    .search-btn,
    .view-all-btn {
        transform: none !important;
        transition: none !important;
    }

    .shimmer,
    .header::before,
    .logo-link::after {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    /* Improved action buttons for medium-sized mobile devices */
    .action-btn {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .action-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    /* Stack profile actions vertically on small mobile devices */
    .profile-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    /* Larger, more touch-friendly buttons */
    .action-btn {
        min-height: 50px;
        padding: 12px 15px;
        font-size: 16px;
        justify-content: center;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .action-btn svg {
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }
}

/* Extra small screen enhancements */
@media (max-width: 375px) {
    .action-btn {
        min-height: 56px;
        padding: 14px;
    }
}

/* Touch device optimizations for buttons */
@media (hover: none) and (pointer: coarse) {
    .action-btn {
        min-height: 48px;
    }
    
    @media (max-width: 576px) {
        .action-btn {
            min-height: 54px;
        }
    }
}

/* Enhanced Prime Locations Section */
.featured-locations {
    margin-bottom: 60px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Enhanced location cards with improved responsiveness */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .location-card-enhanced {
        height: 360px;
    }
    
    .location-content {
        padding: 30px;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .location-desc {
        font-size: 15px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.5;
    }
    
    .location-stat {
        padding: 10px 18px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .location-cta {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

/* Sticky Contact Buttons Styles */
.sticky-contact-buttons.horizontal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    z-index: 9999;
    height: 60px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
}

.sticky-contact-buttons.horizontal .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    height: 60px;
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
    cursor: pointer;
}

.sticky-contact-buttons.horizontal .sticky-btn:hover,
.sticky-contact-buttons.horizontal .sticky-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-contact-buttons.horizontal .sticky-btn:active {
    transform: translateY(1px);
}

.sticky-contact-buttons.horizontal .sticky-btn svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}

.sticky-contact-buttons.horizontal .btn-text {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.sticky-contact-buttons.horizontal .sticky-call {
    background: linear-gradient(135deg, #ff3366, #ff5e62);
}

.sticky-contact-buttons.horizontal .sticky-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Add padding to footer to prevent content being hidden */
footer {
    padding-bottom: 70px !important;
}

/* Ensure scroll-to-top button is above sticky buttons */
.scroll-to-top {
    bottom: 70px !important;
    z-index: 999 !important;
}

@media (max-width: 576px) {
    .sticky-contact-buttons.horizontal .btn-text {
        font-size: 12px;
    }
    
    .sticky-contact-buttons.horizontal .sticky-btn {
        height: 50px;
        padding: 10px;
    }
    
    .sticky-contact-buttons.horizontal .sticky-btn svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    /* Adjust footer padding for smaller buttons on mobile */
    footer {
        padding-bottom: 60px !important;
    }
    
    /* Adjust scroll-to-top button position on mobile */
    .scroll-to-top {
        bottom: 60px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .location-card-enhanced {
        height: 420px;
    }
    
    .location-content {
        padding: 30px 25px;
    }
    
    .location-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .location-desc {
        font-size: 16px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .location-stat {
        padding: 12px 20px;
        font-size: 15px;
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .location-cta {
        padding: 16px 25px;
        font-size: 17px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
    }
}

/* Tablet breakpoint styles */
@media (max-width: 768px) {
    .location-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .location-desc {
        font-size: 15px;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 48px;
    }
    
    .location-stat {
        padding: 10px 15px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
    }
    
    .location-cta {
        font-size: 16px;
        padding: 14px 20px;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .location-content {
        padding: 25px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .location-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .location-desc {
        font-size: 14px;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .location-stat {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .location-cta {
        font-size: 15px;
        padding: 12px 18px;
        margin-top: 10px;
    }
    
    .location-content {
        padding: 25px;
        gap: 12px;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: -15px auto 35px;
    max-width: 800px;
    line-height: 1.6;
    padding: 0 15px;
}

.location-card {
    padding: 25px;
    background: rgba(30, 30, 40, 0.7);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 280px;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.location-card-enhanced {
    padding: 0;
    height: 400px;
    display: block;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.location-card-enhanced:hover .location-content {
    transform: translateY(-5px);
}

.location-card-enhanced:hover .location-overlay {
    background: linear-gradient(165deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.98) 100%);
    opacity: 0.95;
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.location-card-enhanced:hover .location-content {
    transform: translateY(-10px);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.92;
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateZ(0);
}

.location-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    gap: 20px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: -1;
    pointer-events: none;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 102, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.location-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    max-height: 82px;
    letter-spacing: 0.3px;
}

.location-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.location-stat {
    background: rgba(255, 51, 102, 0.15);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    color: #fff;
    border: 1px solid rgba(255, 51, 102, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.location-stat:hover {
    background: rgba(255, 51, 102, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.location-stat strong {
    color: #ff3366;
    font-weight: bold;
}

.location-cta {
    background: linear-gradient(135deg, #ff3366, #ff5722);
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease;
    margin-top: auto;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-height: 24px;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card-enhanced:hover .location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 100%);
}

.location-card-enhanced:hover .location-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.5);
}

.location-card-enhanced:hover .location-cta {
    background: linear-gradient(135deg, #ff3366, #ff7e54);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
    transform: translateY(-5px);
}

.view-all-locations {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.3);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
}

.view-all-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 51, 102, 0.2);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
    transform: translateY(-3px);
}

.view-all-btn:hover svg {
    transform: translateX(8px);
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .location-card-enhanced {
        height: 360px;
    }
    
    .location-title {
        font-size: 26px;
    }
    
    .location-desc {
        font-size: 16px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        max-height: 76px;
    }
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .location-card-enhanced {
        height: 320px;
    }
    
    .location-title {
        font-size: 22px;
    }
    
    .location-desc {
        font-size: 14px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        max-height: 67px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Mobile Landscape Responsiveness */
/* Mobile styles */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .location-card-enhanced {
        height: 280px;
        transform: none;
    }
    
    .location-title {
        font-size: 18px;
        margin-bottom: 8px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }
    
    .location-desc {
        font-size: 13px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 42px;
        line-height: 1.5;
    }
    
    .location-stats {
        margin-bottom: 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .location-stat {
        font-size: 12px;
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .location-cta {
        padding: 12px 15px;
        font-size: 14px;
        min-height: 44px;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        box-shadow: 0 3px 10px rgba(255, 51, 102, 0.3);
    }
    
    .location-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .location-content {
        padding: 20px;
        gap: 10px;
    }
    
    .view-all-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: calc(100% - 30px);
        margin: 0 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 15px;
        line-height: 1.6;
    }
}

/* Mobile Portrait Responsiveness */
@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .location-card-enhanced {
        height: 220px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .location-desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 42px;
    }
    
    .location-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 375px) {
    .location-card-enhanced {
        height: 200px;
    }
    
    .location-content {
        padding: 12px;
    }
    
    .location-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .location-desc {
        font-size: 12px;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 38px;
    }
    
    .location-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    .location-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .location-stat {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .location-cta {
        padding: 8px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .view-all-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* Touch interactions for mobile devices */
.location-card-enhanced.touch-active {
    transform: scale(0.98);
    transition: transform 0.2s ease;
}

.location-card-enhanced.in-view {
    animation: cardFadeIn 0.6s ease forwards;
}

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

/* Additional responsive improvements for location cards */
@media (hover: none) and (pointer: coarse) {
    .location-card-enhanced .location-cta {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(135deg, #ff3366, #ff5722);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        padding: 12px 20px;
    }
    
    .location-card-enhanced:active {
        transform: scale(0.98);
    }
    
    /* Ensure tap targets are large enough */
    .location-card-enhanced {
        min-height: 180px;
    }
    
    @media (max-width: 576px) {
        .location-card-enhanced .location-cta {
            min-height: 44px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 375px) {
        .location-card-enhanced .location-cta {
            min-height: 40px;
            font-size: 13px;
        }
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .location-card-enhanced,
    .location-card-enhanced:hover,
    .location-icon,
    .location-card-enhanced:hover .location-icon,
    .location-cta,
    .location-card-enhanced:hover .location-cta,
    .view-all-btn,
    .view-all-btn:hover,
    .view-all-btn svg,
    .view-all-btn:hover svg {
        transition: none;
        transform: none;
        animation: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
    .location-card {
        border: 2px solid #fff;
    }
    
    .location-stat {
        border: 2px solid #fff;
    }
    
    .location-stat strong {
        color: #ff99aa;
    }
}

/* Keyboard focus styles for accessibility */
.location-card-enhanced.keyboard-focus {
    outline: 3px solid #ff3366;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.5);
    transform: translateY(-5px);
}

/* Ensure focus is visible even when reduced motion is preferred */
@media (prefers-reduced-motion: reduce) {
    .location-card-enhanced.keyboard-focus {
        outline: 3px solid #ff3366;
        outline-offset: 3px;
    }
}

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

/* Keep the nav overlay styles */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Review card animations */
.review-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for review cards */
.review-cards .review-card:nth-child(1) { transition-delay: 0.1s; }
.review-cards .review-card:nth-child(2) { transition-delay: 0.2s; }
.review-cards .review-card:nth-child(3) { transition-delay: 0.3s; }
.review-cards .review-card:nth-child(4) { transition-delay: 0.4s; }
.review-cards .review-card:nth-child(5) { transition-delay: 0.5s; }
.review-cards .review-card:nth-child(6) { transition-delay: 0.6s; }
.review-cards .review-card:nth-child(7) { transition-delay: 0.7s; }
.review-cards .review-card:nth-child(8) { transition-delay: 0.8s; }

/* Animate other sections */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced pagination styles */
.pagination {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.page-button:hover::before {
    width: 120%;
    height: 120%;
}

.page-button.active {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.page-dots:hover {
    opacity: 1;
}

/* Rating bar animations */
.rating-bar {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-bar.in-view {
    transform: translateX(0);
    opacity: 1;
}

.rating-bar:nth-child(1) { transition-delay: 0.1s; }
.rating-bar:nth-child(2) { transition-delay: 0.2s; }
.rating-bar:nth-child(3) { transition-delay: 0.3s; }
.rating-bar:nth-child(4) { transition-delay: 0.4s; }
.rating-bar:nth-child(5) { transition-delay: 0.5s; }

.bar-fill {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-bar.in-view .bar-fill {
    transform: scaleX(1);
}

/* Filter button animations */
.filter-button {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters.in-view .filter-button {
    transform: translateY(0);
    opacity: 1;
}

.filters .filter-button:nth-child(1) { transition-delay: 0.1s; }
.filters .filter-button:nth-child(2) { transition-delay: 0.15s; }
.filters .filter-button:nth-child(3) { transition-delay: 0.2s; }
.filters .filter-button:nth-child(4) { transition-delay: 0.25s; }
.filters .filter-button:nth-child(5) { transition-delay: 0.3s; }
.filters .filter-button:nth-child(6) { transition-delay: 0.35s; }
.filters .filter-button:nth-child(7) { transition-delay: 0.4s; }
.filters .filter-button:nth-child(8) { transition-delay: 0.45s; }

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .review-card,
    .animate-on-scroll,
    .pagination,
    .rating-bar,
    .filter-button,
    .bar-fill {
        transition: opacity 0.3s ease-in-out;
        transform: none;
    }

    .review-card.in-view,
    .animate-on-scroll.in-view,
    .pagination.in-view,
    .rating-bar.in-view,
    .filters.in-view .filter-button {
        transform: none;
    }

    .review-cards .review-card,
    .rating-bar,
    .filters .filter-button {
        transition-delay: 0s !important;
    }
}

/* Loading state for pagination changes */
.review-cards.loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Smooth transition for review cards */
.review-card {
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.review-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

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