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

/* ============================================
   NORTEK - Professional CSS Stylesheet
   ============================================ */

/* CSS Variables - Nortek Brand Colors */
:root {
    --nortek-black: #000000;
    --nortek-dark-gray: #1a1a1a;
    --nortek-gray: #333333;
    --nortek-light-gray: #f5f5f5;
    --nortek-red: #e74c3c;
    --nortek-dark-red: #c0392b;
    --nortek-light-red: #ec7063;
    --nortek-blue: #2c3e50;
    --nortek-dark-blue: #1b2631;
    --nortek-light-blue: #3498db;
    --nortek-sky-blue: #87ceeb;
    --nortek-navy: #001f3f;
    --vh: 1vh;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--nortek-light-gray);
    line-height: 1.6;
    color: var(--nortek-gray);
}

/* ============================================
   LAYOUT & UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--nortek-black) 0%, var(--nortek-dark-gray) 100%);
}

.h-screen {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.sticky-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nortek-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    min-width: 14rem;
    z-index: 50;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0.75rem 1rem;
    color: var(--nortek-gray);
    text-decoration: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--nortek-red);
    transform: translateX(-100%);
    transition: transform 0.2s ease;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-item:hover {
    background: rgba(231, 76, 60, 0.05);
    color: var(--nortek-red);
}

/* Mobile Menu */
.mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    z-index: 60;
    padding: 1rem;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--nortek-red);
    border: 2px solid var(--nortek-red);
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
}

.mobile-menu-btn:hover {
    background: var(--nortek-red);
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--nortek-red) 0%, var(--nortek-dark-red) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--nortek-red);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.slide {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    position: absolute;
    inset: 0;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide-subtitle {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out 0.4s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.6s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slide-bg {
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: var(--nortek-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.3);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--nortek-red);
    width: 0;
    transition: width 5s linear;
    z-index: 21;
}

.slide.active .slider-progress {
    width: 100%;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--nortek-light-gray);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: all 0.4s ease;
    transform: translateX(-100%);
    pointer-events: none;
}

.card-hover:hover::before {
    transform: translateX(100%);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(220, 20, 60, 0.25);
    border-color: var(--nortek-red);
    border-width: 3px;
}

.service-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ============================================
   CUSTOMERS SLIDER
   ============================================ */

#logoSlider img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: none !important;
    user-select: none !important;
    max-height: 6rem;
    width: auto;
    object-fit: contain;
}

#logoSlider .logo-item {
    position: relative;
    z-index: 5;
}

#customers {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

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

