/* assets/style.css */
:root {
    --primary-color: #e36f1e;
    --primary-hover: #c95e16;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #eeeeee;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --bg-gray: #f2f2f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header - More Transparent & Rounded */
header {
    background: rgba(242, 242, 245, 0.2);
    backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

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

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
}

/* Hero Slider */
.hero-slider {
    margin-top: 0;
    position: relative;
    height: 80vh;
    /* Reduced from 100vh */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 3s ease-in-out;
    /* Very slow fade 3s */
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.exiting {
    opacity: 0;
    z-index: 1;
    transition: opacity 3s ease-in-out;
}

/* Animations */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-animator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-slide.active .hero-animator,
.hero-slide.exiting .hero-animator {
    animation: kenburns 15s ease-out forwards;
}

/* New Layer for Zoom/Position Support */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.1s;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay logic */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

/* Adjusted padding for content to not be hidden by header */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    color: var(--text-dark);
    margin-top: 50px;
}

.hero-slide h1 {
    font-size: 54px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hero-slide p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #222;
    background: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    display: block;
    max-width: 90%;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background-color: var(--primary-color);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border: 2px solid white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 111, 30, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e0e0e0;
    margin: 15px auto 0;
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ref-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.ref-item:hover img {
    transform: scale(1.05);
}

.ref-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px;
    font-weight: 500;
}

.ref-more {
    text-align: center;
    margin-top: 40px;
}

/* Reality */
.reality {
    padding: 100px 0;
    color: var(--text-dark);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.reality-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reality .container {
    position: relative;
    z-index: 2;
}

.reality-content {
    max-width: 500px;
}

.reality h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.reality h2 span {
    color: var(--primary-color);
}

.reality p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

/* Contacts */
#contact {
    padding: 100px 0;
    z-index: 1;
    /* Default Pattern: Technical Diagonal Lines */
    background-color: #f0f2f5;
    background-image: repeating-linear-gradient(45deg,
            #e2e6ea,
            #e2e6ea 2px,
            #f0f2f5 2px,
            #f0f2f5 10px);
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft gradient overlay to fade it out slightly at top/bottom */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8));
    z-index: 1;
    pointer-events: none;
}

#contact .container {
    position: relative;
    z-index: 2;
}

.contacts-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    min-width: 300px;
    background: none;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    /* New Layout Logic */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Text Top, Contacts Bottom */
}

.contact-intro-text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    max-width: 600px;
}

.contact-persons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: auto;
    /* Push to bottom if space-between isn't enough */
}

.person {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    min-width: 180px;
}

.person h3 {
    margin-bottom: 2px;
    font-size: 18px;
    /* Reduced from 24px */
    color: #444;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.person .role {
    color: var(--text-light);
    font-weight: 400;
    font-size: 13px;
    /* Reduced from 14px */
    margin-bottom: 8px;
    display: block;
}

.person-contact div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 14px;
    /* Reduced from 15px */
    color: #333;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.person-contact i {
    color: var(--primary-color);
}

/* Right Side - Glassmorphism Restored */
.contact-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-right h2 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 24px;
}

.contact-split-info {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.contact-col-primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.contact-col-primary div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.contact-col-primary i {
    color: var(--primary-color);
}

.contact-col-address {
    flex: 1;
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}

.contact-col-address i {
    color: var(--primary-color);
    margin-top: 3px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: #fff;
}

.contact-form button[type="submit"] {
    padding: 8px 20px;
    font-size: 14px;
}

/* New Footer Styles */
.site-footer {
    background: #f2f2f5;
    padding: 20px 0 10px;
    /* Reduced vertical padding */
    color: var(--text-dark);
    border-top: 1px solid #e0e0e0;
}

/* Footer Top: Logo - Nav - Socials */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    /* Reduced margin */
    padding-bottom: 10px;
    /* Reduced padding */
    border-bottom: 1px solid #ddd;
}

.footer-logo img {
    height: 40px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    color: #444;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #e0e0e0;
    transition: background 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: white;
}


/* Partner Ticker */
.footer-partners-strip {
    height: 60px;
    /* Reduced from 80px */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content vertically */
    overflow: hidden;
    position: relative;
    background: #f2f2f5;
    width: 100%;
}

