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

/* Color Variables - Modern Luxury Dubai Style */
:root {
    --primary-color: #0a1929;
    --secondary-color: #1e3a5f;
    --accent-color: #d4af37;
    --accent-gold: #c9a96e;
    --accent-blue: #2d5aa0;
    --text-dark: #1a1a1a;
    --text-light: #5a6c7d;
    --text-muted: #8b9db3;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #0f1e35;
    --border-light: #e8ecef;
    --shadow-light: rgba(10, 25, 41, 0.08);
    --shadow-medium: rgba(10, 25, 41, 0.15);
    --shadow-strong: rgba(10, 25, 41, 0.25);
    --gradient-primary: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c9a96e 100%);
    --gradient-accent: linear-gradient(135deg, #2d5aa0 0%, #1e3a5f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.011em;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography - Modern Luxury Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 4rem;
    margin-top: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 20px rgba(10, 25, 41, 0.08);
    border-bottom: 1px solid rgba(232, 236, 239, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(10, 25, 41, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(10, 25, 41, 0.3);
}

.nav-logo h2 {
    font-size: 1.65rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.975rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    letter-spacing: 0.01em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: auto;
    transform: none;
}

.hero-image-1 {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(0, 0, 0, 0.4)), 
                url('img.jpg');
    opacity: 1;
    position: absolute;
    z-index: 0;
    transform: none !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.hero-badge span:last-child {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.hero-offer {
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

.offer-badge i {
    font-size: 1.1rem;
}

.hero-guarantee {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
}

/* Hero offer removed for clean design */

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Hero guarantee removed for clean design */

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Shimmer effect removed for clean Lodha style */

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: scaleIn 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    animation: heartbeat 2s infinite 1.5s;
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
    text-align: center;
    color: #fff;
}

.stat h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-value {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-highlight {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.feature-card {
    background: #fff;
    padding: 2.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(10, 25, 41, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.feature-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.feature-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-card:nth-child(3) {
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.feature-card:nth-child(4) {
    animation: fadeInLeft 0.8s ease-out 0.8s both;
}

.feature-card:nth-child(5) {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.feature-card:nth-child(6) {
    animation: fadeInRight 0.8s ease-out 1.2s both;
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.1rem;
    color: #fff;
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(10, 25, 41, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotateIn 2s linear infinite;
}

.feature-card:hover .feature-icon {
    animation: morphing 1s ease-in-out infinite, glow 2s infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Properties Section - Lodha Style */
.properties {
    padding: 8rem 0;
    background: var(--bg-light);
}

.properties-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Urgency banner removed for clean design */

.property-card.featured {
    border: 3px solid #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    transform: scale(1.02);
}

/* Property discount removed for clean design */

.property-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    z-index: 2;
}

/* Original price removed for clean design */

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
}

/* Property ROI removed for clean design */

/* Property offer removed for clean design */

.property-description {
    margin: 15px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.properties-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

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

.property-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

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

.property-card:nth-child(1) {
    animation: flipInX 0.8s ease-out 0.2s both;
}

.property-card:nth-child(2) {
    animation: flipInY 0.8s ease-out 0.4s both;
}

.property-card:nth-child(3) {
    animation: rollIn 0.8s ease-out 0.6s both;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px var(--shadow-medium);
    border-color: var(--accent-color);
}

.property-card.featured {
    animation: jackInTheBox 1s ease-out 0.2s both;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
    transform: scale(1.01);
}

/* Glow animation removed for clean Lodha style */

.property-image {
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.property-image-marina {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(168, 85, 247, 0.7)), 
                url('img.jpg');
}

.property-image-palm {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(168, 85, 247, 0.6)), 
                url('img.jpg');
}

.property-image-downtown {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(168, 85, 247, 0.5)), 
                url('img.jpg');
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.property-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-action-btn:hover {
    background: #8b5cf6;
    color: #fff;
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.property-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.property-badge.luxury {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.property-badge.modern {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.property-content {
    padding: 2rem;
}

.property-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.property-location {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.property-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.property-features span {
    background: var(--bg-light);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.lead-magnet-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.lead-value {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.lead-value span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.6rem;
}

.lead-benefits {
    list-style: none;
    margin: 2rem 0;
}

.lead-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.lead-benefits li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lead-urgency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.lead-urgency i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.lead-urgency span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.lead-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(10, 25, 41, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

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

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

.lead-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.lead-form .form-group input,
.lead-form .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.lead-form .form-group input:focus,
.lead-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy i {
    color: var(--accent-color);
}

.form-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.form-guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-guarantee i {
    color: var(--accent-color);
}

/* Trust Badges Section */
.trust-badges {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.trust-badge-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(10, 25, 41, 0.08);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(10, 25, 41, 0.2);
}

.trust-badge-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-badge-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.final-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.final-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-features i {
    color: var(--accent-color);
}

/* Responsive for Lead Magnet */
@media (max-width: 968px) {
    .lead-magnet-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lead-magnet {
        padding: 60px 0;
    }
    
    .lead-form-container {
        padding: 2rem;
    }
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.brand-card {
    background: var(--bg-white);
    padding: 2.75rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(10, 25, 41, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 45px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo i {
    font-size: 3.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-card:hover .brand-logo i {
    transform: scale(1.15) rotate(5deg);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.brand-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.brands-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.brands-cta .cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Animation for brand cards */
.brand-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.brand-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.brand-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.brand-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.brand-card:nth-child(5) {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.brand-card:nth-child(6) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive adjustments for brands section */
@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .brand-card {
        padding: 2rem 1.5rem;
    }

    .brand-logo i {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }
}

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

    .brand-card {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e5e7eb);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(10, 25, 41, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-100px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.testimonial-card:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.testimonial-card:nth-child(3) {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-left-color: var(--accent-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.author-roi {
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-cta {
    margin-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

.about-feature i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(168, 85, 247, 0.6)), 
                url('img.jpg');
    background-size: cover;
    background-position: center;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.about-stat {
    text-align: center;
    color: #fff;
}

.about-stat h4 {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Urgency timer removed for clean design */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact offers removed for clean design */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(8px);
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--accent-color);
    width: 35px;
    transition: all 0.3s ease;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    color: white;
}

.contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-item span {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(10, 25, 41, 0.3);
}

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

.form-header h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Form guarantee removed for clean design */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #8b5cf6;
    color: #fff;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8b5cf6;
    width: 30px;
}

.contact-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 70px 0 25px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-section h3 {
    font-size: 1.9rem;
    margin: 0;
    font-weight: 700;
}

.footer-section h3 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

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

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

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

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

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

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
    }
}

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

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: #8b5cf6;
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 50% 50% 50% 50%;
    }
    25% {
        border-radius: 30% 70% 50% 50%;
    }
    50% {
        border-radius: 50% 30% 70% 50%;
    }
    75% {
        border-radius: 70% 50% 30% 70%;
    }
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.05);
    }
    75% {
        transform: scale(1.1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes lightSpeedIn {
    from {
        opacity: 0;
        transform: translateX(100%) skewX(-30deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Loading States and Micro-interactions */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

.pulse {
    animation: heartbeat 2s infinite;
}

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

.wiggle {
    animation: shake 0.5s ease-in-out;
}

.rotate {
    animation: rotateIn 1s ease-out;
}

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

.slide-up {
    animation: slideInUp 0.8s ease-out;
}

.slide-down {
    animation: slideInDown 0.8s ease-out;
}

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

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

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

.flip-x {
    animation: flipInX 0.8s ease-out;
}

.flip-y {
    animation: flipInY 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.roll-in {
    animation: rollIn 0.8s ease-out;
}

.light-speed {
    animation: lightSpeedIn 0.8s ease-out;
}

.jack-in {
    animation: jackInTheBox 0.8s ease-out;
}

/* Hover effects for interactive elements */
.interactive:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.interactive:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

/* Selection styling */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(139, 92, 246, 0.3);
    color: #1a1a1a;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        bottom: auto;
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .property-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Image optimization */
.hero-image {
    will-change: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
}

.property-image,
.about-image-main {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Image loading states */
.hero-image::before,
.property-image::before,
.about-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-image.loaded::before,
.property-image.loaded::before,
.about-image-main.loaded::before {
    opacity: 0;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    color: #fff;
}

.floating-btn i {
    font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Animations for floating buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsiveness for floating buttons */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 80px;
        left: 15px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .about-image-container {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .about-stat h4 {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
    
    .scroll-arrow::before {
        width: 25px;
        height: 25px;
    }
    
    /* Mobile image optimizations */
    .hero-image {
        position: absolute;
    }
    
    .property-image {
        height: 200px;
    }
    
    .about-image-container {
        height: 200px;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .property-image,
    .about-image-main {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
