/* Home 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;
}

/* Hero Section */

.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url(image/jp_phl_03.jpg) center/cover no-repeat;
    /* animation: richBackground 20s ease-in-out infinite; */
}
/* 
@keyframes richBackground {
    0% {
        background-position: center center;
        transform: scale(1);
    }
    25% {
        background-position: 20% 20%;
        transform: scale(1.05);
    }
    50% {
        background-position: 80% 80%;
        transform: scale(1.1);
    }
    75% {
        background-position: 20% 80%;
        transform: scale(1.05);
    }
    100% {
        background-position: center center;
        transform: scale(1);
    }
} */

.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.4), rgba(0, 0, 0, 0.6));
    animation: overlayFade 20s ease-in-out infinite;
}

@keyframes overlayFade {
    0%, 100% {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    }
    50% {
        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;
}

.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: #ffffff00;
    border: none; outline: none;
}

.about-hero h1 {
    font-size: 5.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #daa520, #b8860b);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}

.about-hero p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-style: italic;
    color: #cfaf5d;
    letter-spacing: 2px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 4rem;
        letter-spacing: 4px;
    }

    .about-hero p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .about-hero p {
        font-size: 1.2rem;
    }
}

.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);
}

@media (max-width: 992px) {
    .featured-properties {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .featured-properties {
        padding: 70px 0;
    }
}

.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;
}

@media (max-width: 1200px) {
    .properties-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.property-card {
    background: var(--background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
}

.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;
}

@media (max-width: 576px) {
    .property-image {
        height: 250px;
    }
}

.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;
}

@media (max-width: 576px) {
    .property-info {
        padding: 1.5rem;
    }
}

.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;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

@media (max-width: 400px) {
    .property-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .property-features span {
        margin-bottom: 0.5rem;
    }
}

/* Luxury Features Section */
.luxury-features {
    padding: 120px 0;
    background: var(--section-bg);
}

.luxury-features .container {
    padding: 0 30px;
}

@media (max-width: 992px) {
    .luxury-features {
        padding: 90px 0;
    }
    
    .luxury-features .container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .luxury-features {
        padding: 70px 0;
    }
    
    .luxury-features .container {
        padding: 0 15px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 8px;
    }
}

.feature-card {
    background: var(--background);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .feature-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1.2rem 0.5rem;
    }
}

.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-card:hover .feature-icon {
    background: var(--section-bg);
    color: var(--light-text);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 1200px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.2rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .feature-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.8rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.6rem;
    }
    
    .feature-icon i {
        font-size: 0.9rem;
    }
}

@media (min-width: 1400px) {
    .luxury-button {
        padding: 1.3rem 3rem;
        font-size: 1.2rem;
        min-width: 220px;
    }
    
    .button-container {
        max-width: 900px;
        margin: 3.5rem auto;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--background);
}

@media (max-width: 992px) {
    .testimonials {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 70px 0;
    }
}

.testimonials .section-header {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

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

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.testimonials-slider::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

@media (max-width: 1200px) {
    .testimonials-slider {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .testimonials-slider {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonials-slider::before {
        width: 60%;
    }
}

.testimonial-card {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
    background: var(--section-bg);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200, 169, 126, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    transition: height 0.5s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.7s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.9s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 1.1s;
}

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

/* Refined hover transition */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 169, 126, 0.3);
    background: linear-gradient(to bottom right, var(--section-bg), rgba(255, 255, 255, 1));
}

/* Add subtle hover rotation */
.testimonial-content i {
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-content i {
    transform: rotate(-5deg) scale(1.1);
}

.testimonial-content {
    margin-bottom: 2rem;
    flex: 1;
    position: relative;
    padding-left: 0.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-top: 1.5rem;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.05);
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.3);
}

.author-info {
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info {
    transform: translateX(5px);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.author-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-card:hover .author-info p {
    opacity: 1;
}

/* Touch improvements for mobile */
@media (max-width: 576px) {
    .testimonial-card:active {
        transform: translateY(-5px) scale(0.98);
    }
}

/* Enhanced Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--section-bg);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 60px;
    padding: 0 20px;
}

.contact-card {
    background-color: var(--background);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ab8c61);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 126, 0.3);
    animation: pulseRing 2s infinite;
}

.contact-card:hover .card-icon {
    background-color: var(--primary-color);
}

.card-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon i {
    color: white;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Keep features-grid with 4 columns */
    /* .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: 3.5rem;
        letter-spacing: 0.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

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

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

/* Property Showcase Styles */
.property-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--primary-color);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(200, 169, 126, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.showcase-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Shape-specific styles */
.showcase-item.circle {
    border-radius: 50%;
    aspect-ratio: 1;
    clip-path: circle(50% at 50% 50%);
}

.showcase-item.hexagon {
    aspect-ratio: 1;
    animation: morphShape 8s ease-in-out infinite;
    background: linear-gradient(45deg, var(--primary-color), transparent);
}

@keyframes morphShape {
    0% {
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    25% {
        clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
    }
    50% {
        clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    }
    75% {
        clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    }
    100% {
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
}

.showcase-item.rectangle {
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    aspect-ratio: 16/9;
}

.showcase-item.square {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    aspect-ratio: 1;
}

/* Enhanced hover effects */
.showcase-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--primary-color);
}

.showcase-item.hexagon:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* New Universal Button Styles */
.luxury-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), #ab8c61);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(200, 169, 126, 0.3);
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.luxury-button:hover::before {
    left: 100%;
}

.luxury-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.3);
    background: linear-gradient(135deg, #ab8c61, var(--primary-color));
}

