/* ================================
   VINLAND INVESTMENTS
   MAIN STYLESHEET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* ================================
   NAVIGATION
================================ */

nav {
    background: #003b73;
    padding: 18px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.logo span {
    color: #ff8c00;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff8c00;
}

/* ================================
   MENU BUTTON
================================ */

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    color: white;

    font-size: 30px;

    cursor: pointer;
}

/* ================================
   GENERAL BUTTON
================================ */

.btn {
    display: inline-block;

    background: #ff8c00;
    color: white;

    padding: 13px 22px;
    margin-top: 10px;

    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.btn:hover {
    background: #e67e00;
}

/* ================================
   SECTION TITLE
================================ */

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #003b73;
    font-size: 36px;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* ================================
   FLOATING WHATSAPP
================================ */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: white;

    border-radius: 50%;

    text-decoration: none;

    font-size: 32px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {

    nav {
        position: relative;
        flex-direction: row;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        background: #003b73;

        flex-direction: column;

        text-align: center;

        padding: 20px 0;

        gap: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .logo {
        font-size: 21px;
    }
}
/* ================================
   PROPERTY CARDS
================================ */

.properties-section {
    background: #f5f5f5;
    padding: 80px 8%;
}

.property-grid {
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

.property-card {
    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;
}

.property-content {
    padding: 25px;
}

.property-content h3 {
    color: #003b73;
    font-size: 21px;
    margin-bottom: 15px;
}

.property-content p {
    color: #555;
    margin: 9px 0;
}

.property-content h4 {
    color: #ff8c00;
    font-size: 23px;
    margin: 18px 0;
}

.property-btn {
    display: inline-block;

    background: #ff8c00;
    color: white;

    padding: 12px 20px;

    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;
}

.property-btn:hover {
    background: #e67e00;
}


/* TABLET */

@media (max-width: 950px) {

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* PHONE */

@media (max-width: 650px) {

    .property-grid {
        grid-template-columns: 1fr;
    }

}
/
/* =========================
   HERO SECTION - FINAL FIX
========================= */

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;

    width: 100%;
    height: 75px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* HERO IMAGES */

.hero-slides {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    animation: heroSlide 20s infinite;
}


/* SLIDE TIMING */

.hero-slide.slide1 {
    animation-delay: 0s;
}

.hero-slide.slide2 {
    animation-delay: 5s;
}

.hero-slide.slide3 {
    animation-delay: 10s;
}

.hero-slide.slide4 {
    animation-delay: 15s;
}


/* SLIDESHOW ANIMATION */

@keyframes heroSlide {

    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}


/* HERO CONTENT */

/* =========================
   CENTER HERO SLIDESHOW TEXT
========================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 52px;
    margin: 0 0 18px 0;
    text-align: center;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.primary-btn {
    background: #ff8c00;

    color: white;
}

.primary-btn:hover {
    background: white;

    color: #003b73;
}

.secondary-btn {
    background: transparent;

    color: white;

    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;

    color: #003b73;
}


/* MOBILE HERO */

@media (max-width: 700px) {

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .hero-buttons .btn {
        width: 180px;

        text-align: center;
    }
}
}
/* =========================
   PROFESSIONAL HEADER
========================= */

.navbar {
    width: 100%;
    height: 54px;
    background: #003b73;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}


/* LOGO */

.logo {
    height: 100%;

    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;

    display: block;
}


/* NAVIGATION */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    padding: 8px 0;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff8c00;
}

.nav-links a.active {
    color: #ff8c00;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 30px;

    cursor: pointer;
}


/* MOBILE */

@media (max-width: 700px) {

    .navbar {
        height: 70px;
        padding: 0 6%;
    }

    ..logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 170px;
    height: 55px;
    object-fit: contain;
    display: block;
}
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #003b73;

        flex-direction: column;

        gap: 0;

        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px;
    }
}

/* MOBILE BUTTON */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


/* =========================
   VINLAND HERO SECTION
========================= */

/* =========================
   HERO SLIDESHOW
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

/* Slideshow images */

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    animation: heroSlide 20s infinite;
}

