/*
Theme Name: Residence Columbia Custom
Description: Custom built theme mapped directly from HTML wireframe. Optimized for 0 bloat and speed. Polylang-ready (EN/IT/DE/RU/CS/SK/HU) with auto-language setup, bundled string translations, full apartment descriptions (EN/IT/DE sourced from live, RU/CS/SK/HU AI-translated), Privacy & Cookie policy translated from client-supplied IT source, and all default imagery (logo, hero, apartments, USP background) self-contained under /assets/images/.
Author: Weblooc
Version: 1.8.0
Text Domain: residence-columbia
*/
        /* CSS Variables - Design Tokens */
        :root {
            --primary: #630328; /* Residence Columbia Maroon */
            --primary-hover: #4A021E;
            --text-dark: #22201f;
            --text-light: #4B5563;
            --bg-light: #F9FAFB;
            --white: #FFFFFF;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --radius-md: 8px;
            --radius-lg: 16px;
        }

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

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* -- 1. Navigation -- */
        nav {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

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

        .nav-links {
            display: flex;
            gap: 32px;
        }

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

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

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
        }

        .btn-outline:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--white);
        }

        .btn-text {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.2s;
        }

        .btn-text:hover {
            gap: 12px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Language Selector */
        .lang-selector {
            position: relative;
        }
        .lang-current {
            display: flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid #E5E7EB;
            border-radius: 6px;
            padding: 7px 12px;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.2s;
        }
        .lang-current:hover {
            border-color: var(--primary);
        }
        .lang-current img {
            border-radius: 2px;
        }
        .lang-arrow {
            font-size: 10px;
            opacity: 0.6;
        }
        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            min-width: 150px;
            overflow: hidden;
            z-index: 200;
            border: 1px solid #E5E7EB;
        }
        .lang-dropdown.show {
            display: block;
        }
        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.15s;
        }
        .lang-option:hover {
            background: var(--bg-light);
        }
        .lang-option.active {
            color: var(--primary);
            font-weight: 600;
        }
        .lang-option img {
            border-radius: 2px;
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px 24px 30px;
            border-bottom: 1px solid #E5E7EB;
            box-shadow: var(--shadow-md);
        }
        .mobile-menu.active {
            display: flex;
        }
        .mobile-menu a {
            padding: 12px 0;
            font-weight: 500;
            font-size: 16px;
            border-bottom: 1px solid #f3f4f6;
        }
        .mobile-menu-lang {
            display: flex;
            gap: 16px;
            padding-top: 16px;
            margin-top: 8px;
        }
        .mobile-menu-lang a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1px solid #E5E7EB;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 100;
        }
        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* -- 2. Hero Section -- */
        .hero {
            height: 100vh;
            min-height: 750px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding-top: 80px; /* Offset for nav */
            overflow: hidden;
        }
        .hero-slider-wrapper {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 0;
        }
        .hero-swiper,
        .hero-swiper .swiper-wrapper,
        .hero-swiper .swiper-slide {
            width: 100%;
            height: 100%;
        }
        .hero-swiper .swiper-slide {
            background-size: cover;
            background-position: center;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
            z-index: 1;
            pointer-events: none;
        }
        .hero .container.relative {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            color: var(--white);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 140px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Booking Box */
        .booking-box {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            gap: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1040px;
            align-items: flex-end;
            z-index: 10;
        }

        .booking-field {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            min-width: 0;
        }

        .booking-field:not(:last-of-type)::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #E5E7EB;
        }

        .booking-field label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding-left: 16px;
        }

        .booking-field input, .booking-field select {
            padding: 12px 16px;
            border: 2px solid transparent;
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            width: 100%;
            outline: none;
            transition: all 0.2s;
            background-color: #F9FAFB;
            cursor: pointer;
        }

        .booking-field input:hover, .booking-field select:hover {
            background-color: #F3F4F6;
        }

        .booking-field input:focus, .booking-field select:focus {
            border-color: var(--primary);
            background-color: var(--white);
        }

        .booking-btn {
            flex: 1.2;
            padding: 14px 18px;
            font-size: clamp(13px, 1.3vw, 18px);
            margin-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            min-width: 0;
            height: 49px; /* matches .booking-field input height (12+12 padding + ~25 line-height = ~49) */
        }

        /* -- 3. Apartments Section -- */
        .section-padding {
            padding: 140px 0 100px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 18px;
        }

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

        .card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #F3F4F6;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card-img {
            height: 260px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(4px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .card-content {
            padding: 32px 24px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .card-features {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            color: var(--text-light);
            font-size: 15px;
        }

        .card-features span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #F3F4F6;
            padding-top: 24px;
        }

        .card-price {
            font-size: 15px;
            color: var(--text-light);
        }
        
        .card-price strong {
            font-size: 24px;
            color: var(--text-dark);
            font-weight: 700;
        }

        /* -- 4. Split Screen / USPs -- */
        .split {
            display: flex;
            align-items: stretch;
            background: var(--white);
            margin: 60px 0;
        }

        .split-img {
            flex: 1;
            background-image: url('https://residencecolumbia.it/wp-content/uploads/2020/11/residence-columbia-11.jpg');
            background-size: cover;
            background-position: center;
            min-height: 600px;
        }

        .split-content {
            flex: 1;
            padding: 100px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--white);
        }

        .split-content h2 {
            font-size: 42px;
            margin-bottom: 48px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .usp-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .usp-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 16px;
            border-radius: var(--radius-lg);
            transition: background 0.3s;
        }

        .usp-item:hover {
            background-color: var(--bg-light);
        }

        .usp-icon {
            background-color: rgba(107, 33, 168, 0.08);
            color: var(--primary);
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .usp-text h4 {
            font-size: 20px;
            margin-bottom: 6px;
            font-weight: 600;
        }

        .usp-text p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.5;
        }

        /* -- 5. Social Proof -- */
        .social-proof {
            background-color: var(--bg-light);
            text-align: center;
            padding: 120px 0;
        }

        .stars {
            color: #F59E0B;
            font-size: 28px;
            margin-bottom: 32px;
            letter-spacing: 4px;
        }

        .quote {
            font-size: 32px;
            font-weight: 300;
            font-style: auto;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.4;
            color: var(--text-dark);
        }

        .author {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 18px;
        }

        .booking-score {
            display: inline-block;
            margin-top: 8px;
            background: #003580;
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
        }

        /* -- 6. Footer -- */
        footer {
            background-color: var(--text-dark); /* #22201f */
            color: var(--white);
            padding: 100px 0 40px;
        }

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

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            display: block;
            letter-spacing: -0.5px;
        }
        
        .footer-logo span {
            color: #A78BFA;
        }

        .footer-desc {
            color: #9CA3AF;
            margin-bottom: 32px;
            max-width: 350px;
            font-size: 16px;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 18px;
            margin-bottom: 32px;
            font-weight: 600;
            color: var(--white);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: #9CA3AF;
            transition: color 0.2s;
            font-size: 16px;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            color: #6B7280;
            border-top: 1px solid #1F2937;
            padding-top: 40px;
            font-size: 14px;
        }
        .footer-bottom p { margin: 0; }
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        .footer-legal a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: var(--white); }
        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* -- 3.5 Offers -- */
        .offers-section {
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0;
        }
        .offers-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .offers-header h2 {
            font-size: 36px;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .offer-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 32px;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
        }
        .offer-badge {
            background: #F59E0B;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            align-self: flex-start;
            margin-bottom: 16px;
            display: inline-block;
        }
        .offer-title {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .offer-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        /* -- Responsiveness (Mobile/Tablet) -- */
        @media (max-width: 1024px) {
            .booking-box {
                flex-direction: column;
                position: relative;
                bottom: 0;
                transform: none;
                left: 0;
                margin-top: -80px;
                margin-bottom: 60px;
                padding: 32px;
                width: calc(100% - 64px);
                margin-left: 32px;
            }
            .booking-field:not(:last-of-type)::after {
                display: none;
            }
            .booking-field input, .booking-field select {
                background-color: var(--white);
                border: 1px solid #E5E7EB;
            }
            .booking-field label {
                display: none; /* Hide labels since we use placeholders */
            }
            .booking-btn {
                width: 100%;
                margin-left: 0;
                margin-top: 16px;
            }
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .split {
                flex-direction: column;
            }
            .hero h1 { font-size: 48px; }
            .split-content { padding: 80px 32px; }
        }

        @media (max-width: 768px) {
            .logo { font-size: 22px; }
            .nav-book-btn { padding: 10px 18px; font-size: 14px; }
            .lang-selector { display: none; } /* Shown inside mobile menu instead */
            .hamburger { display: flex; }
            
            .booking-box {
                padding: 16px !important;
                margin-top: -30px !important;
                margin-bottom: 32px !important;
                margin-left: 16px !important;
                margin-right: 16px !important;
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
                border-radius: var(--radius-md) !important;
                width: auto !important;
                max-width: calc(100% - 32px) !important;
            }
            .booking-field {
                min-width: 0; /* allow grid items to shrink so iOS date inputs don't overflow */
            }
            .booking-field:nth-child(1), .booking-field:nth-child(2) {
                grid-column: span 1;
            }
            .booking-field:nth-child(3), .booking-btn {
                grid-column: 1 / -1;
            }
            .booking-field input, .booking-field select {
                padding: 10px 12px !important;
                font-size: 16px !important; /* must be >= 16px to avoid iOS auto-zoom on focus */
                height: 46px !important;
                width: 100% !important;
                min-width: 0 !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                -webkit-appearance: none;
                appearance: none;
            }
            .booking-field input[type="date"]::-webkit-date-and-time-value {
                text-align: left;
            }
            .booking-field input::-webkit-calendar-picker-indicator {
                opacity: 0.5;
                margin-left: 4px;
            }
            .booking-btn {
                margin-top: 4px !important;
                padding: 12px !important;
                font-size: 16px !important;
                min-height: 50px !important;
                height: auto !important;
                line-height: 1.2 !important;
            }
            
            .offers-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .split-img { min-height: 400px; }
            .quote { font-size: 24px; padding: 0 16px; }
            .hero h1 { font-size: 40px; }
            .hero p { font-size: 18px; }
            .form-grid { grid-template-columns: 1fr !important; }
            .contact-container { padding: 32px 24px !important; }
            body { padding-bottom: 80px; }
            .mobile-sticky-cta {
                display: flex !important;
            }
        }

        /* -- 7. Mobile Sticky CTA -- */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            border-top: 1px solid #E5E7EB;
            gap: 10px;
        }
        .mobile-sticky-cta .btn {
            flex: 1;
            text-align: center;
            justify-content: center;
            font-size: 15px;
            padding: 14px 10px;
        }
        .mobile-call-btn {
            background: white !important;
            color: var(--primary) !important;
            border: 2px solid var(--primary) !important;
        }
        .mobile-call-btn:hover {
            background: var(--bg-light) !important;
        }

        /* -- 6. Contact Form -- */
        .contact-section {
            background-color: var(--white);
            padding: 100px 0;
        }
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-light);
            padding: 56px;
            border-radius: var(--radius-lg);
            border: 1px solid #F3F4F6;
            box-shadow: var(--shadow-sm);
        }
        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .contact-header h2 {
            font-size: 36px;
            margin-bottom: 16px;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }
        .contact-header p {
            color: var(--text-light);
            font-size: 18px;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .form-group input, .form-group textarea {
            padding: 14px 16px;
            border: 1px solid #E5E7EB;
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 16px;
            outline: none;
            transition: all 0.2s;
            background: var(--white);
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* -- Contact Form 7 overrides (so CF7 markup matches the original inline form) -- */
        .contact-form .wpcf7-form {
            margin: 0;
            padding: 0;
        }
        .contact-form .wpcf7-form-control-wrap {
            display: block;
            width: 100%;
        }
        .contact-form input.wpcf7-form-control:not([type="submit"]),
        .contact-form textarea.wpcf7-form-control {
            width: 100%;
            box-sizing: border-box;
            padding: 14px 16px;
            border: 1px solid #E5E7EB;
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 16px;
            outline: none;
            transition: all 0.2s;
            background: var(--white);
        }
        .contact-form input.wpcf7-form-control:focus,
        .contact-form textarea.wpcf7-form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
        }
        .contact-form textarea.wpcf7-form-control {
            resize: vertical;
            min-height: 120px;
        }
        .contact-form input.wpcf7-submit {
            width: auto;
            min-width: 240px;
            padding: 16px 40px;
            font-size: 16px;
            cursor: pointer;
        }
        .contact-form .rc-form-submit {
            text-align: center;
            margin: 8px 0 0;
        }
        .contact-form .wpcf7-not-valid-tip {
            color: #b91c1c;
            font-size: 13px;
            margin-top: 6px;
        }
        .contact-form .wpcf7-response-output {
            grid-column: 1 / -1;
            margin: 16px 0 0 !important;
            padding: 14px 16px !important;
            border-radius: var(--radius-md) !important;
            font-size: 14px;
        }
        .contact-form .wpcf7-spinner {
            margin: 0 0 0 12px;
            vertical-align: middle;
        }

        /* Swiper Overrides */
        .swiper-button-next, .swiper-button-prev {
            transform: scale(0.6) !important;
            color: var(--primary) !important;
        }
        .swiper-button-next::after, .swiper-button-prev::after {
            font-weight: bold;
        }
        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
        }
        
        /* Nested Image Arrows (White) */
        .nested-image-swiper .swiper-button-next,
        .nested-image-swiper .swiper-button-prev {
            color: white !important;
            opacity: 0.8;
            transform: scale(0.5) !important;
        }
        .nested-image-swiper .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.7);
        }
        .nested-image-swiper .swiper-pagination-bullet-active {
            background: white !important;
        }
        
        /* Apartments Slider Outside Arrows */
        .apartments-slider-container {
            position: relative;
            padding: 0 40px; /* Space for the arrows on the sides */
        }
        .apartments-next { right: -10px !important; }
        .apartments-prev { left: -10px !important; }
        
        @media (max-width: 768px) {
            .apartments-slider-container { padding: 0 20px; }
            .apartments-next { right: -5px !important; }
            .apartments-prev { left: -5px !important; }
        }

        /* Best Price Guaranteed Badge */
        .best-price-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 15;
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .best-price-badge::before {
            content: '✓';
            font-size: 0.9rem;
        }

        /* Offers Swiper */
        .offers-slider-container {
            position: relative;
            padding: 0 50px;
        }
        .offers-slider-container .offers-pagination {
            text-align: center;
            margin-top: 25px;
            position: relative;
        }
        .offers-slider-container .offers-pagination .swiper-pagination-bullet {
            background: rgba(255,255,255,0.5);
        }
        .offers-slider-container .offers-pagination .swiper-pagination-bullet-active {
            background: white !important;
        }
        .offers-next, .offers-prev {
            color: white !important;
        }
        @media (max-width: 768px) {
            .offers-slider-container { padding: 0 25px; }
        }

        /* Reviews Slider */
        .reviews-slider-container {
            position: relative;
            padding: 0 50px;
            margin: 20px 0;
        }
        .reviews-slider-container .reviews-pagination {
            text-align: center;
            margin-top: 20px;
            position: relative;
        }
        .review-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }
        .review-card .quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-style: italic;
        }
        .review-card .author {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .reviews-slider-container { padding: 0 25px; }
            .review-card { padding: 20px; }
            .review-card .quote { font-size: 1rem; }
        }

        /* Floating Contact Bubble */
        .floating-contact-bubble {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            z-index: 900;
            max-width: 280px;
            animation: bubbleIn 0.5s ease-out;
            border: 1px solid #E5E7EB;
        }
        .floating-contact-bubble.hidden {
            display: none;
        }
        .bubble-close {
            position: absolute;
            top: 8px;
            right: 12px;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-light);
            line-height: 1;
        }
        .bubble-close:hover {
            color: var(--text-dark);
        }
        .bubble-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .bubble-text {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.5;
            margin-bottom: 15px;
        }
        .bubble-btn {
            width: 100%;
            padding: 12px !important;
            font-size: 14px !important;
            text-align: center;
        }
        @keyframes bubbleIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @media (max-width: 768px) {
            .floating-contact-bubble { display: none !important; }
        }
