/* Gallery Page Styles */
:root {
    --primary-color: #c8a97e;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #fff;
    --background: #fff;
    --section-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url(image/jp_phl_07.jpg) center/cover no-repeat;
}

.hero {
    height: 100vh;
    background: url(image/jp_phl_03.jpg) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    padding: 1rem 2rem;
    border: 2px solid var(--light-text);
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--light-text);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.hero-scroll:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Properties Section */
.featured-properties {
    padding: 120px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.property-card {
    background: var(--background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.property-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.property-price {
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 600;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

/* Luxury Features Section */
.luxury-features {
    padding: 120px 0;
    background: var(--section-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--background);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--light-text);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--light-text);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--background);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--section-bg);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--section-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-color);
}

.contact-form {
    background: var(--background);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }
}

/* Gallery Categories */
.gallery-categories {
    padding: 2rem 0;
    background: var(--background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.category-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.category-btn:hover::after,
.category-btn.active::after {
    width: 100%;
}

.category-btn:hover i,
.category-btn.active i {
    transform: scale(1.1);
}

.category-btn.active {
    color: var(--primary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer !important;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    transform: scale(1.1);
}

#lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    max-width: 80%;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }

    .close-lightbox {
        top: -35px;
        font-size: 1.8rem;
    }

    #lightbox-caption {
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* Footer Styles */

/* 360 View Section */
.view-360-section {
    padding: 120px 0;
    background: var(--section-bg);
}

.view-360-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.view-360-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.loading-spinner,
.error-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    z-index: 2;
}

.loading-spinner i,
.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.loading-spinner span,
.error-message span {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 20px;
}

.retry-button {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.retry-button:hover {
    background: var(--secondary-color);
}

.view-360-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    background: #000;
}

.view-360-info {
    padding: 30px;
    background: var(--background);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.view-360-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.view-360-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.view-360-features {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature span {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .view-360-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .view-360-info {
        order: -1;
    }

    .view-360-wrapper {
        padding-top: 75%;
        /* Taller aspect ratio for mobile */
    }
}

@media (max-width: 768px) {
    .view-360-section {
        padding: 60px 0;
    }

    .view-360-info {
        padding: 20px;
    }

    .view-360-info h3 {
        font-size: 1.5rem;
    }

    .view-360-info p {
        font-size: 1rem;
    }

    .feature span {
        font-size: 0.9rem;
    }

    .loading-spinner i,
    .error-message i {
        font-size: 1.5rem;
    }

    .loading-spinner span,
    .error-message span {
        font-size: 1rem;
    }
}

/* Floor Plan Section */
.floor-plan-section {
    padding: 120px 0;
    background: var(--background);
}

.floor-plan-container {
    margin-top: 40px;
}

.floor-plan-image {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floor-plan-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.room-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.room-list {
    list-style: none;
    padding: 0;
}

.room-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

.room-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
}

.floor-plan-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.detail-card {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-card h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.floor-plan-features {
    background: var(--section-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.floor-plan-features h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .floor-plan-overlay {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
        background: var(--section-bg);
        margin-top: 20px;
    }

    .floor-plan-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floor-plan-section {
        padding: 80px 0;
    }

    .floor-plan-details {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .room-info h3 {
        font-size: 1.3rem;
    }

    .room-list li {
        font-size: 0.9rem;
    }

    .floor-plan-features {
        padding: 25px;
    }

    .floor-plan-features h3 {
        font-size: 1.5rem;
    }
}

/* Property Visualization Section */
.property-visualization-section {
    padding: 120px 0;
    background: var(--background);
}

.property-visualization-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.visualization-main {
    position: relative;
}

.visualization-image {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visualization-image img {
    width: 100%;
    height: auto;
    display: block;
}

.interactive-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.point:hover {
    transform: scale(1.2);
}

.point-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text);
    font-weight: 600;
}

.point-info {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 3;
}

.point:hover .point-info {
    opacity: 1;
    visibility: visible;
}

.point-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.point-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Point Positions */
.point[data-point="living"] {
    top: 30%;
    left: 40%;
}

.point[data-point="kitchen"] {
    top: 45%;
    left: 60%;
}

.point[data-point="bedroom"] {
    top: 60%;
    left: 30%;
}

.point[data-point="bathroom"] {
    top: 70%;
    left: 50%;
}

.property-details {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.details-header {
    margin-bottom: 30px;
}

.details-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.details-header p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.detail-content h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.detail-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.amenities-list {
    background: var(--background);
    padding: 20px;
    border-radius: 10px;
}

.amenities-list h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.amenities-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.amenities-list li i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .property-visualization-container {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .property-visualization-section {
        padding: 80px 0;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .point-info {
        width: 150px;
    }
}

/* Location Map Section */
.location-map-section {
    padding: 120px 0;
    background: var(--section-bg);
}

.map-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background: var(--background);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-header {
    margin-bottom: 30px;
}

.location-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.location-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.location-details {
    margin-bottom: 30px;
}

.location-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--section-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.location-details .detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-details .detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.location-details .detail-content h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.location-details .detail-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
}

.nearby-places {
    background: var(--section-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.nearby-places h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.nearby-places ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.nearby-places li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
    padding: 8px 0;
}

.nearby-places li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.location-actions {
    margin-top: auto;
    padding-top: 20px;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.direction-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.direction-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .map-wrapper {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    .location-info {
        order: -1;
        margin-bottom: 30px;
    }

    .map-wrapper {
        height: 400px;
    }

    .nearby-places ul {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .location-map-section {
        padding: 80px 0;
    }

    .location-info {
        padding: 25px;
    }

    .location-header h3 {
        font-size: 1.8rem;
    }

    .map-wrapper {
        height: 350px;
    }

    .nearby-places ul {
        grid-template-columns: 1fr;
    }

    .location-details .detail-content p {
        font-size: 1rem;
    }
}

/* Floor Map Section */
.floor-map-section {
    padding: 120px 0;
    background: var(--background);
}

.floor-map-container {
    margin-top: 40px;
}

.floor-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.floor-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.room-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid var(--light-text);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.marker:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4);
}

.marker-info {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-text);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 1;
}

.marker-info::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--light-text);
}

.marker:hover .marker-info {
    opacity: 1;
    visibility: visible;
    top: 35px;
}

.marker-info h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.marker-info p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.floor-map-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.property-specs,
.property-features {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.property-specs h3,
.property-features h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.spec-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.features-list li span {
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .floor-map-details {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floor-map-section {
        padding: 80px 0;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .marker-info {
        display: none;
    }

    .property-specs,
    .property-features {
        padding: 20px;
    }

    .property-specs h3,
    .property-features h3 {
        font-size: 1.3rem;
    }
}

/* Gallery Styles */
:root {
    --primary-color: #c8a97e;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #fff;
    --background: #fff;
    --section-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

/* Gallery Hero */
.gallery-hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    background: url(image/jp_phl_03.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.gallery-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.gallery-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.gallery-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #c8a97e;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
    }

    .overlay-content p {
        font-size: 1rem;
    }
}

/* Dynamic Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 30px;
    box-sizing: border-box;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    background-color: transparent;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: -30px;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100000;
}

.popup-close:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.8);
}

.popup-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    max-width: 100%;
    font-family: 'Cormorant Garamond', serif;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
    }

    .popup-close {
        top: -35px;
        right: -5px;
        font-size: 1.8rem;
    }

    .popup-caption {
        font-size: 1rem;
        margin-top: 10px;
    }
}


.audio-toggle.active {
    background-color: #0095f6;
}

.audio-toggle.active:hover {
    background-color: #0074cc;
}

/* Add sound wave animation */
.audio-toggle.active::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #0095f6;
    opacity: 0;
    animation: audio-wave 2s infinite;
    pointer-events: none;
}

@keyframes audio-wave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Featured Properties Section */
.featured-properties-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f7f5f2);
    position: relative;
    overflow: hidden;
}

.featured-properties-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(177, 155, 118, 0.05);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.featured-properties-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(177, 155, 118, 0.05);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.featured-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 300px;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.featured-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 620px;
}

.featured-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.featured-item:hover .featured-image-wrap img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
    opacity: 1;
}

.featured-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.featured-overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.btn-view {
    display: inline-block;
    background-color: #b19b76;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #b19b76;
}

.btn-view:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .featured-item,
    .featured-item.large {
        grid-column: span 1;
        height: 250px;
    }
}

/* Property Galleries Tabs Section */
.property-galleries-section {
    padding: 100px 0;
    background-color: #fff;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background-color: #f7f5f2;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background-color: #e9e5de;
}

.tab-btn.active {
    background-color: #b19b76;
    color: white;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.property-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.property-logo {
    max-width: 150px;
    margin-right: 30px;
}

.property-description h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.property-description p {
    color: #666;
    line-height: 1.6;
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .property-header {
        flex-direction: column;
        text-align: center;
    }

    .property-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Instagram Reels Section Styles */
.instagram-reels-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.instagram-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.instagram-reels-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.instagram-reel-container {
    max-width: 500px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.reel-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin: 0 0 15px;
    color: #333;
    padding: 0 15px;
}

.instagram-follow {
    max-width: 500px;
    width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 20px;
}

.instagram-follow h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.instagram-follow p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.instagram-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.2);
}

.instagram-media {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 300px !important;
}

.instagram-fallback {
    display: none;
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.instagram-fallback p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.instagram-fallback a {
    color: #bc1888;
    font-weight: 500;
    text-decoration: none;
}

.instagram-fallback a:hover {
    text-decoration: underline;
}

/* Style for when Instagram embed fails to load */
.instagram-media:empty+.instagram-fallback {
    display: block;
}

@media (max-width: 992px) {
    .instagram-reels-row {
        flex-direction: column;
        align-items: center;
    }

    .instagram-reel-container,
    .instagram-follow {
        max-width: 500px;
        width: 100%;
    }
}

/* Video Gallery Item Styles */
.video-gallery-item {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-gallery-item:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.play-button i {
    color: #b19b76;
    font-size: 24px;
    margin-left: 4px;
    /* Slight offset for the play icon */
}

/* Add JavaScript to hide overlay on click */
.hide-overlay {
    opacity: 0 !important;
    pointer-events: none;
}

/* Phone Video Section Styles */
.phone-video-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.phone-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.phone-frame {
    position: relative;
    width: 320px;
    height: 650px;
    background-color: #000;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 0 10px #222,
        inset 0 0 0 2px #333;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background-color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
}

.phone-home-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: #444;
    border-radius: 3px;
    z-index: 10;
}

.auto-play-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .phone-frame {
        width: 280px;
        height: 570px;
    }
}

/* Add these Instagram-themed phone styles to the existing CSS */

/* Update the phone frame styles for Instagram theme */
.phone-frame.instagram-themed {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: white;
    padding: 0;
    overflow: hidden;
    width: 340px;
    height: 600px;
}

.phone-status-bar {
    height: 25px;
    background-color: #fafafa;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #efefef;
}

.status-icons {
    display: flex;
    gap: 8px;
}

.status-icons i {
    font-size: 12px;
    color: #666;
}

.instagram-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #efefef;
    position: relative;
    z-index: 2;
}

.instagram-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.instagram-username {
    flex-grow: 1;
    font-weight: 600;
    font-size: 14px;
}

.instagram-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #efefef;
}

