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

body {
    font-family: 'Forum', display;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 60.588px;
    font-style: normal;
    font-weight: 400;
    color: #ffffff;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Header CTA Button */
.header-cta {
    margin-left: 20px;
    margin-right: 20px;
}

.check-availability-btn {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.check-availability-btn:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #000000;
}

.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.flag {
    font-size: 16px;
}

.lang-code {
    font-size: 14px;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333333;
    border-radius: 4px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #333333;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.lang-name {
    font-size: 14px;
    font-weight: 400;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 40px;
}

.hero-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-people {
    display: flex;
    gap: 20px;
    z-index: 2;
}

.person {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
}

.person-1 {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.person-2 {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #333 0%, #555 50%, #333 100%);
    opacity: 0.3;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #111111;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 20px 0;
    border-bottom: 1px solid #333333;
    font-size: 18px;
    font-weight: 400;
}

.service-item:last-child {
    border-bottom: none;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

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

.portfolio-item {
    text-align: center;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.portfolio-image:hover {
    transform: scale(1.05);
}

.property-1 {
    background: linear-gradient(135deg, #8b5a3c 0%, #d4af37 100%);
}

.property-2 {
    background: linear-gradient(135deg, #87ceeb 0%, #98fb98 100%);
}

.property-3 {
    background: linear-gradient(135deg, #90ee90 0%, #32cd32 100%);
}

.property-4 {
    background: linear-gradient(135deg, #e6e6fa 0%, #dda0dd 100%);
}

.portfolio-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background-color: #111111;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #000000;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 60.588px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f4a261;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu ul li:first-child {
        border-bottom: 1px solid #333;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .nav-menu ul li:first-child a {
        background: #ffffff;
        border: 1px solid #ffffff;
        color: #000000;
        padding: 8px 16px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .nav-menu ul li:first-child a:hover {
        background-color: #f0f0f0;
        border-color: #f0f0f0;
        color: #000000;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-placeholder {
        height: 250px;
    }

    .person {
        width: 60px;
        height: 60px;
    }

    .about {
        padding: 60px 0;
    }

    .about-text {
        font-size: 18px;
    }

    .about-description {
        font-size: 15px;
    }

    .services {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .portfolio {
        padding: 60px 0;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-image {
        height: 180px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-text {
        font-size: 18px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .nav-brand h1 {
        font-size: 40px;
    }

    .footer-brand h3 {
        font-size: 40px;
    }

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-nav li {
        margin-bottom: 0;
    }

    .header-cta {
        display: none; /* Hide on mobile, show in mobile menu */
    }

    .language-selector {
        margin-left: 10px;
    }

    .language-btn {
        padding: 6px 10px;
    }

    .lang-code {
        display: none;
    }

    .language-dropdown {
        min-width: 120px;
    }

    .language-option {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-placeholder {
        height: 200px;
    }

    .person {
        width: 50px;
        height: 50px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-item {
        font-size: 16px;
        padding: 15px 0;
    }

    .portfolio-image {
        height: 150px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .nav-brand h1 {
        font-size: 32px;
    }

    .footer-brand h3 {
        font-size: 32px;
    }
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 400;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-detail {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image {
    display: flex;
    justify-content: center;
}

.team-placeholder {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.member-1 {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.member-2 {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
}

.team-member p {
    font-size: 16px;
    opacity: 0.8;
}

.mission {
    padding: 80px 0;
    background-color: #111111;
}

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

.mission h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.mission p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.value-item {
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.value-item p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.8;
}

.nav-menu a.active {
    opacity: 1;
    border-bottom: 2px solid #ffffff;
}

/* Services page styles */
.services-overview {
    padding: 80px 0;
}

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

.service-card {
    background-color: #111111;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 30px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.icon-1 { background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%); }
.icon-2 { background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%); }
.icon-3 { background: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%); }
.icon-4 { background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%); }
.icon-5 { background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%); }
.icon-6 { background: linear-gradient(135deg, #e76f51 0%, #e9c46a 100%); }

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

.process {
    padding: 80px 0;
    background-color: #111111;
}

.process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 400;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    color: #000000;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}

.step p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Properties page styles */
.properties-filter {
    padding: 40px 0;
    background-color: #111111;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ffffff;
    color: #000000;
}

.properties-grid-section {
    padding: 80px 0;
}

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

.property-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.property-1 { background: linear-gradient(135deg, #8b5a3c 0%, #d4af37 100%); }
.property-2 { background: linear-gradient(135deg, #87ceeb 0%, #98fb98 100%); }
.property-3 { background: linear-gradient(135deg, #90ee90 0%, #32cd32 100%); }
.property-4 { background: linear-gradient(135deg, #e6e6fa 0%, #dda0dd 100%); }
.property-5 { background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%); }
.property-6 { background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%); }

.property-info {
    padding: 30px;
}

.property-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
}

.property-location {
    color: #2a9d8f;
    font-size: 14px;
    margin-bottom: 20px;
}

.property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail {
    background-color: #333333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.property-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.stat-value {
    font-size: 16px;
    font-weight: 500;
    color: #2a9d8f;
}

.success-stories {
    padding: 80px 0;
    background-color: #111111;
}

.success-stories h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.story-card {
    background-color: #000000;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333333;
}

.story-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-1 { background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%); }
.author-2 { background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%); }
.author-3 { background: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%); }

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 400;
}

.author-info p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* Contact page styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #111111;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a9d8f;
}

.submit-btn {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: #000000;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    flex-shrink: 0;
}

.icon-location { background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%); }
.icon-phone { background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%); }
.icon-email { background: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%); }
.icon-time { background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%); }

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-details p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #2a9d8f;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.faq-section {
    padding: 80px 0;
    background-color: #111111;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.faq-item {
    background-color: #000000;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333333;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #111;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 20px 0;
    gap: 8px;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs span {
    color: #fff;
    margin: 0 12px;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 4px;
}

/* Diensten Strip */
.diensten-strip {
    background-color: #111;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.diensten-strip h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #fff;
}

.diensten-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.diensten-link {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.diensten-link:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Vastgoedbeheer Link */
.vastgoedbeheer-link {
    text-align: center;
    margin-bottom: 40px;
}

.service-link.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-link.featured:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Cities Module */
.cities-module {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.cities-module h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #fff;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.city-link {
    background: linear-gradient(135deg, #222, #444);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.city-link:hover {
    background: linear-gradient(135deg, #444, #666);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.up-links {
    text-align: center;
    margin-top: 30px;
}

.up-links p {
    color: #888;
    font-size: 14px;
}

.up-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.up-links a:hover {
    color: #fff;
}

/* Related Cities */
.related-cities {
    padding: 40px 0;
    background-color: #111;
}

.related-cities h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #fff;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
}

/* Page Hero Spacing */
.page-hero {
    padding: 120px 0 60px 0;
    margin-top: 80px;
}

.page-hero h1 {
    margin-bottom: 20px;
    text-align: center;
}

.page-hero p {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Mission Section Centering */
.mission h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* CTA Section Spacing */
.cta-content h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
    line-height: 1.3;
}

.cta-content p {
    margin-bottom: 35px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid Spacing */
.services-grid {
    gap: 30px;
}

.service-card {
    padding: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Process Steps Spacing */
.process-steps {
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step h3 {
    margin: 15px 0 10px 0;
}

.step p {
    margin: 0;
    line-height: 1.5;
}

/* Values Grid Spacing */
.values-grid {
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
}

.value-item p {
    line-height: 1.6;
}

/* Mobile responsive for new pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px 0;
        margin-top: 60px;
    }
    
    .breadcrumbs .container {
        padding: 15px 0;
        font-size: 13px;
        gap: 6px;
    }
    
    .breadcrumbs span {
        margin: 0 8px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-placeholder {
        gap: 30px;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-placeholder {
        flex-direction: column;
        align-items: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.blog-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.blog-categories {
    padding: 80px 0;
    background-color: #111111;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.category-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.featured-articles, .latest-articles {
    padding: 80px 0;
}

.featured-articles h2, .latest-articles h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
}

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

.article-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.article-card.featured {
    grid-column: span 2;
    display: flex;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-card.featured .article-image {
    flex: 0 0 300px;
}

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

.article-card.featured .article-image img {
    height: 100%;
}

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

.article-content {
    padding: 30px;
}

.article-card.featured .article-content {
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.article-meta .category {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.article-meta .date {
    color: #999999;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card.featured .article-content h3 {
    font-size: 1.6rem;
}

.article-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #007bff;
}

.article-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #2d2d2d;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #007bff;
}

/* Article Page Styles */
.article-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.article-hero .article-meta {
    justify-content: center;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.article-image-section {
    padding: 40px 0;
}

.article-featured-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.article-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.table-of-contents {
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333333;
}

.table-of-contents h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.table-of-contents a:hover {
    color: #007bff;
}

.table-of-contents .toc-sub {
    padding-left: 20px;
    font-size: 0.9rem;
}

.main-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.main-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #ffffff;
    border-bottom: 2px solid #333333;
    padding-bottom: 10px;
}

.main-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #ffffff;
}

.main-content p {
    margin-bottom: 20px;
}

.main-content ul, .main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin-bottom: 10px;
}

.main-content blockquote {
    border-left: 4px solid #007bff;
    padding: 20px 30px;
    margin: 30px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.author-bio {
    display: flex;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #333333;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.author-info p {
    color: #cccccc;
    line-height: 1.6;
}

.related-articles {
    margin: 60px 0;
}

.related-articles h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.related-article {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h4 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

.related-article h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article h4 a:hover {
    color: #007bff;
}

.related-article p {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    margin: 60px 0;
    border: 1px solid #333333;
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.article-cta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.blog-categories {
    padding: 80px 0;
    background-color: #111111;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.category-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.featured-articles, .latest-articles {
    padding: 80px 0;
}

.featured-articles h2, .latest-articles h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
}

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

.article-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

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

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.article-meta .category {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.article-meta .date {
    color: #cccccc;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #f4a261;
}

.article-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #f4a261;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e76f51;
}

.newsletter-signup {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter-content p {
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #333333;
    border-radius: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f4a261;
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Article Page Styles */
.article-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.article-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    justify-content: center;
}

.article-meta .category {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.article-meta .date, .article-meta .read-time {
    color: #cccccc;
}

.article-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-image-section {
    padding: 40px 0;
    background-color: #111111;
}

.article-featured-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

.article-content {
    padding: 80px 0;
    background-color: #000000;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.main-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #333333;
}

.main-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    color: #ffffff;
    border-bottom: 2px solid #f4a261;
    padding-bottom: 10px;
}

.main-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.main-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-content ul, .main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.main-content strong {
    color: #ffffff;
}

.main-content blockquote {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-left: 4px solid #f4a261;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
}

.main-content blockquote p {
    color: #ffffff;
    margin: 0;
}

.contextual-link {
    color: #f4a261;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contextual-link:hover {
    color: #e76f51;
    text-decoration: underline;
}

.related-services-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid #333333;
}

.related-services-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.related-links-list {
    list-style: none;
    padding: 0;
}

.related-links-list li {
    margin-bottom: 10px;
}

.table-of-contents {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    position: sticky;
    top: 120px;
}

.table-of-contents h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.table-of-contents a:hover {
    color: #f4a261;
}

.author-bio {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    border-top: 1px solid #333333;
}

.author-bio-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #f4a261;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.author-info p {
    color: #cccccc;
    line-height: 1.6;
}

.related-articles {
    padding: 60px 0;
    background-color: #111111;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #ffffff;
}

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

.related-article {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h4 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

.related-article h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article h4 a:hover {
    color: #f4a261;
}

.related-article p {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.article-cta h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.article-cta p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f4a261;
    border: 2px solid #f4a261;
}

.btn-secondary:hover {
    background: #f4a261;
    color: white;
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 162, 97, 0.4);
    color: white;
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .article-hero {
        padding: 100px 0 40px;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .table-of-contents {
        position: static;
        margin-top: 30px;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .article-card.featured .article-image {
        flex: none;
    }
    
    .article-card.featured .article-image img {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-of-contents {
        position: static;
        order: -1;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
