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

:root {
    /* Color Palette - Black & Gold Luxury Theme */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #3a3a3a;
    --light-gray: #f5f5f5;
    --gold: #d4af37;
    --gold-light: #e6c659;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --cream: #faf9f6;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradient-black: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    --gradient-overlay: linear-gradient(rgba(10, 10, 10, 0.7), rgba(42, 42, 42, 0.7));
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Nunito', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.2s ease;
}

/* Container */
.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo h2 {
    font-family: var(--font-primary);
    color: var(--gold);
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-logo span {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-top: -2px;
    opacity: 0.9;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
    margin-right: 20px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
    letter-spacing: 0.8px;
    opacity: 0.9;
    cursor: pointer;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--gold);
    opacity: 1;
}

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

.nav-link.active {
    color: var(--gold);
    opacity: 1;
}

/* CTA */
.cta-button {
    margin-left: 12px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* ========== Media Queries ========== */

@media (min-width: 1024px) {
    .nav-menu {
        gap: 40px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.9rem;
    }

    .nav-logo h2 {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .nav-logo {
        order: 1;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 16px;
        margin-top: 12px;
        display: flex;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link {
        text-align: center;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
    }

    .nav-menu,
    .cta-button {
        width: 100%;
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 120px 50px 50px;
    z-index: 2;
}

.value-proposition h1 {
    font-size: 4.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 3rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    min-height: 1px;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 100px;
}

.stat h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0
}

.stat p {
    color: var(--cream);
    font-size: 1rem;
    margin: 0;
}

.hero-cta {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero-image {
    flex: 1;
    height: 100vh;
    position: relative;
}

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

/* Featured Properties */
.featured-properties {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.section-header h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

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

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.2s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.property-card.featured {
    border: 2px solid var(--gold);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.02);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.property-location {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.property-details span {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.property-btn {
    width: 100%;
    background: var(--primary-black);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.about-text h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.feature-content h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--dark-gray);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--secondary-black);
    color: var(--white);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--cream);
    margin: 0;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.member-bio {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
    background: var(--white);
}

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

.blog-post {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

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

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.post-category {
    background: var(--gold);
    color: var(--primary-black);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.post-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--gold-dark);
}

/* Inquiry/Contact Section */
.inquiry {
    padding: var(--section-padding);
    background: var(--primary-black);
    color: var(--white);
}

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

.inquiry-text h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.inquiry-text p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--cream);
    margin: 0;
}

.inquiry-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.inquiry-form select,
.inquiry-form textarea {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

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

/* Footer */
.footer {
    background: var(--secondary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

/* Wrapper for logo + grid below */
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo at top-left */
.footer-logo {
    margin-bottom: 2rem;
    color: #d4af37
}

.footer-logo span {
    color: #ffffff;
}

/* Grid for the 3 footer sections */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

/* Each section inside the grid */
.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-section span {
    color: var(--cream);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

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

.social-links a {
    color: var(--cream);
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

.footer-contact {
    color: var(--cream);
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--cream);
    margin: 0;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-text);
    max-width: 300px;
}

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

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-heavy);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 100px 30px 30px;
    }
    
    .value-proposition h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content,
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .properties-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        height: 50vh;
        order: -1;
    }
    
    .value-proposition h1 {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .value-proposition h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .inquiry-form {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

/* Section visibility control */
.section-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

/* Cleaner notification styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 4000;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    font-weight: 500;
    font-size: 0.9rem;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold);
}

.notification-success {
    background: rgba(212, 175, 55, 0.95);
    color: var(--primary-black);
}

.notification-info {
    background: rgba(26, 26, 26, 0.95);
    color: var(--white);
}

/* Cleaner popup styles */
.lead-magnet-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.lead-magnet-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lead-magnet-content h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.lead-magnet-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-magnet-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.2s ease;
}

.lead-magnet-close:hover {
    color: var(--gold);
}

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

.lead-magnet-form input {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.lead-magnet-form button {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lead-magnet-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

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

/* Luxury Animations */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
