
        /* Reset */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #6b207d;
            --primary-dark: #541963;
            --text-color: #555555;
            --text-dark: #222222;
            --border: #e8e8e8;
        }

        body {
            font-family: 'FS Albert', sans-serif;
            color: var(--text-color);
            background: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1440px !important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }
            .explore-heading-section {
                padding: 40px 0 24px;
            }
        }

        /* ================================
           HERO SECTION
           ================================ */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #1a0a1e;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('../images/area-guide.png');
            background-size: cover;
            background-position: center right;
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 48%;
            background: linear-gradient(to right, 
                rgba(107, 32, 125, 0.90) 0%, 
                rgba(107, 32, 125, 0.90) 55%, 
                rgba(107, 32, 125, 0.77) 70%, 
                rgba(107, 32, 125, 0.5) 85%, 
                rgba(107, 32, 125, 0.1) 95%,
                transparent 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 60px;
            max-width: 550px;
        }

        .hero-section .container {
            width: 100%;
            display: flex;
            justify-content: flex-start;
        }

        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0;
            font-size: 13px;
            color: #fff;
            margin-bottom: 32px;
        }

        .hero-breadcrumb a {
            color: #fff;
            text-decoration: none;
            transition: opacity .2s;
        }

        .hero-breadcrumb a:hover {
            opacity: 0.75;
        }

        .hero-breadcrumb-separator {
            margin: 0 8px;
            color: #fff;
            display: inline-flex;
            align-items: center;
        }

        .hero-breadcrumb-separator svg {
            width: 16px;
            height: 16px;
            stroke: #fff;
            fill: none;
        }

        .hero-title {
            font-family: 'FS Albert', sans-serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 400;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.95);
            line-height: 1.5;
            margin-bottom: 16px;
            max-width: 480px;
        }

        .hero-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 48px;
            max-width: 450px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.2s;
        }

        .hero-cta:hover {
            background: var(--primary-dark);
        }

        .hero-cta svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s;
        }

        .hero-cta:hover svg {
            transform: translateX(3px);
        }

        .hero-stats {
            display: flex;
            gap: 0;
            margin-top: 64px;
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 40px;
        }

        .hero-stat {
            flex: 1;
            padding-right: 32px;
            border-right: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat:last-child {
            border-right: none;
            padding-right: 0;
            padding-left: 32px;
        }

        .hero-stat:not(:first-child):not(:last-child) {
            padding-left: 32px;
        }

        .hero-stat-number {
            font-size: 36px;
            font-weight: 300;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 6px;
        }

        .hero-stat-number span {
            color: #c97fd4;
        }

        .hero-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            letter-spacing: 0.04em;
        }

        @media (max-width: 1024px) {
            .hero-overlay {
                width: 55%;
                background: linear-gradient(to right,
                    rgba(107, 32, 125, 0.98) 0%,
                    rgba(107, 32, 125, 0.95) 40%,
                    rgba(107, 32, 125, 0.6) 70%,
                    rgba(107, 32, 125, 0.1) 90%,
                    transparent 100%);
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
            }
            .hero-content {
                padding: 80px 0 32px;
                max-width: 100%;
            }
            .hero-title {
                font-size: 28px;
                margin-bottom: 12px;
            }
            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 10px;
            }
            .hero-desc {
                font-size: 13px;
                margin-bottom: 0;
                display: none;
            }
            .hero-features {
                display: none;
            }
            .hero-overlay {
                width: 55%;
                background: linear-gradient(to right,
                    rgba(107, 32, 125, 0.98) 0%,
                    rgba(107, 32, 125, 0.95) 40%,
                    rgba(107, 32, 125, 0.6) 70%,
                    rgba(107, 32, 125, 0.1) 90%,
                    transparent 100%);
            }
        }

        /* Hero features moved below hero on mobile */
        .hero-features-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-features-mobile {
                display: flex;
                gap: 0;
                background: var(--primary);
                padding: 16px 20px;
            }

            .hero-features-mobile .hero-feature {
                flex: 1;
                flex-direction: row;
                align-items: center;
                gap: 8px;
                padding: 0 12px;
                border-right: 1px solid rgba(255,255,255,0.2);
            }

            .hero-features-mobile .hero-feature:last-child {
                border-right: none;
            }

            .hero-features-mobile .hero-feature-icon {
                width: 20px;
                height: 20px;
                flex-shrink: 0;
            }

            .hero-features-mobile .hero-feature-label {
                font-size: 11px;
                color: rgba(255,255,255,0.9);
                line-height: 1.2;
            }
        }

        .hero-features {
            display: flex;
            gap: 48px;
            margin-top: 40px;
        }

        .hero-feature {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .hero-feature-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-feature-icon svg {
            width: 100%;
            height: 100%;
            stroke: #ffffff;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hero-feature-label {
            font-size: 13px;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        /* ================================
           EXPLORE HEADING SECTION
           ================================ */
        .explore-heading-section {
            padding: 40px 0 20px;
        }

        .section-eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'FS Albert', sans-serif;
            font-size: clamp(28px, 3vw, 44px);
            font-weight: 400;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-divider {
            width: 40px;
            height: 2px;
            background: var(--primary);
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-color);
            line-height: 1.7;
            max-width: 600px;
        }

        /* ================================
           SPEAK WITH LOCAL EXPERT
           ================================ */
        .expert-section {
            padding: 40px 40px;
            background: #f5f3f7;
            border-radius: 12px;
            margin-bottom: 40px;
        }

        .expert-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .expert-left {
            flex: 1;
            max-width: 320px;
        }

        .expert-section-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 32px;
            font-weight: 400;
            color: var(--primary);
            margin-bottom: 24px;
            line-height: 1.2;
            position: relative;
        }

        .expert-section-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: var(--primary);
            margin-top: 16px;
        }

        .expert-section-desc {
            font-size: 15px;
            color: var(--text-color);
            line-height: 1.7;
        }

        .expert-center {
            flex-shrink: 0;
            text-align: center;
            display: flex;
            gap: 20px;
        }

        .expert-img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            display: block;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 0 auto 12px;
        }

        .expert-name {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary);
            margin: 0 0 4px;
            text-align: left;
        }

        .expert-role {
            font-size: 13px;
            color: var(--text-color);
            margin-bottom: 12px;
            text-align: left;
        }

        .expert-contact {
            font-size: 13px;
            color: var(--text-color);
        }

        .expert-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .expert-contact-item svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 2;
        }

        .expert-right {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .expert-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none !important;
            transition: all 0.2s;
            border: 1px solid var(--primary);
            background: #fff;
            color: var(--primary);
        }

        .expert-btn svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .expert-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        @media (max-width: 1024px) {
            .expert-inner {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            .expert-left {
                max-width: 100%;
                text-align: center;
            }
            .expert-section-title::after {
                margin-left: auto;
                margin-right: auto;
            }
            .expert-right {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-feature-icon svg {
            height: 25px;
            width: 25px;
            }
            .hero-features{
                gap: 20px;
            }
            .expert-section {
                padding: 24px 18px;
                border-radius: 8px;
            }
            .expert-inner {
                gap: 24px;
            }
            .expert-section-title {
                font-size: 22px;
                margin-bottom: 12px;
            }
            .expert-section-desc {
                font-size: 14px;
            }
            .expert-center {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .expert-img {
                width: 90px;
                height: 90px;
            }
            .expert-name {
                font-size: 15px;
                text-align: center;
            }
            .expert-role {
                text-align: center;
            }
            .expert-right {
                width: 100%;
                gap: 8px;
            }
            .expert-btn {
                flex: 1;
                padding: 10px 16px;
                font-size: 13px;
                justify-content: center;
            }
        }

        /* ================================
           FIND YOUR PERFECT PLACE CTA
           ================================ */
        .cta-section {
            position: relative;
        }

        .cta-section-inner {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1519451241324-20b4ea2c4220?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            overflow: hidden;
            padding: 80px 0;
                border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
        }

        .cta-section-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(107, 32, 125, 0.85);
            z-index: 1;
        }

        .cta-section-inner a{
            text-decoration: none;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 28px;
        }

        .cta-title {
            font-family: 'FS Albert', sans-serif;
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 400;
            color: #ffffff;
            line-height: 1.3;
            margin: 0;
        }

        .cta-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #fff;
            color: var(--primary);
            font-family: 'FS Albert', sans-serif;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 40px;
            border-radius: 4px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .cta-btn-primary:hover {
            background: #f8f8f8;
            transform: translateY(-2px);
        }

        /* ================================
           FONTS
           ================================ */
        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Light.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Light.woff') format('woff');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Regular.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Regular.woff') format('woff');
            font-weight: 400 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Bold.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Bold.woff') format('woff');
            font-weight: 600 700;
            font-style: normal;
            font-display: swap;
        }

        /* ================================
           COMPONENT SCOPED STYLES
           ================================ */
        .area-guide-explore-marbella-by-area {
            padding-bottom: 80px;

            /* Grid Layout */
            .areas-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .areas-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 24px;
                }
            }

            @media (max-width: 640px) {
                .areas-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }

            /* Card Styling */
            .area-card {
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 4px;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                height: 100%;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
                transition: box-shadow 0.3s ease, transform 0.3s ease;
            }

            .area-card:hover {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transform: translateY(-2px);
            }

            .ac-img {
                width: 100%;
                height: 250px;
                object-fit: cover;
                display: block;
                border-bottom: 1px solid var(--border);
            }

            .ac-body {
                padding: 30px;
                display: flex;
                flex-direction: column;
                flex: 1;
            }

            @media (max-width: 768px) {
                .ac-body {
                    padding: 18px;
                }
                .ac-title {
                    font-size: 20px;
                }
                .ac-img {
                    height: 200px;
                }
            }

            .ac-title {
                font-family: 'FS Albert', sans-serif;
                font-size: 26px;
                font-weight: 400;
                color: var(--primary);
                margin-bottom: 12px;
                line-height: 1.25;
            }

            .ac-desc {
                font-family: inherit;
                font-size: 15px;
                color: var(--text-color);
                margin-bottom: 25px;
                line-height: 1.6;
                flex: 1;
            }

            .ac-link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                color: var(--primary);
                font-weight: 600;
                font-size: 15px;
                text-decoration: none !important;
                transition: color 0.2s;
            }

            .ac-link:hover {
                color: var(--primary-dark);
            }

            .ac-link svg {
                width: 16px;
                height: 16px;
                fill: none;
                stroke: currentColor;
                stroke-width: 2.5;
                stroke-linecap: round;
                stroke-linejoin: round;
                transition: transform 0.2s;
            }

            .ac-link:hover svg {
                transform: translateX(3px);
            }

            /* Map Section Styles */
            .map-section {
                position: relative;
                width: 100%;
                height: 600px;
                margin-top: 60px;
                overflow: hidden;
                background: #e9ecef;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
                border-radius: 6px;
            }

            #marbella-map {
                width: 100%;
                height: 100%;
            }

            .map-overlay {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                width: 45%;
                min-width: 480px;
                max-width: 650px;
                z-index: 10;
                background: linear-gradient(to right, rgba(253, 253, 253, 1) 0%, rgba(253, 253, 253, 0.95) 45%, rgba(253, 253, 253, 0.5) 75%, rgba(253, 253, 253, 0) 100%);
                padding: 60px 40px 60px 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                pointer-events: none;
            }

            .map-overlay-content {
                pointer-events: auto;
                max-width: 400px;
            }

            .map-title {
                font-family: 'FS Albert', sans-serif;
                font-size: 38px;
                color: var(--primary);
                margin-bottom: 20px;
                font-weight: 400;
                line-height: 1.2;
            }

            .map-divider {
                width: 40px;
                height: 2px;
                background-color: var(--primary);
                margin-bottom: 25px;
            }

            .map-desc {
                font-size: 15px;
                color: var(--text-color);
                line-height: 1.6;
                margin-bottom: 35px;
            }

            .map-locations {
                list-style: none;
            }

            .map-locations li {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
                font-size: 15px;
                color: var(--text-dark);
                font-family: 'FS Albert', sans-serif;
                font-weight: 500;
            }

            .map-locations li svg {
                width: 18px;
                height: 18px;
                fill: var(--primary);
                flex-shrink: 0;
            }

            .map-locations li a {
                color: var(--primary);
                text-decoration: none;
                transition: opacity .2s;
            }

            .map-locations li a:hover {
                opacity: 0.75;
            }

            /* Custom Map Marker */
            .custom-marker-wrapper {
                position: absolute;
                transform: translate(-19px, -44px);
                cursor: pointer;
                z-index: 20;
            }

            .custom-marker {
                display: flex;
                align-items: center;
                background: #fff;
                padding: 6px 12px 6px 8px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
                gap: 6px;
                transition: transform 0.2s ease, box-shadow 0.2s ease;
                white-space: nowrap;
            }

            .custom-marker:hover {
                transform: translateY(-4px);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
                z-index: 30;
            }

            .marker-icon {
                width: 22px;
                height: 25px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .marker-icon svg {
                width: 100%;
                height: 100%;
                fill: var(--primary);
            }

            .marker-text {
                font-family: 'FS Albert', sans-serif;
                font-size: 14.5px;
                font-weight: 500;
                color: var(--primary);
                letter-spacing: -0.01em;
            }

            /* Responsive Map */
            @media (max-width: 1440px) {
                .map-overlay {
                    padding-left: 20px;
                }
            }

            @media (max-width: 1024px) {
                .map-overlay {
                    padding-left: 35px;
                }

                .map-overlay-content {
                    margin-left: 0;
                }

                .map-title {
                    font-size: 30px;
                }
            }

            @media (max-width: 768px) {
                .map-section {
                    height: auto;
                    display: flex;
                    flex-direction: column-reverse;
                    background: transparent;
                    margin-top: 40px;
                }

                .map-overlay {
                    position: relative;
                    width: 100%;
                    max-width: none;
                    background: #fdfdfd;
                    padding: 40px 20px;
                }

                .map-overlay-content {
                    max-width: 100%;
                }

                .map-title {
                    font-size: 26px;
                }

                #marbella-map {
                    height: 300px;
                    width: 100%;
                }

                .map-overlay {
                    min-width: 0;
                    padding: 24px 16px;
                }

                .map-locations li {
                    font-size: 13px;
                    margin-bottom: 8px;
                }

            }
        }




        @media (max-width: 767px){
 .cta-section-inner {
                     padding: 20px 0 !important;
                }
        }

        @media (max-width: 768px) {
            .cta-section-inner {
                padding: 40px 0;
                border-radius: 0;
            }
            .cta-title {
                font-size: 22px;
            }
            .cta-btn-primary {
                padding: 12px 28px;
                font-size: 13px;
            }
        }
