/* Brand Color Variables for easier maintenance */
:root {
    --primary-color: #00162c;
    --secondary-color: #fb8834;
    --primary-light: rgba(0, 22, 44, 0.1);
    --secondary-light: rgba(251, 136, 52, 0.1);
    --gradient-primary: linear-gradient(135deg, #00162c 0%, #fb8834 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    letter-spacing: 0.01em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: none;
}

.navbar .logo-image {
    height: 175px;
}

.navbar.scrolled .logo-image, .navbar.nav-active .logo-image {
    height: 80px;
}

.navbar.scrolled,
.navbar.nav-active {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-container {
    max-width: 1200px;
}

.hero-content {
    max-width: 1920px!important;
}

.hero-content .container {
    max-width: 1920px!important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    max-width: 1920px;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}


.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Make logo white by default */
}

.navbar.scrolled .logo-image,
.navbar.nav-active .logo-image {
    filter: none; /* Original logo color when scrolled */
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #00162c;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #00162c;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white; /* White text by default */
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.navbar.scrolled .nav-link,
.navbar.nav-active .nav-link {
    color: #333; /* Dark text when scrolled */
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8); /* Lighter white on hover by default */
}

.navbar.scrolled .nav-link:hover,
.navbar.nav-active .nav-link:hover {
    color: #00162c; /* Brand color on hover when scrolled */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white; /* White underline by default */
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after,
.navbar.nav-active .nav-link::after {
    background: #00162c; /* Brand color underline when scrolled */
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white; /* White hamburger by default */
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .bar,
.navbar.nav-active .bar {
    background: #333; /* Dark hamburger when scrolled */
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    background: #00162c;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 22, 44, 0.75) 0%, rgba(0, 22, 44, 0.55) 100%);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 22, 44, 0.75) 0%, rgba(0, 22, 44, 0.55) 100%);
    z-index: 1;
}

/* Show background images on all screens */
/* .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 2s ease-in-out;
} */

/* .hero-bg-1 {
    background-image: url('Images/retail.png');
    animation: bgFade1 12s ease-in-out infinite;
    opacity: 1;
}

.hero-bg-2 {
    background-image: url('Images/industrial.png');
    animation: bgFade2 12s ease-in-out infinite;
}

.hero-bg-3 {
    background-image: url('Images/office.png');
    animation: bgFade3 12s ease-in-out infinite;
}

@keyframes bgFade1 {
    0%, 33% { opacity: 1; }
    41%, 92% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes bgFade2 {
    0%, 33% { opacity: 0; }
    41%, 58% { opacity: 1; }
    66%, 100% { opacity: 0; }
}

@keyframes bgFade3 {
    0%, 58% { opacity: 0; }
    66%, 83% { opacity: 1; }
    91%, 100% { opacity: 0; }
} */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 22, 44, 0.75) 0%, rgba(0, 22, 44, 0.55) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    margin: 0 auto;
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fb8834 0%, #e67a2a 100%);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 136, 52, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67a2a 0%, #d66b1f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 136, 52, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #00162c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
}

.scroll-arrow {
    width: 2px;
    background: white;
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fb8834;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 12px rgba(251, 136, 52, 0.3);
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #00162c;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

.text-center {
    text-align: left;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0f4f8 0%, #fef3ed 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fb8834 0%, #00162c 100%);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #fb8834 0%, #00162c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.about-card h3 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00162c;
    letter-spacing: -0.01em;
}

.about-card p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    gap: 30px;
    margin-top: 60px;
}

@supports (grid-template-columns: repeat(3, 1fr)) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    @media (min-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

.service-card {
    background: white;
    padding: 30px 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 22, 44, 0.95) 0%, rgba(0, 22, 44, 0.85) 20%, rgba(0, 22, 44, 0.75) 35%, transparent 60%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    border-color: #fb8834;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Lot Services Section */
.lot-services {
    background: white;
}

/* Repairs & Maintenance Section */
.repairs-maintenance {
    background: linear-gradient(135deg, #f0f4f8 0%, #fef3ed 100%);
}

/* Contact Section */
.contact {
    background: #00162c;
    color: white;
    border-radius: 50px 50px 0px 0px;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fb8834 0%, #e67a2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fb8834;
    letter-spacing: -0.01em;
}

.contact-details p {
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    max-width: 100%;
    letter-spacing: 0.01em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(251, 136, 52, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(251, 136, 52, 0.2);
}

.form-group select option {
    background: #333;
    color: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
    font-size: 13px;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-family: 'Poppins', sans-serif;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-section ul li a:hover {
    color: #fb8834;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: left;
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 0;
    width: 90%;
    max-width: 500px;
    text-align: left;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fb8834 0%, #00162c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 0 20px 0;
}

.modal-content h3 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: -0.01em;
}

.modal-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Logo Link Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

/* Property Types Section */
.property-types {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.property-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 22, 44, 0.7) 0%, rgba(251, 136, 52, 0.7) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.property-card:hover .property-icon {
    transform: scale(1);
}

.property-content {
    padding: 30px 25px;
}

.property-content h3 {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00162c;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -0.02em;
}

.property-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #fb8834 0%, #e67a2a 100%);
    border-radius: 2px;
}

.property-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.property-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.property-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #fb8834;
    font-weight: bold;
    font-size: 12px;
}

.property-features li:last-child {
    margin-bottom: 0;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-link {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.btn {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-background {
        background: linear-gradient(45deg, rgba(0, 22, 44, 0.8) 0%, rgba(0, 22, 44, 0.6) 100%);
        background-attachment: scroll;
    }

    /* Mobile background images use same animation as desktop */

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .property-image {
        height: 200px;
    }

    .property-content {
        padding: 25px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    section {
        padding: 50px 0;
    }

    .contact {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .footer-logo {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-group label {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .about-card,
    .service-card {
        padding: 25px 20px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .logo-text {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .footer-logo {
        gap: 10px;
    }

    .about-grid,
    .services-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }
}

a, .hamburger {
  -webkit-tap-highlight-color: transparent;
}