/* Slide timing */

.hero-slide.slide1 {
    animation-delay: 0s;
}

.hero-slide.slide2 {
    animation-delay: 5s;
}

.hero-slide.slide3 {
    animation-delay: 10s;
}

.hero-slide.slide4 {
    animation-delay: 15s;
}

/* Slideshow animation */

@keyframes heroSlide {

    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.40);

    z-index: 1;
}

/* Text on slideshow */

.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 20px;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn {
    background: #ff8c00;
    color: white;
}

.primary-btn:hover {
    background: #e67e00;
}

.secondary-btn {
    background: white;
    color: #003b73;
}

.secondary-btn:hover {
    background: #eeeeee;
}

/* MOBILE HERO */

@media (max-width: 700px) {

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .btn {
        padding: 12px 22px;
    }
}
/* =========================
   FEATURED PROPERTIES
========================= */

.properties-section {
    padding: 80px 8%;
    background: #f5f5f5;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    color: #003b73;
    font-size: 38px;
    margin-bottom: 12px;
}

.section-heading p {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.property-grid {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.property-content {
    padding: 22px;
}

.property-content h3 {
    color: #003b73;
    font-size: 22px;
    margin-bottom: 12px;
}

.property-content p {
    color: #555;
    margin: 8px 0;
}

.property-content h4 {
    color: #ff8c00;
    font-size: 21px;
    margin: 18px 0;
}

.property-btn {
    display: inline-block;

    background: #003b73;
    color: white;

    text-decoration: none;

    padding: 11px 20px;
    border-radius: 5px;

    font-weight: bold;

    transition: 0.3s;
}

.property-btn:hover {
    background: #ff8c00;
}

/* MOBILE */

@media (max-width: 900px) {

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .properties-section {
        padding: 60px 6%;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 30px;
    }

}
/* =========================
   WHY CHOOSE VINLAND
========================= */

.why-us {
    padding: 80px 8%;
    background: white;
}

.features {
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.feature {
    text-align: center;
    padding: 30px 20px;

    background: #f8f9fa;

    border-radius: 10px;

    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h3 {
    color: #003b73;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* TABLET */

@media (max-width: 900px) {

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media (max-width: 600px) {

    .why-us {
        padding: 60px 6%;
    }

    .features {
        grid-template-columns: 1fr;
    }

}
/* =========================
   ABOUT VINLAND
========================= */

.about-section {
    padding: 80px 8%;
    background: #f5f5f5;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto 50px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.about-text,
.about-benefits {
    background: white;
    padding: 35px;
    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.about-text h3,
.about-benefits h3 {
    color: #003b73;
    font-size: 25px;
    margin-bottom: 18px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;

    margin-top: 10px;

    padding: 12px 24px;

    background: #ff8c00;
    color: white;

    text-decoration: none;

    border-radius: 5px;

    font-weight: bold;
}

.about-btn:hover {
    background: #003b73;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;
}

.benefit-item span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 28px;
    height: 28px;

    background: #003b73;
    color: white;

    border-radius: 50%;

    font-weight: bold;
}

.benefit-item p {
    margin: 0;
    color: #555;
}

.mission-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.mission-card {
    background: #003b73;
    color: white;

    padding: 35px;

    border-radius: 10px;

    text-align: center;
}

.mission-card h3 {
    color: #ff8c00;
    font-size: 25px;
    margin-bottom: 15px;
}

.mission-card p {
    line-height: 1.7;
}


/* TABLET & MOBILE */

@media (max-width: 800px) {

    .about-container,
    .mission-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .about-section {
        padding: 60px 6%;
    }

    .about-text,
    .about-benefits,
    .mission-card {
        padding: 25px;
    }

}
/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 80px 8%;
    background: white;
}

.gallery-container {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 280px;

    overflow: hidden;
    border-radius: 10px;

    background: #eee;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 20px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.85)
    );

    color: white;
}

.gallery-caption h3 {
    margin: 0 0 5px;
    font-size: 20px;
}

.gallery-caption p {
    margin: 0;
    font-size: 14px;
}


/* TABLET */

@media (max-width: 900px) {

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .gallery-section {
        padding: 60px 6%;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 80px 8%;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

/* CONTACT INFORMATION */

.contact-info {
    background: #003b73;
    color: white;

    padding: 40px;

    border-radius: 10px;
}

.contact-info h3 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ff8c00;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
}


/* CONTACT FORM */

.contact-form {
    background: white;

    padding: 40px;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: #003b73;
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;

    margin-bottom: 7px;

    color: #333;

    font-weight: bold;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;

    color: #222;
    background: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #003b73;
    color: #222;
    background: #ffffff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: #003b73;
}

.contact-form button {
    width: 100%;

    padding: 14px;

    background: #ff8c00;

    color: white;

    border: none;

    border-radius: 5px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background: #003b73;
}


/* MOBILE */

@media (max-width: 800px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .contact-section {
        padding: 60px 6%;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #003b73;
    color: white;
    padding: 50px 8% 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

/* FOOTER BRAND */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 260px !important;
    height: auto !important;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 0 8px 0;
}

.footer-tagline {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* FOOTER LINKS */

.footer-links h3,
.footer-contact h3 {
    color: #ff8c00;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ff8c00;
}

.footer-contact p {
    color: #ddd;
    margin: 0;
}

/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

/* MOBILE FOOTER */

@media (max-width: 700px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 230px !important;
    }

}
/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: white;

    border-radius: 50%;

    text-decoration: none;

    font-size: 28px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 24px;
    }

}
/* =========================
   PROPERTIES PAGE HERO
========================= */

.properties-hero {
    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 8%;

    background:
        linear-gradient(
            rgba(0, 59, 115, 0.8),
            rgba(0, 59, 115, 0.8)
        ),
        url("Images1/hero2.jpeg");

    background-size: cover;
    background-position: center;

    color: white;
}

.properties-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.properties-hero p {
    font-size: 19px;
    max-width: 650px;
    line-height: 1.6;
}


/* =========================
   ALL PROPERTIES
========================= */

.all-properties {
    padding: 80px 8%;
    background: #f5f5f5;
}

.property-status {
    display: inline-block;

    background: #e8f7ee;
    color: #16803a;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: bold;

    margin-bottom: 10px;
}


/* =========================
   PROPERTY CTA
========================= */

.property-cta {
    padding: 70px 8%;

    text-align: center;

    background: #003b73;

    color: white;
}

.property-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.property-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    line-height: 1.7;

    color: #ddd;
}

.cta-btn {
    display: inline-block;

    background: #ff8c00;

    color: white;

    padding: 13px 28px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.cta-btn:hover {
    background: white;
    color: #003b73;
}


/* =========================
   PROPERTIES MOBILE
========================= */

@media (max-width: 600px) {

    .properties-hero {
        min-height: 280px;
    }

    .properties-hero h1 {
        font-size: 36px;
    }

    .properties-hero p {
        font-size: 16px;
    }

    .all-properties {
        padding: 60px 6%;
    }

    .property-cta {
        padding: 55px 6%;
    }

    .property-cta h2 {
        font-size: 28px;
    }

}
/* =========================
   HEADER IMPROVEMENTS
========================= */

.nav-links a {
    position: relative;
    padding: 8px 0;
}

/* Orange line under active link */
.nav-links a.active::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #ff8c00;

    border-radius: 5px;
}

/* Orange line when hovering */
.nav-links a:hover::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #ff8c00;

    border-radius: 5px;
}
/* =========================
   FINAL NAVBAR SIZE
========================= */

.navbar {
    width: 100%;
    height: 45px;
    background: #003b73;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff8c00;
}
/* =========================
   LARGE LOGO - SAME NAVBAR
========================= */

.navbar {
    height: 45px;
}

.logo {
    height: 45px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}
.message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #003b73;
    color: white;

    padding: 13px 22px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.message-btn:hover {
    background: #ff8c00;
}

.message-btn i {
    font-size: 18px;
}
/* =========================
   FLOATING MESSAGE BUTTON
========================= */

.message-float {
    position: fixed;
    right: 25px;
    bottom: 95px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #003b73;
    color: white;

    border-radius: 50%;

    text-decoration: none;

    font-size: 27px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    z-index: 9999;

    transition: 0.3s;
}

.message-float:hover {
    transform: scale(1.1);
    background: #ff8c00;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #222 !important;
    background-color: #fff !important;
}
.contact-form input[type="text"],
.contact-form input[type="tel"] {
    color: #222 !important;
    background: #fff !important;
    -webkit-text-fill-color: #222 !important;
}
/* =========================
   FINAL CONTACT SECTION
========================= */

.contact-section {
    padding: 70px 8%;
    background: #f5f7fa;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-section h2 {
    text-align: center;
    color: #003b73;
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* CONTACT INFORMATION */

.contact-info {
    background: #003b73;
    color: white;
    padding: 35px;
    border-radius: 12px;
}

.contact-info h3 {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item strong {
    display: block;
    color: #ff8c00;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: white;
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #ff8c00;
}

/* CONTACT FORM */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 15px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #003b73;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* SEND BUTTON */

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #ff8c00;
    color: white;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #003b73;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 700px) {

    .contact-section {
        padding: 50px 5%;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }
}
/* VIEW DETAILS BUTTON */
.view-details {
    display: inline-block;
    background: #003b73;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
    border: 2px solid #003b73;
    transition: 0.3s;
}

.view-details:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white !important;
}
/* =========================================
   FINAL MOBILE RESPONSIVE FIX
   VINLAND INVESTMENTS
========================================= */

@media (max-width: 700px) {

    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        height: 65px;
        padding: 0 5%;
    }

    .logo {
        height: 65px;
        max-width: 75%;
        display: flex;
        align-items: center;
        overflow: visible;
    }

    .logo img {
        width: 150px;
        height: 58px;
        max-width: 100%;
        object-fit: contain;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        padding: 5px;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;

        display: none;

        background: #003b73;

        flex-direction: column;
        align-items: center;

        gap: 0;
        padding: 10px 0;

        box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 10px;
        font-size: 15px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        height: 500px;
        width: 100%;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        width: 100%;
        padding: 20px 6%;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 22px;
        max-width: 95%;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 190px;
        text-align: center;
        padding: 12px 18px;
    }


    /* =========================
       SECTION TITLES
    ========================= */

    .section-title h2,
    .section-heading h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .section-title {
        margin-bottom: 30px;
    }


    /* =========================
       PROPERTIES
    ========================= */

    .properties-section {
        padding: 55px 5%;
    }

    .property-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .property-card {
        width: 100%;
    }

    .property-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .property-content {
        padding: 20px;
    }

    .property-content h3 {
        font-size: 20px;
    }

    .property-content h4 {
        font-size: 21px;
    }

    .view-details {
        padding: 10px 18px;
        font-size: 14px;
    }


    /* =========================
       WHY CHOOSE US
    ========================= */

    .why-us {
        padding: 55px 5%;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature {
        padding: 25px 18px;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section {
        padding: 55px 5%;
    }

    .about-container,
    .mission-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-text,
    .about-benefits,
    .mission-card {
        padding: 25px;
    }


    /* =========================
       GALLERY
    ========================= */

    .gallery-section {
        padding: 55px 5%;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-item {
        height: 240px;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-section {
        padding: 55px 5%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 25px;
    }

    .contact-section h2 {
        font-size: 29px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        font-size: 16px;
    }


    /* =========================
       FOOTER
    ========================= */

    .site-footer {
        padding: 45px 5% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        width: 210px !important;
        max-width: 90%;
        height: auto !important;
    }


    /* =========================
       FLOATING BUTTONS
    ========================= */

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .message-float {
        right: 15px;
        bottom: 78px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }
}
@media (max-width: 700px) {
    .hero {
        height: 300px !important;
    }

    .property-grid {
        grid-template-columns: 1fr !important;
    }

    .features {
        grid-template-columns: 1fr !important;
    }

    .gallery-container {
        grid-template-columns: 1fr !important;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
    }
}