/* CSS Variables */
:root {
    --bordeaux: #8B0000;
    --bordeaux-light: #A52A2A;
    --beige: #ffe1b0;
    --beige-dark: #f0d4a0;
    --white: #FFFFFF;
    --gray: #808080;
    --gray-light: #D3D3D3;
    --gray-dark: #696969;
    --black: #000000;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 35px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--bordeaux);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: none;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a:hover {
    color: var(--bordeaux);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 2s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 50px;
    animation: slideInUp 1.5s ease 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    animation: fadeInUp 1.5s ease 0.6s both;
    border: 2px solid var(--beige);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-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: left 0.6s ease;
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #2c2c2c 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--white);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Section */
.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.company-overlay {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 2;
}

.golden-frame {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 3px solid var(--beige);
    border-radius: 10px;
    z-index: 3;
}

.frame-corner {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-corner::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

/* Text Section */
.about-text {
    padding-left: 20px;
}

.text-header {
    margin-bottom: 40px;
}

.category {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--bordeaux);
    font-weight: 600;
    margin-bottom: 0;
}

.text-content {
    margin-bottom: 40px;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-section:not(:first-of-type) {
    margin-top: 60px;
}

.services-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-text li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 225, 176, 0.2);
}

.services-text li:last-child {
    border-bottom: none;
}

.services-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--bordeaux);
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Properties Section */
.properties {
    padding: 100px 0;
    background: var(--white);
}

/* Quality Section */
.quality-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.quality-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quality-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.quality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.quality-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.quality-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.quality-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quality-text p {
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.9;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.quality-text p:last-child {
    margin-bottom: 0;
}



.properties h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 60px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--beige);
    transition: transform 0.3s ease;
}

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

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info {
    padding: 30px;
}

.property-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--bordeaux);
    margin-bottom: 15px;
}

.property-info p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.property-link {
    color: var(--bordeaux);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.property-link:hover {
    color: var(--bordeaux-light);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-bottom {
    padding: 40px;
    border-top: 1px solid var(--beige);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    color: var(--bordeaux);
    font-size: 1.2rem;
    margin-top: 2px;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-info span {
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.submit-btn {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--bordeaux-light) 0%, var(--bordeaux) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    color: var(--white);
    padding: 40px 0 15px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px, 70px 70px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--bordeaux);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--bordeaux);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes patternFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-5px) translateX(3px);
    }
    66% {
        transform: translateY(-3px) translateX(-2px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3a0000 0%, var(--bordeaux) 50%, #d40000 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/19742.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    animation: patternFloat 15s linear infinite;
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Properties Page */
.properties-page {
    padding: 80px 0;
    background: var(--white);
}

.properties-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.property-card-page {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--beige);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.property-card-page img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info-page {
    padding: 25px;
}

.property-info-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--bordeaux);
    margin-bottom: 15px;
    font-weight: 600;
}

.property-info-page p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.property-details i {
    color: var(--bordeaux);
    width: 16px;
    text-align: center;
}

.completion-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.completion-badge i {
    font-size: 12px;
}

.card-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-view:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--bordeaux);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--bordeaux-light);
    text-decoration: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.modal-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-permit {
    display: inline-block;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-permit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-permit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-image img {
        height: 250px;
    }
    
    .modal-info {
        gap: 15px;
    }
    
    .btn-permit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Responsive Design for Properties Pages */
@media (max-width: 1024px) {
    .properties-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .properties-grid-page {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .property-info-page {
        padding: 20px;
    }
    
    .property-info-page h3 {
        font-size: 1.2rem;
    }
}

/* Blog Page */
.blog-page {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--beige);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--bordeaux);
    font-size: 12px;
}

.blog-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--bordeaux);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bordeaux);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--bordeaux-light);
    transform: translateX(5px);
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.page-link:hover,
.page-link.active {
    background: var(--bordeaux);
    color: var(--white);
    border-color: var(--bordeaux);
}

.page-link.next {
    background: var(--bordeaux);
    color: var(--white);
    border-color: var(--bordeaux);
}

.page-link.next:hover {
    background: var(--bordeaux-light);
}

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        text-align: center;
        width: 100%;
    }

    .nav-link {
        text-align: center;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        background: var(--white);
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: 1px solid #eee;
    }

    .dropdown-menu li {
        padding: 8px 20px;
        text-align: center;
    }

    .dropdown-menu a {
        color: var(--black);
        text-shadow: none;
        font-size: 14px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 0;
    }

    .hero-content {
        padding: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-overlay {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

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

    .services-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-section:not(:first-of-type) {
        margin-top: 40px;
    }

    .services-image img {
        height: 300px;
    }

    .quality-text h2 {
        font-size: 2.5rem;
    }

    .quality-text p {
        font-size: 1.1rem;
    }

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

    .contact-top {
        grid-template-columns: 1fr;
        min-height: 300px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-bottom {
        padding: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
} 

/* Blog Post Page Styles */
.blog-post-content {
    padding: 120px 0 80px;
    background: var(--white);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-post-meta {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.blog-post-meta i {
    color: var(--bordeaux);
    font-size: 16px;
}

.blog-post-images {
    padding: 30px 40px;
    background: #f8f9fa;
}

.main-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blog-post-text {
    padding: 30px 40px;
}

.blog-post-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.blog-post-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-post-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.blog-post-navigation {
    padding: 30px 40px;
    border-top: 1px solid var(--gray-light);
    background: #f8f9fa;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bordeaux);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid var(--bordeaux);
    border-radius: 6px;
    background: var(--white);
}

.back-to-blog:hover {
    background: var(--bordeaux);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.back-to-blog i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-blog:hover i {
    transform: translateX(-3px);
}

/* Responsive Design for Blog Post */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 100px 0 60px;
    }
    
    .blog-post {
        margin: 0 20px;
    }
    
    .blog-post-meta {
        padding: 20px 25px 15px;
        gap: 20px;
    }
    
    .blog-post-images {
        padding: 20px 25px;
    }
    
    .main-image {
        height: 200px;
        max-width: 100%;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-gallery img {
        height: 200px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
    
    .blog-post-text {
        padding: 20px 25px;
    }
    
    .blog-post-text h2 {
        font-size: 24px;
    }
    
    .blog-post-navigation {
        padding: 20px 25px;
    }
    
    .back-to-blog {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-post-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .image-gallery img {
        height: 180px;
        max-width: 350px;
    }
    
    .blog-post-text h2 {
        font-size: 20px;
    }
} 

/* Custom styles for current properties page */
.current-properties-page .properties-grid-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.current-properties-page .property-card-page {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--beige);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-properties-page .property-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.current-properties-page .property-card-page img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.current-properties-page .property-info-page {
    padding: 20px;
}

.current-properties-page .property-info-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--bordeaux);
    margin-bottom: 8px;
    font-weight: 600;
}

.current-properties-page .property-info-page h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 12px;
    font-weight: 500;
    font-style: italic;
}

.current-properties-page .property-info-page p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--bordeaux);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bordeaux-light) 0%, var(--bordeaux) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4);
    color: var(--white);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .current-properties-page .properties-grid-page {
        max-width: 100%;
        margin: 40px 20px;
    }
    
    .current-properties-page .property-info-page {
        padding: 25px;
    }
    
    .current-properties-page .property-info-page h3 {
        font-size: 1.5rem;
    }
    
    .current-properties-page .property-info-page h4 {
        font-size: 1.1rem;
    }
    
    .current-properties-page .property-info-page p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 