/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #d4af37;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #fff;
    --secondary-color: #34495e;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 18px;
    overflow-x: hidden;
    padding-top: 100px;
    /* Space for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header and Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 900px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections Grid */
.complexes,
.updates {
    padding: 100px 0;
}

.complexes .container,
.updates .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.complex-card,
.update-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.complex-card:hover,
.update-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complex-card:hover .image-placeholder,
.update-card:hover .image-placeholder {
    transform: scale(1.05);
}

.complex-card h3,
.update-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 28px;
    margin: 30px 30px 15px;
    font-weight: 700;
}

.complex-card p,
.update-card p {
    font-size: 16px;
    color: #666;
    margin: 0 30px 30px;
    flex-grow: 1;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    margin: 0 30px 30px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Gallery Link */
.gallery-link {
    text-align: center;
    margin-bottom: 100px;
}

.gallery-link p {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}

.gallery-link p:hover {
    background: #34495e;
    transform: translateY(-5px);
}

/* Page Hero (for detail pages like Cabral) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.page-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .location-info {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-hero .map-link {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-hero .map-link:hover {
    color: var(--white);
}

.btn-reserve {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.btn-reserve:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

/* Apartment Features Section */
.apartment-features {
    background-color: #fff;
    padding: 80px 0;
}

.apartment-features h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Amenities Section */
.amenities {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.amenities h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.amenity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.amenity-item p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* Photo Gallery */
.photo-gallery {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.photo-gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 4px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(139, 115, 85, 0.8);
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 80px 0;
    font-size: 15px;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.newsletter {
    flex: 1;
    min-width: 350px;
}

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.newsletter form {
    display: flex;
    gap: 15px;
}

.newsletter input {
    padding: 15px 20px;
    border: 1px solid #34495e;
    border-radius: 6px;
    flex: 1;
    background-color: #2c3e50;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

.newsletter button {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.3s, transform 0.3s;
}

.newsletter button:hover {
    background-color: #c09f32;
    transform: translateY(-2px);
}

.contact-info {
    flex: 1;
    min-width: 350px;
    text-align: right;
    line-height: 2.2;
}

.contact-info a {
    color: var(--accent-color);
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    border-bottom: 1px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .main-nav {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-close {
        right: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* About Content Section */
.about-content {
    padding: 100px 0 80px;
    background-color: #fff;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Social Media Section in Footer */
.social-media {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Reserve CTA */
.reserve-cta {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.btn-reserve-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(192, 159, 50, 0.4);
}

.btn-reserve-large:hover {
    background-color: #c09f32;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 159, 50, 0.6);
}

/* Force correct icon sizes */
.social-link svg,
.social-icons svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

.footer-logo-section {
    background-color: var(--bg-color);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    max-width: 150px !important;
    height: auto;
}

/* Force ALL SVG icons to correct size - CRITICAL FIX */
svg {
    max-width: 24px !important;
    max-height: 24px !important;
}

.social-icons a svg,
.social-link svg,
footer svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

.contact-section svg,
.contact-card svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-weight: 500;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

.contact-link:hover svg {
    fill: #fff;
}

.location-text {
    margin-bottom: 40px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Social Media Section in Footer */
.social-media {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Reserve CTA */
.reserve-cta {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.btn-reserve-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(192, 159, 50, 0.4);
}

.btn-reserve-large:hover {
    background-color: #c09f32;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 159, 50, 0.6);
}

/* Force correct icon sizes */
.social-link svg,
.social-icons svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

.footer-logo-section {
    background-color: var(--bg-color);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    max-width: 150px !important;
    height: auto;
}

/* Force ALL SVG icons to correct size - CRITICAL FIX */
svg {
    max-width: 24px !important;
    max-height: 24px !important;
}

.social-icons a svg,
.social-link svg,
footer svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

.contact-section svg,
.contact-card svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-weight: 500;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

.contact-link:hover svg {
    fill: #fff;
}

.location-text {
    margin-bottom: 40px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Social Media Section in Footer */
.social-media {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Reserve CTA */
.reserve-cta {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.btn-reserve-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(192, 159, 50, 0.4);
}

.btn-reserve-large:hover {
    background-color: #c09f32;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 159, 50, 0.6);
}

/* Force correct icon sizes */
.social-link svg,
.social-icons svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

.footer-logo-section {
    background-color: var(--bg-color);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    max-width: 150px !important;
    height: auto;
}

/* Force ALL SVG icons to correct size - CRITICAL FIX */
svg {
    max-width: 24px !important;
    max-height: 24px !important;
}

.social-icons a svg,
.social-link svg,
footer svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

.contact-section svg,
.contact-card svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-weight: 500;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

.contact-link:hover svg {
    fill: #fff;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Promotions Page Styles */
.promo-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.promotions-section {
    padding: 80px 0;
    background-color: #fff;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.promo-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.promo-discount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color) !important;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    background: transparent !important;
}

.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promo-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.promo-cta {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f4;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.promo-cta p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}