@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;900&family=Almarai:wght@300;400;700;800&family=Amiri:wght@400;700&family=Noto+Kufi+Arabic:wght@300;400;600;700;900&display=swap');

:root {
    --primary-color: #1a5490;
    --secondary-color: #d4af37;
    --accent-color: #c49b3c;
    --text-color: #333333;
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1a5490 0%, #2d6db5 100%);
    --gradient-secondary: linear-gradient(135deg, #d4af37 0%, #c49b3c 100%);
    --font-family: 'Cairo', 'Tajawal', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #2d6db5;
    --secondary-color: #d4af37;
    --accent-color: #e6c45a;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --card-bg: #2a2a2a;
    --border-color: #404040;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    transition: var(--transition);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(20deg);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 30px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 3px;
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.9), rgba(212, 175, 55, 0.8)), 
                url('../images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(45, 109, 181, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.features {
    padding: 6rem 0;
    background: var(--card-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
}

.offers,
.special-offers,
.summer-offers {
    padding: 6rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.offer-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.offer-content {
    padding: 2rem;
}

.offer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.offer-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.85;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.discount {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.offer-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.4);
}

.special-badge,
.summer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.summer-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.social-media {
    padding: 5rem 0;
    background: var(--card-bg);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.twitter { background: #000000; }
.social-link.snapchat { background: #fffc00; color: #000; }
.social-link.whatsapp { background: #25d366; }
.social-link.email { background: #ea4335; }

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.chatbot {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 380px;
    max-height: 550px;
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    border: 2px solid var(--primary-color);
}

.chatbot.active {
    display: flex;
    animation: slideInLeft 0.4s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chatbot-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 400px;
    background: var(--card-bg);
}

.bot-message,
.user-message {
    margin-bottom: 1.2rem;
    padding: 1rem 1.3rem;
    border-radius: 15px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: var(--primary-color);
    color: white;
    margin-left: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: var(--secondary-color);
    color: white;
    margin-right: 0;
    margin-left: auto;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 5px;
}

.bot-message p,
.user-message p {
    margin: 0.3rem 0;
    line-height: 1.6;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 0 0 18px 18px;
    border-top: 1px solid var(--border-color);
}

.chatbot-input input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-family: var(--font-family);
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chatbot-input button {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.chatbot-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.4);
}

.chatbot-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 65px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.chatbot-toggle:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-section i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.page-header {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.9), rgba(212, 175, 55, 0.8)), 
                url('../images/header-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: white;
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.about-content {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.vision-mission {
    padding: 6rem 0;
    background: var(--card-bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vm-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.stats {
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.3rem;
    font-weight: 600;
}

.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.3rem;
    color: var(--text-color);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.pricing-features i {
    color: #27ae60;
    margin-left: 10px;
    font-size: 1.2rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 84, 144, 0.4);
}

.all-properties {
    padding: 6rem 0;
    background: var(--card-bg);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.property-item {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.property-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.property-info i {
    color: var(--secondary-color);
    margin-left: 8px;
}

.property-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.property-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.property-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.4);
}

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-social {
    margin-top: 3rem;
}

.contact-social h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-form-container {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    background: var(--card-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.map-section {
    padding: 6rem 0;
    background: var(--card-bg);
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-8px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-8px, -6px);
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .chatbot {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        left: 1rem;
        bottom: 1rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .offers-grid,
    .properties-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 45px;
        width: 45px;
    }
    
    .logo h1 {
        font-size: 0.95rem;
    }
}

/* Animated Logo Styles */
.animated-logo-container {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.animated-logo {
    height: 80px;
    width: auto;
    border-radius: 10px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.static-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-animated-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin-left: 15px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* PWA Install Button - Enhanced */
.pwa-install-btn {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulseGlow 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.pwa-install-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.pwa-install-btn i {
    font-size: 1.4rem;
    animation: bounce 1s infinite;
}

.pwa-install-btn span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .animated-logo-container {
        display: none;
    }
    
    .static-logo {
        height: 35px;
    }
    
    .footer-animated-logo {
        height: 40px;
    }
    
    .pwa-install-btn {
        bottom: 80px;
        left: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