.luxury-button i {
    margin-right: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.luxury-button:hover i {
    transform: translateX(3px);
}

.luxury-button.outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 0 0 var(--primary-color);
}

.luxury-button.outline:hover {
    color: white;
    box-shadow: inset 300px 0 0 0 var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.luxury-button.dark {
    background: linear-gradient(135deg, #333, #1a1a1a);
    color: var(--primary-color);
}

.luxury-button.dark:hover {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

/* Button Container */
.button-container {
    display: flex;
    gap: 1.5rem;
    margin: 3rem auto;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
}

/* Responsive styles for all devices */
@media (max-width: 992px) {
    .luxury-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
        min-width: 180px;
    }
    
    .button-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .luxury-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 160px;
        letter-spacing: 1.5px;
    }
    
    .button-container {
        gap: 1.2rem;
        margin: 2.5rem auto;
    }
}

@media (max-width: 576px) {
    .luxury-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        min-width: unset;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .luxury-button i {
        margin-right: 8px;
        font-size: 1rem;
    }
    
    .button-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
        margin: 2rem auto;
    }
}

@media (min-width: 1400px) {
    .luxury-button {
        padding: 1.3rem 3rem;
        font-size: 1.2rem;
        min-width: 220px;
    }
    
    .button-container {
        max-width: 900px;
        margin: 3.5rem auto;
    }
}

/* Quick Contact Form */
.quick-contact-form {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: var(--background);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quick-contact-form h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.quick-contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
    outline: none;
    background-color: #fff;
}

/* Responsive Styles for Contact Section */
@media (max-width: 1200px) {
    .contact-cards {
        gap: 20px;
        padding: 0 30px;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .quick-contact-form {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 26px;
    }
    
    .quick-contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-contact-form h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-cards {
        margin: 40px auto 50px;
        gap: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 22px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .quick-contact-form {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}

@media (min-width: 1400px) {
    .contact-cards {
        max-width: 1400px;
        gap: 40px;
    }
    
    .contact-card {
        padding: 50px 35px;
    }
    
    .quick-contact-form {
        max-width: 900px;
        padding: 60px;
    }
}

/* Add this at appropriate location in the CSS file */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .property-info h3 {
        font-size: 1.3rem;
    }
}

/* Touch enhancements for mobile devices */
@media (max-width: 576px) {
    /* Increase tap target size */
    .feature-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve touch feedback */
    .feature-card:active {
        transform: translateY(-5px) scale(0.98);
    }
}

@media (max-width: 400px) {
    .feature-card h3 {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .feature-card p {
        font-size: 0.6rem;
        line-height: 1.15;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.5rem;
    }
    
    .feature-icon i {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .feature-card h3 {
        font-size: 0.6rem;
    }
    
    .feature-card p {
        font-size: 0.55rem;
        -webkit-line-clamp: 2;
    }
    
    .feature-card {
        padding: 1rem 0.4rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto 0.4rem;
    }
    
    .feature-icon i {
        font-size: 0.7rem;
    }
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

@media (max-width: 992px) {
    .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .feature-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

@media (max-width: 576px) {
    .feature-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-card p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 1200px) {
    .testimonial-card {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.8rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 400px) {
    .testimonial-card {
        padding: 1.2rem 1rem;
    }
    
    .testimonial-content i {
        font-size: 1.6rem;
        top: -3px;
        left: -1px;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.75rem;
    }
} 

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.about-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 25px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 40px;
    color: #c5a47e;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 80px 0;
    background-color: #fff;
}

.projects-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.project-card {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-btn {
    padding: 12px 24px;
    background-color: #c5a47e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.project-btn:hover {
    background-color: #b89163;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.project-features li {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.project-features li i {
    color: #c5a47e;
    margin-right: 8px;
}

.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #c5a47e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #b89163;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .projects-wrapper {
        flex-direction: column;
    }
    
    .project-card {
        width: 100%;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-icon {
    background-color: #c5a47e;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 24px;
}

.item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.item-content p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Achievements Section Styles */

.achievements-section .section-header {
    color: white;
}

.achievements-section .section-subtitle,
.achievements-section .section-title {
    color: white;
}

.achievements-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    text-align: center;
}

.achievement-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.achievement-counter {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c5a47e;
}

.achievement-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #ddd;
    font-size: 16px;
}

@media (max-width: 768px) {
    .achievements-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-item {
        margin-bottom: 30px;
    }
}