.footer-ticker-wrap {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.footer-ticker {
    display: flex;
    /* Forces items (lists) to be side-by-side */
    width: max-content;
    /* Critical: allows it to grow beyond screen width */
    animation: ticker 40s linear infinite;
    /* Smooth continuous scroll */
}

/* Individual list of items */
.ticker-list {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Critical: prevents shrinking */
    padding: 0;
    margin: 0;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
    /* Spacing between logos */
    position: relative;
    flex-shrink: 0;
    /* Critical: prevents logo shrinking */
}

.partner-logo-item::after {
    content: '';
    position: absolute;
    right: -40px;
    /* Halfway */
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: #ddd;
}

.partner-logo-item img {
    height: 25px;
    /* Reduced height */
    width: auto;
    max-width: none;
    /* Critical: allows image to be its natural width */
    filter: none;
    /* Full Color */
    opacity: 0.9;
    transition: opacity 0.3s;
    display: block;
}

.partner-logo-item img:hover {
    opacity: 1;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .contacts-wrapper {
        gap: 30px;
    }

    .partner-logo-item {
        margin: 0 30px;
    }

    .partner-logo-item::after {
        right: -30px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Header & Navigation */
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 15px 0;
    }

    .logo img {
        height: 40px;
    }

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

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

    .main-nav ul li {
        width: 100%;
        text-align: left;
    }

    .main-nav ul li a {
        display: block;
        padding: 10px 0;
    }

    .cta-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }

    .hero-slide h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-slide p {
        font-size: 16px;
    }

    /* Section Titles */
    h2.section-title,
    .reality h2,
    #contact h2 {
        font-size: 28px;
    }

    /* References Grid */
    .references-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Reality Section */
    .reality {
        padding: 60px 0;
    }

    .reality-content {
        max-width: 100%;
        padding: 30px;
    }

    .reality-content h2 {
        font-size: 26px;
    }

    .reality-content p {
        font-size: 15px;
    }

    /* Contact Section */
    #contact {
        padding: 60px 0;
    }

    .contacts-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-left {
        min-width: 100%;
    }

    .contact-intro-text {
        font-size: 15px;
        max-width: 100%;
    }

    .contact-persons {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .person {
        min-width: 100%;
    }

    .person h3 {
        font-size: 16px;
    }

    .person .role {
        font-size: 12px;
    }

    .person-contact div {
        font-size: 13px;
    }

    .contact-right {
        max-width: 100%;
        min-width: 100%;
    }

    .contact-right h2 {
        font-size: 24px;
    }

    .contact-split-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-col-address {
        border-left: none;
        padding-left: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo img {
        height: 50px;
    }

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

    .footer-nav a {
        font-size: 13px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-socials a {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }

    .footer-partners-strip {
        height: 50px;
    }

    .partner-logo-item {
        margin: 0 25px;
    }

    .partner-logo-item::after {
        right: -25px;
    }

    .partner-logo-item img {
        height: 20px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .hero-slider {
        height: 45vh;
        min-height: 350px;
    }

    .hero-slide h1 {
        font-size: 24px;
    }

    .hero-slide p {
        font-size: 14px;
    }

    h2.section-title,
    .reality h2,
    #contact h2 {
        font-size: 24px;
    }

    .reality-content {
        padding: 20px;
    }

    .contact-right {
        padding: 15px 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .partner-logo-item {
        margin: 0 20px;
    }

    .partner-logo-item::after {
        right: -20px;
    }
}

/* Modal Styles - Shared */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-window {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-window {
    transform: translateY(0);
}

.modal-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

/* Map Iframe Style */
.map-container {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Reality Promo Section - Redesign */
.promo-section {
    position: relative;
    background-color: #f7f9fc;
    border-bottom: 1px solid #eaeaea;
}
.promo-grid {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}
.promo-content {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 80px 60px 0; /* Left part has container logic usually, but here full width? Will wrap in container */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Fix for full width layout mixed with container */
.promo-full-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.promo-left-bg {
    flex: 1;
    background-color: #e6ebf5; /* Fallback */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right side of the left block (towards center) */
    padding: 60px 40px;
}
.promo-left-bg::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    /* Detailed gradient from mockup */
    background: linear-gradient(to right, rgba(240,244,250,0.98) 0%, rgba(240,244,250,0.85) 60%, rgba(240,244,250,0.1) 100%);
    z-index: 1;
}
.promo-text-wrap {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}
.promo-image-right {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.promo-title {
    font-size: 38px;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.2;
}
.promo-title span {
    color: #e36f1e;
    font-weight: 700;
}
.promo-list {
    list-style: none;
    padding: 0;
}
.promo-list li {
    margin-bottom: 25px; /* Spacing */
    font-size: 19px;
    color: #444;
    display: flex;
    align-items: center;
}
.promo-list li .icon-box {
    color: #e36f1e;
    margin-right: 20px;
    border: 2px solid #e36f1e;
    border-radius: 6px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* New Reality Footer */
.reality-footer-wrapper {
    background: #fdfdfd;
    padding: 50px 0;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-brand {
    font-size: 28px;
    color: #333;
    display: flex; align-items: center; gap: 10px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-size: 18px;
}
.footer-contact-item .f-icon {
    background: #e36f1e;
    color: white;
    width: 44px; height: 44px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .promo-image-right { display: none; } /* On simple requirement, maybe stack? Let's stack */
    .promo-image-right { display: block; width: 100%; height: 300px; order: -1; }
    .promo-full-wrapper { flex-direction: column; }
    .promo-left-bg { justify-content: center; }
    .footer-row { flex-direction: column; align-items: flex-start; }
}

/* Promo Section V2 (Full Width) */
.promo-full-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
}
.promo-full-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Gradient from solid color on left to transparent on right to show image */
    background: linear-gradient(to right, rgba(247,249,252,0.98) 0%, rgba(247,249,252,0.92) 45%, rgba(247,249,252,0.4) 75%, rgba(247,249,252,0) 100%);
    z-index: 1;
}
/* Mobile adjustment for gradient */
@media (max-width: 768px) {
    .promo-full-bg::before {
        background: rgba(247,249,252,0.95); /* Nearly solid on mobile for readability */
    }
}
.promo-content-v2 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 0;
}

/* User adjustments Jan 2026 - Reality Division */

/* 1. Promo alignment (Left with spacing) */
.promo-content-v2 {
    margin-left: 50px;
}
@media (max-width: 768px) {
    .promo-content-v2 {
        margin-left: 0;
        padding-left: 25px; 
        padding-right: 25px;
    }
}

/* 3, 4, 6. Footer adjustments */
.reality-footer-wrapper .footer-brand {
    font-size: 15px !important;
    color: #999 !important; /* Lighter grey for "Jsme divize..." */
    font-weight: 400;
}
.reality-footer-wrapper .footer-brand strong {
    color: #445566 !important; /* Dark blue-grey for "EXPO living" */
    font-weight: 700;
}
.reality-footer-wrapper .footer-contact-item {
    font-size: 13px !important; /* Smaller phone/email */
}
/* Reduce icon size slightly */
.reality-footer-wrapper .f-icon {
    width: 28px; 
    height: 28px; 
    line-height: 28px; 
    font-size: 12px;
}
