/* ===== CSS Variables ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

/* ===== Navigation ===== */
.nav {
    background: rgba(22, 22, 22, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;

    /* Solid golden color */
    color: #d4af37;

    /* 3D text shadow effect */
    text-shadow:
        2px 2px 0px rgba(139, 115, 49, 0.5),
        4px 4px 0px rgba(139, 115, 49, 0.3),
        6px 6px 0px rgba(139, 115, 49, 0.2);

    position: relative;
    display: inline-block;
}

.logo-tagline {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: -0.25rem;
}

.nav-contact {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-contact:hover {
    color: #f4d03f;
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #f4d03f;
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: #f4d03f;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-contact {
        font-size: 0.9rem;
        order: -1;
    }

    .nav-content {
        gap: 0.5rem;
    }

    .logo {
        flex: 1;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(22, 22, 22, 0.85);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        display: none;
        border-bottom: 1px solid rgba(244, 208, 63, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 1.5rem;
    }

    .nav-menu a {
        display: block;
    }
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%),
                url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-shadow:
        2px 2px 0px rgba(139, 115, 49, 0.6),
        4px 4px 0px rgba(139, 115, 49, 0.4),
        6px 6px 0px rgba(139, 115, 49, 0.3),
        8px 8px 0px rgba(139, 115, 49, 0.2);
    animation: fadeInUp 1.2s ease-out;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp 1.6s ease-out;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.5);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.hero-launch {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 2rem;
}

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

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

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .hero-logo {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

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

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

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

    .hero-launch {
        font-size: 1rem;
    }

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

/* ===== Our Story Section ===== */
.our-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Our Story */
@media (max-width: 768px) {
    .our-story {
        padding: 3rem 0;
    }

    .story-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== Amenities Section ===== */
.amenities {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

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

.amenity-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.amenity-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(218, 165, 32, 0.3));
}

.amenity-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Amenities */
@media (max-width: 768px) {
    .amenities {
        padding: 3rem 0;
    }

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

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

/* ===== Pricing Section ===== */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-inclusive {
    text-align: center;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.pricing-card-popular {
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.pricing-card-popular:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.popular-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.pricing-original {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0.25rem;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:before {
    content: "✓ ";
    color: #d4af37;
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
}

.pricing-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 3rem;
    font-style: italic;
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .popular-label {
        font-size: 0.75rem;
        padding: 0.4rem 2.5rem;
    }
}

/* ===== Timeline Section ===== */
.timeline {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    text-align: center;
}

.timeline .section-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: white;
}

.timeline-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.timeline-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-card-highlight {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.timeline-card-highlight:hover {
    background: rgba(212, 175, 55, 0.2);
}

.timeline-quarter {
    display: block;
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline {
        padding: 3rem 0;
    }

    .timeline-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .timeline-card {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ===== Location Map Section ===== */
.location-map {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
}

.location-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.link-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .location-map {
        padding: 3rem 0;
    }

    .map-container iframe {
        height: 300px !important;
    }

    .location-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .map-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .map-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== Interest Form Section ===== */
.interest-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    position: relative;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.form-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    color: white;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: #d4af37;
    background: rgba(22, 22, 22, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    color: rgba(255, 255, 255, 0.9);
}

.form-group select ~ label {
    display: none;
}

.form-group select option {
    background: rgba(22, 22, 22, 0.95);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
}

/* Mobile Form */
@media (max-width: 768px) {
    .interest-form {
        padding: 3rem 0;
    }

    .form-content h2 {
        font-size: 1.5rem;
    }

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

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-section a[href^="tel"] {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section a[href^="tel"]:hover {
    color: #f4d03f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.version {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.6);
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .btn {
        animation: fadeInUp 0.6s ease-out;
    }
}

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

/* ===== WhatsApp Chat Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #b8941e;
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(184, 148, 30, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(184, 148, 30, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-chat-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.whatsapp-chat-bubble.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.chat-bubble-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 20px;
    color: white;
    cursor: pointer;
    text-align: center;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chat-bubble-close:hover {
    opacity: 1;
}

.chat-bubble-header {
    background: #b8941e;
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-icon {
    width: 30px;
    height: 30px;
}

.avatar-icon path {
    fill: #b8941e;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.chat-status {
    font-size: 13px;
    opacity: 0.9;
}

.chat-bubble-body {
    padding: 20px;
    background: #f0f0f0;
}

.chat-message {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-message p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message p:first-child {
    margin-bottom: 8px;
}

.chat-bubble-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #b8941e;
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.chat-bubble-button:hover {
    background: #d4af37;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}
