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

:root {
    /* Color Variables */
    --primary: #0a1628;
    --primary-foreground: #ffffff;
    --secondary: #f59e0b;
    --secondary-foreground: #0a1628;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --accent: #f59e0b;
    --border: #e2e8f0;
    --background: #ffffff;
    --foreground: #0a1628;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

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

.nav-link.active {
    color: var(--secondary);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--secondary);
}

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

.contact-item a:hover {
    color: var(--secondary);
}

.phone-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #d97706;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 10%, rgba(10, 22, 40, 0.40) 50%, rgba(10, 22, 40, 0.90) 100%);
    padding-top: 80px; /* Account for fixed header height */
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.50) 50%, rgba(10, 22, 40, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 153, 16, 0.15);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 3rem;
}

.btn-cta {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary), #d97706);
    color: var(--secondary-foreground);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-premium {
    background: var(--primary);
    color: var(--primary-foreground);
    width: 100%;
}

.btn-premium:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* Form Styles */
.hero-form {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 30rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 0.8s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group.focused {
    transition: all 0.2s ease;
}

.form-group.focused input,
.form-group.focused select {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer p {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 3rem;
}

.project-highlights {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.project-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* 5-in-1 Destination Section */
.destination-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.destination-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="destinationPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="10" cy="70" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23destinationPattern)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.destination-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.destination-card.retail::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.destination-card.sports::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.destination-card.cultural::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.destination-card.food::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.destination-card.hospitality::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card:hover::before {
    height: 6px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.destination-card.retail .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.destination-card.sports .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.destination-card.cultural .card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.destination-card.food .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.destination-card.hospitality .card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.destination-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.destination-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.destination-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.destination-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.destination-cta h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.destination-cta p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: white;
    color: var(--muted-foreground);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 2rem;
}

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

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.gallery-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.gallery-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.gallery-cta h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.gallery-cta p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Animation Classes */
.gallery-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-card.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Trust & Security Section */
.trust-security-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.trust-security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trustPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="70" cy="70" r="2" fill="%23f59e0b" opacity="0.1"/><circle cx="50" cy="20" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="20" cy="80" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23trustPattern)"/></svg>');
    opacity: 0.3;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.trust-stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-stat-item:hover::before {
    transform: scaleX(1);
}

.trust-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trust-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-item .stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.trust-card.government::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.trust-card.regulatory::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.trust-card.media::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trust-card:hover::before {
    height: 6px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-card.government .trust-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.trust-card.regulatory .trust-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.trust-card.media .trust-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-coverage {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.media-coverage .media-header {
    text-align: center;
    margin-bottom: 3rem;
}

.media-coverage .media-header h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.media-coverage .media-header p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.media-card {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.media-card:hover::before {
    transform: scaleX(1);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.media-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.media-logo {
    height: 12px;
    width: auto;
    object-fit: contain;
}

.media-badge {
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-content h4 {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-content h5 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.media-excerpt {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.media-button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.media-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.media-button:hover::before {
    left: 100%;
}

.media-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Available Units Section */
.availability-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.pricing-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.floor-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.floor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.floor-card.ground-floor::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.floor-card.first-floor::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.floor-card.restaurant-floor::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.floor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floor-card:hover::before {
    height: 6px;
}

.floor-header {
    margin-bottom: 1.5rem;
}

.floor-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floor-type {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.floor-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.floor-area, .floor-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.area-label, .price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.area-value, .price-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.price-value {
    color: var(--secondary);
}

.floor-features {
    margin-bottom: 2rem;
}

.floor-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.floor-features .feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.floor-actions {
    text-align: center;
}

.floor-note {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    margin-top: 0.75rem;
    font-style: italic;
}

.availability-actions {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.investment-highlight {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.investment-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.investment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.investment-text h4 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.investment-text p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.investment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-highlight {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.feature-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Location Map Section */
.location-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="locationPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23f59e0b" opacity="0.1"/><circle cx="40" cy="60" r="0.5" fill="%23f59e0b" opacity="0.1"/><circle cx="60" cy="40" r="0.5" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23locationPattern)"/></svg>');
    opacity: 0.3;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.map-container {
    position: relative;
}

.map-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.4s ease;
}

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

.map-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--secondary), #d97706);
    color: white;
    text-align: center;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.map-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-card:hover .map-iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-info {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-badge {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.connectivity-details {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: fit-content;
}

.connectivity-header {
    margin-bottom: 2rem;
    text-align: center;
}

.connectivity-header h3 {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.connectivity-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.connectivity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connectivity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.connectivity-card.metro::before {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.connectivity-card.airport::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.connectivity-card.highway::before {
    background: linear-gradient(180deg, #8b5cf6, #7c3aed);
}

.connectivity-card.expressway::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.connectivity-card.business::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.connectivity-card.it-hub::before {
    background: linear-gradient(180deg, #06b6d4, #0891b2);
}

.connectivity-card:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.connectivity-card:hover::before {
    width: 6px;
}

.connectivity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.connectivity-card.metro .connectivity-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.connectivity-card.airport .connectivity-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.connectivity-card.highway .connectivity-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.connectivity-card.expressway .connectivity-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.connectivity-card.business .connectivity-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.connectivity-card.it-hub .connectivity-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.connectivity-card:hover .connectivity-icon {
    transform: scale(1.1) rotate(5deg);
}

.connectivity-info {
    flex: 1;
}

.connectivity-info h4 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.connectivity-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.connectivity-meta {
    display: flex;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 500;
}

.meta-item svg {
    color: var(--secondary);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(245, 158, 11, 0.05);
}

.faq-question h3 {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--secondary);
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(245, 158, 11, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: var(--primary-foreground);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-foreground);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust hero section padding for tablet */
    .hero-section {
        padding-top: 75px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-form {
        justify-content: center;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .footer-disclaimer {
        padding-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.7rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        padding: 2rem 1.5rem;
    }
    
    .destination-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .destination-cta {
        padding: 2rem 1.5rem;
    }
    
    .destination-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .gallery-cta {
        padding: 2rem 1.5rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-stat-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-stat-item .stat-number {
        font-size: 2rem;
    }
    
    .trust-factors {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-coverage {
        padding: 2rem 1.5rem;
    }
    
    .media-coverage .media-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .form-card {
        padding: 1rem;
    }
    
    .destination-stats {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .destination-cta h3 {
        font-size: 1.25rem;
    }
    
    .destination-cta p {
        font-size: 1rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.25rem;
    }
    
    .gallery-cta p {
        font-size: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.25rem;
    }
    
    .overlay-content p {
        font-size: 0.875rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-stat-item .stat-number {
        font-size: 1.75rem;
    }
    
    .media-coverage .media-header h3 {
        font-size: 1.25rem;
    }
    
    .media-coverage .media-header p {
        font-size: 1rem;
    }
    
    .media-content h4 {
        font-size: 1rem;
    }
    
    .media-content h5 {
        font-size: 0.875rem;
    }
    
    .pricing-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floor-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floor-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .investment-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .investment-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .connectivity-details {
        padding: 1.5rem;
    }
    
    .connectivity-header h3 {
        font-size: 1.5rem;
    }
    
    .connectivity-card {
        padding: 1rem;
    }
    
    .connectivity-icon {
        width: 40px;
        height: 40px;
    }
    
    .connectivity-info h4 {
        font-size: 0.875rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .map-header {
        padding: 1rem 1.5rem;
    }
    
    .map-header h3 {
        font-size: 1.25rem;
    }
    
    .map-info {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .connectivity-details {
        padding: 1rem;
    }
    
    .connectivity-header h3 {
        font-size: 1.25rem;
    }
    
    .connectivity-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .connectivity-icon {
        width: 35px;
        height: 35px;
    }
    
    .connectivity-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Navigation Responsive */
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    /* Mobile Navigation */
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .main-navigation.active .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    .main-navigation.active .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-navigation.active .nav-item:last-child {
        border-bottom: none;
    }
    
    .main-navigation.active .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: none;
    }
    
    .main-navigation.active .nav-link::after {
        display: none;
    }
    
    .main-navigation.active .nav-link:hover {
        background: rgba(245, 158, 11, 0.1);
        color: var(--secondary);
    }
    
    /* Adjust hero section padding for mobile */
    .hero-section {
        padding-top: 70px;
    }
    
    /* Footer Mobile Optimization */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        gap: 0.25rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-disclaimer {
        padding-top: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.65rem;
        line-height: 1.3;
        text-align: left;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 0.75rem;
    }
    
    .footer-bottom p {
        line-height: 1.4;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-section p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    
    .contact-item {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .contact-item svg {
        width: 12px;
        height: 12px;
    }
    
    .footer-disclaimer p {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
        padding-top: 0.5rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Loading animation for form submission */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Restore yellow hover effect for select options */
select option {
    background-color: white;
    color: var(--foreground);
    padding: 0.5rem;
    transition: all 0.2s ease;
}

select option:hover {
    background-color: var(--secondary) !important;
    color: var(--secondary-foreground) !important;
}

select option:checked {
    background-color: var(--secondary) !important;
    color: var(--secondary-foreground) !important;
}

/* Placeholder styling for disabled selected options */
select option:disabled {
    color: var(--muted-foreground) !important;
    font-weight: normal !important;
}

/* Ensure placeholder option has muted color */
select option[value=""] {
    color: var(--muted-foreground);
}

