/* Information 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 */
.info-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url(image/jp_phl_11.jpg) center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.info-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;
}

.info-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;
}

.info-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: var(--section-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.section-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* Investment Section */
.investment-section {
    padding: 8rem 0;
    background: var(--background);
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.investment-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.investment-card {
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 4px;
    transition: var(--transition);
}

.investment-card:hover {
    transform: translateX(10px);
}

.investment-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.investment-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.investment-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--section-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(200, 169, 126, 0.05);
}

.faq-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-family: 'Cormorant Garamond', serif;
}

.faq-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(200, 169, 126, 0.05);
}

.faq-item.active .faq-header i {
    transform: rotate(0deg);
}

.faq-item.active .faq-body {
    display: block;
}

/* Add hover effect */
.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Active state styles */
.faq-item.active .faq-button {
    background-color: rgba(200, 169, 126, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-content {
        grid-template-columns: 1fr;
    }
    
    .investment-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .investment-card {
        padding: 1.5rem;
    }
}

/* Property Details Section */
.property-details {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.detail-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.detail-card:hover i {
    transform: scale(1.1);
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.detail-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background-color: white;
}

.amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.amenities h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    margin: 20px auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.amenity-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.amenity-item:hover {
    transform: translateX(10px);
    background-color: #f0f0f0;
}

.amenity-item i {
    font-size: 2rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.1);
}

.amenity-item h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.amenity-item p {
    color: #666;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.location h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    margin: 20px auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    color: #666;
}

.location-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-map img:hover {
    transform: scale(1.02);
}

/* Floor Plans Section */
.floor-plans {
    padding: 80px 0;
    background-color: white;
}

.floor-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.floor-plans h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    margin: 20px auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.plan-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover img {
    transform: scale(1.05);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    padding: 0 20px;
    color: #333;
}

.plan-card p {
    color: #666;
    padding: 0 20px 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    margin: 20px auto;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    background-color: #4a90e2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .btn:active {
    transform: translateY(0);
}

/* Form Feedback */
.form-error,
.form-success {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease-out;
}

.form-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-hero,
.property-details,
.amenities,
.location,
.floor-plans,
.contact {
    animation: fadeIn 1s ease-out;
}

.past-sides-section {
    padding: 100px 0;
    background: var(--section-bg);
}

.sides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.side-card {
    background: var(--background);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 0rem 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.13);
}

.side-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.side-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
}

.side-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: var(--light-text);
}

@media (max-width: 768px) {
    .sides-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .sides-grid {
        grid-template-columns: 1fr;
    }
} 