.float-animation {
    animation: float 0.1s ease-in-out infinite;
}

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(220, 20, 60, 0.3); }
    to { box-shadow: 0 0 20px rgba(220, 20, 60, 0.6); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

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

.stagger-animation {
    animation: stagger 0.8s ease-out;
    animation-fill-mode: both;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

.text-gradient {
    background: linear-gradient(45deg, var(--nortek-red), var(--nortek-dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.text-nortek-red { color: var(--nortek-red); }
.hover-nortek-red:hover { color: var(--nortek-dark-red); }
.bg-nortek-red { background-color: var(--nortek-red); }
.hover-bg-nortek-red:hover { background-color: var(--nortek-dark-red); }
.bg-nortek-light { background-color: var(--nortek-light-gray); }

/* ============================================
   SECTIONS
   ============================================ */

.cta-section a {
    color: white !important;
}

.cta-section a:hover {
    color: var(--nortek-red) !important;
}

.cta-section .border-2 {
    color: var(--nortek-red) !important;
}

.cta-section .border-2:hover {
    color: white !important;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nortek-black);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--nortek-gray);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .bg-gray-900.text-white.py-2 {
        display: none !important;
    }
    
    header {
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        border-bottom: none !important;
        padding: 1rem 0 !important;
    }
    
    header .container {
        padding: 0 1rem !important;
    }
    
    .logo-img {
        height: 60px !important;
    }
    
    .hero-section h1,
    .slide h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-section p,
    .slide p {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
    }
    
    .card-hover {
        margin-bottom: 1rem;
    }
    
    .slide h2 {
        font-size: 1.8rem !important;
    }
    
    footer .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-section .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    button, a, .btn-primary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-nav {
        display: none !important;
    }
    
    .slider-dots {
        bottom: 1rem;
        gap: 0.75rem;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    .section-padding {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 480px) {
    .bg-gray-900.text-white.py-2 {
        display: none !important;
    }
    
    header {
        padding: 0.75rem 0 !important;
    }
    
    header .container {
        padding: 0 0.75rem !important;
    }
    
    .logo-img {
        height: 50px !important;
    }
    
    .mobile-menu-btn {
        padding: 0.4rem !important;
        font-size: 1rem !important;
        width: 40px;
        height: 40px;
    }
    
    .hero-section h1,
    .slide h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p,
    .slide p {
        font-size: 1rem !important;
    }
    
    .slide h2 {
        font-size: 1.5rem !important;
    }
    
    .container {
        padding: 0 0.5rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mobile-menu {
        width: 85%;
    }
    
    .nav-link {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .card-hover {
        padding: 1rem !important;
    }
    
    .btn-primary {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .card-hover:hover {
        transform: none;
    }
    
    button:active, a:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .slider-dot {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .slide {
        padding: 1rem 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--nortek-red);
}

.footer-link i {
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing */
.p-4 { padding: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.m-auto { margin: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
}

/* ============================================
   FIX FOR DOWNLOAD LINKS
   ============================================ */

/* Fix for download links in cards */
.card-hover a,
.bg-gray-50 a {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.card-hover:hover a {
    position: relative !important;
    z-index: 101 !important;
}

/* Ensure download buttons are always clickable */
.inline-block.bg-nortek-red {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* ============================================
   NORTERK PRESENCE PAGE STYLES
   ============================================ */

/* Airport Cards Modern Design */
.airport-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.airport-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.15);
    border-color: var(--nortek-red);
}

.airport-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.airport-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.airport-card:hover .airport-card-image img {
    transform: scale(1.1);
}

.airport-card-content {
    padding: 24px;
    text-align: center;
}

.airport-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nortek-gray);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.airport-card-subtitle {
    font-size: 0.875rem;
    color: var(--nortek-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.airport-card-description {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Location Badge */
.location-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nortek-red);
    border: 1px solid rgba(220, 20, 60, 0.2);
}

/* Grid Layout */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 32px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .airports-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .airport-card-image {
        height: 160px;
    }
    
    .airport-card-content {
        padding: 20px;
    }
}

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

/* Loading State */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ============================================
   PAKISTAN LANDMARKS SECTION
   ============================================ */

/* Landmarks Section */
.landmarks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.city-section {
    margin-bottom: 80px;
}

.city-header {
    text-align: center;
    margin-bottom: 48px;
}

.city-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nortek-gray);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.city-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Landmark Cards */
.landmark-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
}

.landmark-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.2);
    border-color: var(--nortek-red);
}

.landmark-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.landmark-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landmark-card:hover .landmark-image {
    transform: scale(1.15);
}

.landmark-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 24px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landmark-card:hover .landmark-overlay {
    opacity: 1;
}

.landmark-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--nortek-red);
    border: 2px solid rgba(220, 20, 60, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landmark-content {
    padding: 24px;
    text-align: center;
}

.landmark-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--nortek-gray);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.landmark-location {
    font-size: 0.875rem;
    color: var(--nortek-red);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.landmark-location::before {
    content: "📍";
}

.landmark-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landmarks-section {
        padding: 60px 0;
    }
    
    .city-section {
        margin-bottom: 60px;
    }
    
    .city-title {
        font-size: 2rem;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .landmark-image-container {
        height: 240px;
    }
    
    .landmark-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .landmark-image-container {
        height: 200px;
    }
    
    .landmark-name {
        font-size: 1.25rem;
    }
    
    .landmark-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Loading State for Images */
.landmark-loading {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: landmarkLoading 1.8s infinite;
}

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