@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-padding-top: 2rem; 
    text-decoration: none; 
    list-style: none; 
    scroll-behavior: smooth; 
    font-family: 'Poppins', sans-serif; 
}

p{
    margin-bottom: 1rem;
}

u{
    text-decoration: underline;
}
*::selection { 
    color: var(--white-color); 
    background: var(--main-color); 
}

:root {
    /* Primary Colors (High Contrast) */
    --main-color: #f8901d;       /* Strong, vibrant red (attention-grabbing) */
    --second-color: #0057B7;     /* Deep, trustworthy blue */
    --accent-color: hwb(211 62% 1% / 0.757);     /* Gold/yellow for highlights (luxury touch) */

    /* Neutrals (Clean & Modern) */
    --white-color: #FFFFFF;      /* Pure white */
    --light-bg: #F5F5F5;         /* Soft white/gray for backgrounds */
    --black-color: #1A1A1A;      /* Near-black for text (better than pure #000) */
    --gray-color: #666666;       /* Medium gray for secondary text */

    /* Additional Contrast Boosters (Optional) */
    --dark-blue: #003366;        /* For footer/dark sections */
    --alert-red: #CC0000;        /* For CTAs or warnings */
}

/* --pearl-lusta-color: #EBDBC8; */
/* --second-color: #1E3932; */
 /* --main-color: #008148; */
/* --pearl-lusta-color: hsl(172.28deg 53.89% 67.56% / 85%); */

section { 
    padding: 80px 10%; 
}

img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

/* Messages container styling */
.messages-container {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideIn 0.5s forwards;
}

/* Alert base styling */
.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Success alert */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

/* Danger alert */
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Close button */
.btn-close {
    padding: 0.5rem;
    background-size: 0.75em;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .messages-container {
        max-width: 90%;
    }
    
    .alert {
        padding: 0.75rem;
    }
}

/* Header Styles */
header { 
    position: fixed; 
    width: 100%; 
    top: 0; 
    right: 0; 
    z-index: 100; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background: var(--white-color); 
    box-shadow: 0 4px 41px rgb(14 55 14 / 14%); 
    padding: 15px 10%; 
    transition: var(--transition);
}

.logo { 
    display: flex; 
    align-items: center; 
}

.logo img {
    width: 115px;
    height: 96px;
    border-radius: 0px;
}
.navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Optional: Stack the final items vertically (if needed) */
.social-wrapper,
.navbar li:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Same styles for nav links */
.navbar a {
    font-size: 1rem;
    padding: 11px 20px;
    color: var(--second-color);
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar a:hover {
    color: var(--main-color);
}

/* Social icons */
.navbar-social {
    display: flex;
    justify-content: end;
    /* gap: 1rem; */
    height: 10px;
    position: relative;
    top: -20px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.navbar-social-icon {
    width: 20px;
    height: 0px;
    display: flex;
    padding: 15px;
    font-size: 15px;
    margin-right: 0px;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 5%;
    color: var(--second-color);
    transition: var(--transition);
}

.navbar-social-icon:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.navbar-social-mobile {
    display: none;
}
.navbar .btn.explore-btn {
    background: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    margin-left: 10px;
}

.navbar .btn.explore-btn:hover {
    background: var(--second-color);
    color: var(--white-color);
} .modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Modal Box */
  .modal {
    background: #fff;
    padding: 30px;
    height: max-content;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
  }

  .home-contact {
    background-color: var(--second-color); /* Dark blue */
    color: white;
    padding: 20px 0;
  }
  
  .info-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .info-item i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .info-item p {
    margin: 0;
    font-weight: bold;
  }
  

  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form button {
    padding: 12px 15px;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #0056b3;
  }

  /* Center Open Button */
  .open-modal-btn {
    display: inline-block;
    margin-top: 100px;
    padding: 12px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }

#menu-icon { 
    font-size: 24px; 
    cursor: pointer; 
    z-index: 101; 
    display: none; 
}

/* Home Section */
.home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.home-text {
    flex: 1;
    padding-right: 2rem;
}

.welcome-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--second-color);
    display: block;
    margin-bottom: 1rem;
}

.company-name {
    margin-bottom: 1.5rem;
}

.company-name h1 {
    font-size: 3.5rem;
    color: var(--main-color);
    font-weight: 800;
    line-height: 1.2;
}