.insta-actions {
    display: flex;
    gap: 15px;
}

.insta-actions i,
.instagram-controls i {
    font-size: 22px;
    color: #262626;
    cursor: pointer;
}

.instagram-caption {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.4;
    max-height: 80px;
    overflow-y: auto;
    border-bottom: 1px solid #efefef;
}

.phone-screen {
    height: calc(100% - 145px);
}

/* Update Instagram-themed styles to match Instagram's embed style more closely */
.instagram-embed-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-embed-link:hover {
    transform: translateY(-5px);
}

.instagram-embed-link:hover .instagram-tap-prompt {
    opacity: 1;
}

.instagram-embed-header {
    height: 40px;
    background-color: #fff;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.instagram-logo-container {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.instagram-logo-container i {
    font-size: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-view-text {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.reel-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-tap-prompt {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Update phone frame styles for better Instagram embed look */
.phone-frame.instagram-themed {
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Add more realistic phone styling */
.phone-frame.instagram-themed {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: #000;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 2px #222,
        inset 0 0 8px rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 0 auto;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
}

/* Phone hardware elements */
.phone-frame.instagram-themed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background-color: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-frame.instagram-themed::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background-color: #333;
    border-radius: 4px;
    z-index: 11;
}

.phone-camera {
    position: absolute;
    top: 12px;
    right: 33%;
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    z-index: 11;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 33%;
    width: 8px;
    height: 8px;
    background-color: #555;
    border-radius: 50%;
    z-index: 11;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

.phone-button {
    position: absolute;
    right: -2px;
    top: 100px;
    width: 4px;
    height: 50px;
    background-color: #444;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    z-index: 11;
}

.phone-button.volume-up {
    top: 100px;
}

.phone-button.volume-down {
    top: 170px;
}

.phone-button.power {
    top: 120px;
    height: 60px;
    left: -2px;
    right: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* Instagram reel specific styling */
.instagram-embed-header {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #000;
    border-bottom: none;
}

.instagram-view-text {
    color: #fff;
}

.instagram-logo-container i {
    font-size: 24px;
}

.instagram-header {
    background-color: transparent;
    border: none;
    padding: 15px 15px 5px;
    z-index: 20;
}

.instagram-username {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.instagram-header i {
    color: white;
}

.phone-screen {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: auto;
    margin: 0;
    background-color: #000;
}

.auto-play-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reel-indicator {
    top: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.instagram-controls {
    position: absolute;
    right: 15px;
    bottom: 120px;
    flex-direction: column;
    gap: 20px;
    border: none;
    background: transparent;
    z-index: 20;
    padding: 0;
}

.insta-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insta-actions i,
.instagram-controls i {
    color: white;
    font-size: 28px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.instagram-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 15;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.instagram-tap-prompt {
    bottom: 80px;
}

/* Add styling for like and comment counts */
.like-count,
.comment-count {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: -20px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

/* Add glowing animation for notification feedback */
@keyframes heart-pulse {
    0% {
        color: white;
        transform: scale(1);
    }

    50% {
        color: #ed4956;
        transform: scale(1.2);
    }

    100% {
        color: white;
        transform: scale(1);
    }
}

.insta-actions i.fa-heart:hover {
    color: #ed4956;
    animation: heart-pulse 1s;
}

.far.fa-bookmark:hover {
    color: #ffd700;
}

/* Add glare effect to the phone screen */
.phone-screen::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -100%;
    width: 300%;
    height: 40%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: screen-glare 8s infinite;
    pointer-events: none;
    z-index: 12;
    opacity: 0.5;
}

@keyframes screen-glare {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Add subtle phone tilt on hover */
.instagram-embed-link:hover .phone-frame {
    transform: perspective(1200px) rotateX(2deg) rotateY(-2deg);
    transition: transform 0.4s ease;
}

/* Adjust responsiveness */
@media (max-width: 992px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phone-frame.instagram-themed {
        width: 300px;
        height: 600px;
    }
}

@media (max-width: 576px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phone-frame.instagram-themed {
        width: 280px;
        height: 560px;
        border-radius: 35px;
    }

    .phone-frame.instagram-themed::before {
        width: 120px;
        height: 25px;
    }

    .phone-frame.instagram-themed::after {
        width: 60px;
        height: 6px;
    }

    .instagram-embed-header {
        padding-top: 18px;
    }
}

/* Add styling for audio toggle button */
.audio-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.audio-toggle:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.7);
}

.audio-toggle i {
    font-size: 16px;
}

/* Instagram reels grid styling */
.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.phone-video-container {
    display: flex;
    justify-content: center;
    padding: 15px;
}

/* Responsive adjustments for the reels grid */
@media (max-width: 1200px) {
    .instagram-reels-grid {
        gap: 30px;
    }

    .phone-frame.instagram-themed {
        width: 270px;
        height: 540px;
    }
}

@media (max-width: 992px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame.instagram-themed {
        width: 300px;
        height: 600px;
    }
}

@media (max-width: 576px) {
    .phone-frame.instagram-themed {
        width: 260px;
        height: 520px;
    }
}

/* Add these additional styles after all other Instagram styles */
/* Make sure all reels are visible on mobile */
.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.phone-video-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

@media (max-width: 992px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phone-video-container {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .instagram-reels-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phone-video-container {
        margin-bottom: 50px;
        width: 100%;
    }

    .instagram-reels-grid .instagram-embed-link {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Instagram Alternative Section Styles */
.instagram-alt-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.instagram-alt-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.instagram-post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.instagram-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.post-profile {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.profile-info h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.profile-info span {
    font-size: 12px;
    color: #777;
}

.instagram-logo i {
    font-size: 20px;
    color: #c13584;
}

.instagram-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.instagram-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-post-card:hover .instagram-post-image img {
    transform: scale(1.05);
}

.instagram-post-content {
    padding: 15px;
}

.post-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.post-icons i {
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.post-caption {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.view-on-instagram {
    display: inline-block;
    color: #3897f0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
}

.view-on-instagram:hover {
    color: #1a67c9;
}

.instagram-follow-alt {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.follow-content {
    max-width: 500px;
    margin: 0 auto;
}

.follow-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 15px;
    background-color: white;
}

.instagram-follow-alt h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.instagram-follow-alt p {
    margin-bottom: 20px;
}

.follow-button {
    display: inline-block;
    background-color: white;
    color: #c13584;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.follow-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .instagram-alt-grid {
        grid-template-columns: 1fr;
    }
}


        /* Facebook Showcase Section Styles */
        .facebook-showcase-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .facebook-content-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .facebook-post-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 500px;
            transition: transform 0.3s ease;
            height: fit-content;
        }
        
        .facebook-post-card:hover {
            transform: translateY(-5px);
        }
        
        .facebook-post-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .post-profile {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .profile-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .profile-info h4 {
            margin: 0 0 3px 0;
            font-size: 14px;
            font-weight: 600;
        }
        
        .profile-info span {
            font-size: 12px;
            color: #65676B;
        }
        
        .facebook-post-image {
            width: 100%;
            height: auto;
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        
        .facebook-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .facebook-post-card:hover .facebook-post-image img {
            transform: scale(1.05);
        }
        
        .facebook-logo i {
            font-size: 24px;
            color: #1877f2;
        }
        
        .facebook-post-content {
            padding: 15px;
        }
        
        .post-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .post-icons i {
            font-size: 18px;
            color: #333;
            cursor: pointer;
        }
        
        .fa-thumbs-up:hover {
            color: #1877f2;
        }
        
        .post-caption {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .view-on-facebook {
            display: inline-block;
            color: #1877f2;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            padding: 8px 0;
        }
        
        .view-on-facebook:hover {
            text-decoration: underline;
        }
        
        .facebook-follow-card {
            background-color: #1877f2;
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            align-self: stretch;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .follow-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid white;
            margin-bottom: 15px;
            background-color: white;
        }
        
        .facebook-follow-button {
            display: inline-block;
            background-color: white;
            color: #1877f2;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .facebook-follow-button:hover {
            background-color: #f0f2f5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Large Devices (desktops) */
        @media (min-width: 992px) {
            .facebook-content-container {
                align-items: stretch;
            }
            
            .facebook-post-card,
            .facebook-follow-card {
                flex: 0 1 auto;
            }
        }
        
        /* Medium Devices (tablets) */
        @media (max-width: 992px) {
            .facebook-content-container {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .facebook-post-card, 
            .facebook-follow-card {
                max-width: 100%;
                width: 100%;
            }
        }
        
        /* Small Devices (landscape phones) */
        @media (max-width: 768px) {
            .facebook-showcase-section {
                padding: 60px 0;
            }
            
            .facebook-post-image {
                aspect-ratio: 4/3;
            }
            
            .facebook-follow-card {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        /* Extra Small Devices (portrait phones) */
        @media (max-width: 480px) {
            .facebook-post-header {
                padding: 10px 12px;
            }
            
            .post-profile {
                gap: 8px;
            }
            
            .profile-img {
                width: 32px;
                height: 32px;
            }
            
            .profile-info h4 {
                font-size: 13px;
            }
            
            .profile-info span {
                font-size: 11px;
            }
            
            .facebook-post-content {
                padding: 12px;
            }
            
            .post-caption {
                font-size: 13px;
            }
            
            .view-on-facebook {
                font-size: 13px;
            }
            
            .facebook-follow-card {
                padding: 25px 15px;
            }
            
            .follow-logo {
                width: 50px;
                height: 50px;
            }
            
            .facebook-follow-card h3 {
                font-size: 1.5rem;
            }
            
            .facebook-follow-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
    