.company-name h2 {
    font-size: 2rem;
    color: var(--second-color);
    font-weight: 600;
}

.home-text h3 {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.explore-btn:hover {
    background: var(--second-color);
    transform: translateY(-3px);
}

.home-img {
    flex: 1;
    position: relative;
}

.home-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--main-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--second-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--main-color);
    margin: 0 auto;
}

/* Property Cards */
.property-swiper {
    padding: 1rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.property-card {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.property-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-img img {
    transform: scale(1.05);
}

.property-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: var(--transition);
}

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

.flex-group {
    display: flex;
    gap: 20px;
}

.view-details {
    background: var(--main-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.view-details:hover {
    background: var(--second-color);
}

.property-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    background-color: var(--main-color);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.property-info h3 {
    font-size: 1rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.price {
    font-size: 1rem;
    color: var(--main-color);
    font-weight: 600;
}

/* New container to align swiper and navigation side-by-side */
.swiper-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Position navigation buttons on the sides */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: -25px; /* Adjust based on layout */
}

.swiper-button-next {
    right: -25px; /* Adjust based on layout */
}


/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    position: relative; /* Changed from absolute to relative */
    top: auto;
    transform: none;
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    flex-shrink: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 1.2rem;
    color: var(--main-color);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--main-color);
    transform: translateY(-3px);
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    color: var(--white-color);
}

/* Pagination stays below */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--main-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--second-color);
    opacity: 1;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--second-color);
    transform: translateY(-3px);
}

/* About Section */
.about {
    /* background: var(--light-gray); */
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--second-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--white-color);
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--second-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--main-color);
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 50%;
}

.contact-item h4 {
    color: var(--second-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--gray-color);
    margin: 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    /* padding: 2rem; */
}

/* Social Icons */
.social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--second-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--main-color);
}

.copyright {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--main-color);
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-header {
    margin-bottom: 2rem;
}

.contact-title {
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.get-in-touch {
    color: var(--second-color);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.get-in-touch::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--main-color);
}

.contact-form-content {
    background: var(--white-color);
    /* padding: 2rem; */
    border-radius: 10px;
}

.contact-form-content h3 {
    color: var(--second-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--second-color);
    transition: all 0.3s ease;
}

.form-group textarea {
    padding: 12px;
    min-height: 150px;
    resize: vertical;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 1.2rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 129, 72, 0.1);
}

.send-message-btn {
    background: var(--main-color);
    color: var(--white-color);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.send-message-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.send-message-btn:hover {
    background: var(--second-color);
}

.send-message-btn:hover i {
    transform: translateX(5px);
}

/* Media Queries */
@media(max-width: 1150px) {
    header { padding: 18px 7%; }
    section { padding: 70px 7%; }
    .home-text h1 { font-size: 3rem; }
    .home-text h2 { font-size: 1.5rem; }
}

@media(max-width: 991px) {
    header { padding: 18px 4%; }
    section { padding: 70px 4%; }
    .about-content,
    .contact-content {
        flex-direction: column;
    }
}

@media(max-width: 768px) {
    header { padding: 11px 4%; }
    #menu-icon { display: initial; }
    .navbar {
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: var(--white-color);
        box-shadow: 0 4px 4px rgb(14 55 14 / 14%);
        border-top: 2px solid var(--main-color);
        transition: .5s;
        text-align: left;
    }
    .navbar.active { top: 100%; }
    .navbar a { padding: 1.5rem; display: block; color: var(--second-color); }
    .home-content {
        flex-direction: column;
        text-align: center;
    }
    .home-text {
        padding-right: 0;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-container {
        padding: 1rem;
    }
    .get-in-touch {
        font-size: 2rem;
    }
    .contact-form-content {
        padding: 1.5rem;
    }
    .property-swiper {
        padding: 0.5rem 0;
    }
    
    .property-img {
        height: 180px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .navbar-social {
        display: none;
    }
    .navbar-social-icon-mobile {
        width: 40px;
        height: 40px;
        /* background: var(--light-gray); */
        border-radius: 50%;
        color: var(--second-color);
        transition: var(--transition);
    }
    .navbar-social-mobile {
        display: flex;
    }
}

@media(max-width: 568px) {
    .home-text { padding-top: inherit; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .get-in-touch {
        font-size: 1.8rem;
    }
    .contact-form-content {
        padding: 1rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px 35px;
    }
}
