/* Base Styles */
:root {
    --primary-color: #0A5D36;
    /* Dark green from branding */
    --secondary-color: #16A86C;
    /* Lighter green from branding */
    --accent-color: #D92E79;
    /* Magenta/pink accent from branding */
    --accent-gradient: linear-gradient(135deg, #C33A68 0%, #EF4881 100%);
    /* Pink gradient */
    --primary-gradient: linear-gradient(135deg, #144633 0%, #427059 100%);
    /* Green gradient */
    --light-color: #ECF0F1;
    --dark-color: #0A3D22;
    /* Darkest green from brand gradient */
    --text-color: #1A1A1A;
    --text-light: #777;
    --border-color: #ddd;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #144633 0%, #427059 100%);
    /* Green gradient - updated */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
}

h1,
.h1 {
    font-weight: 900;
    /* Using Outfit Black */
}

h2,
.h2,
h3,
.h3 {
    font-weight: 900;
    /* Using Outfit Black */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 50px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f3826 0%, #365f4c 100%);
    /* Slightly darker gradient */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 168, 108, 0.3);
}

.btn-secondary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b0325c 0%, #da4375 100%);
    /* Slightly darker gradient */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 46, 121, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 168, 108, 0.3);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}



/* Header Styles - Frosted Glass Effect */
.header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1440px;
    z-index: 100;
    transition: var(--transition);
}

.header.transparent {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header.transparent .nav-link {
    color: white;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #1a1a1a;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 42px;
    width: auto;
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.logo-white {
    opacity: 1 !important;
    transform: translateY(0) rotate(0deg) !important;
    z-index: 2;
}

.logo-black {
    opacity: 0 !important;
    transform: translateY(15px) rotate(-5deg) !important;
    z-index: 1;
    display: none;
    /* Always hide black logo */
}

/* Disabled logo switching - always show white logo for frosted glass header */
/*
.header:not(.transparent) .logo-white {
    opacity: 0;
    transform: translateY(-15px) rotate(5deg);
}

.header:not(.transparent) .logo-black {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}
*/

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.logo h1:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    margin-right: 8px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Menu Styling */
.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header.transparent .main-nav ul li a {
    color: white;
}

/* Removed underline effects from main nav */
.main-nav ul li a:hover {
    color: var(--accent-color);
}

/* Animation for menu items */
.main-nav ul li {
    opacity: 0;
    animation: fadeInMenu 0.5s ease forwards;
}

.main-nav ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.main-nav ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.main-nav ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.main-nav ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.main-nav ul li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for WordPress specific menu classes */
.primary-menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header.transparent .menu-item a {
    color: white;
}

/* Removed underline effects from menu items */
.menu-item a:hover {
    color: var(--accent-color);
}

/* New Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
}

.nav-menu li a:hover {
    background-color: #f5f5f5;
}

.nav-menu li.current-menu-item>a {
    background-color: #f0f0f0;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: none;
}

.phone img {
    width: 16px;
    height: 16px;
}

.user-icon {
    display: none;
}

.toggle-buttons {
    display: flex;
    background: #e8ebef;
    border-radius: 76px;
    padding: 6px;
    gap: 6px;
}

.toggle-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 76px;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #c43b69;
    color: white;
}

.toggle-btn:not(.active) {
    color: #1a1a1a;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    padding: 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-header .logo img {
    height: 32px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-menu:hover {
    background-color: #f5f5f5;
}

.mobile-nav {
    margin-bottom: 40px;
}

.mobile-nav-item {
    display: block;
    padding: 15px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #c43b69;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
}

.mobile-phone img {
    width: 20px;
    height: 20px;
}

.mobile-toggle-buttons {
    display: flex;
    background: #e8ebef;
    border-radius: 76px;
    padding: 6px;
    gap: 6px;
}

.mobile-toggle-buttons .toggle-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 76px;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle-buttons .toggle-btn.active {
    background: #c43b69;
    color: white;
}

.mobile-toggle-buttons .toggle-btn:not(.active) {
    color: #1a1a1a;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    overflow: visible;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    text-align: left;
}

.property-search-container {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 80px) !important;
    max-width: 1000px !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    cursor: default !important; /* Normal cursor - this is a form container, not a button */
    margin: 0 auto !important;
    /* Move glass effect to parent container */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

/* Placeholder element to prevent layout shift when form becomes fixed */
.property-search-placeholder {
    /* Will be sized dynamically by JS */
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 80px) !important;
    max-width: 1000px !important;
    pointer-events: none !important;
}

/* Below 1200px, placeholder needs to be relative to reserve space in flow */
@media (max-width: 1200px) {
    .property-search-placeholder {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 80% !important;
        margin: 30px auto !important;
    }
}

/* On small height screens, make form static */
@media (max-height: 1000px) {
    .property-search-container {
        position: static !important;
        transform: none !important;
        margin: 40px auto !important;
        width: calc(100% - 80px) !important;
        max-width: 1000px !important;
    }
    
    /* Ensure compact form still works on small height screens */
    .property-search-container.compact {
        position: fixed !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1000 !important;
    }
}

.parallax {
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 0 0 auto;
    text-align: left;
    padding-right: 30px;
}

/* Removed duplicate .hero-content h1 - using .hero-left h1 instead */

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* New Hero Section Styles */
.hero {
    min-height: 100vh;
    background: url("../images/v725_2074.png") center center / cover no-repeat;
    position: relative;
    padding: 120px 0 120px 0;
    /* Removed overflow: hidden to fix backdrop-filter rendering in Chrome */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 70, 51, 0.8) 0%, rgba(66, 112, 89, 0.6) 100%);
    z-index: 1;
}

.hero .hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 11px 60px 60px;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 653px;
    max-width: 45vw;
    padding-top: 27px;
    padding-right: 40px;
    position: relative;
    z-index: 3;
    text-align: left;
}

.hero-left h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff7eb;
  margin-bottom: 40px;
}

.hero-left p {
  font-size: 16px;
  font-weight: 500;
  color: #f1f1f1;
  line-height: 1.6;
  max-width: 536px;
}

.hero-right {
    position: absolute;
    right: 0;
    top: 159px;
    width: 50vw;
    min-width: 600px;
    height: 522px;
    z-index: 2;
}

.semi-circle-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.semi-circle-background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 300px 0 0 300px;
    box-shadow: 0 14px 11px rgba(0, 0, 0, 0.5);
}

.circle-content-inner {
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    z-index: 3;
}

.circle-content-inner h2 {
    font-size: 60px;
    font-weight: 500;
    color: #fff7eb;
    margin-bottom: 20px;
    line-height: 1.2;
}

.circle-content-inner p {
    font-size: 16px;
    font-weight: 500;
    color: #f1f1f1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #f0f2fe;
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 400;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: fit-content;
}

.feature-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.money-icon {
    position: absolute;
    top: 220px;
    left: -100px;
    z-index: 3;
}

.money-icon img {
    display: block;
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Removed duplicate .property-search-container rule - keeping the !important version above */

/* Test element confirmed backdrop-filter works - removing test */

/* Hide navigation elements in Buying with Awesome Agents section */
.explore-controls,
.carousel-dots {
    display: none !important;
}

.property-search {
    /* Clean child container - parent has all the styling now */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    position: relative;
    width: 100%;
}

/* Ensure compact mode doesn't inherit unwanted styles */
.property-search-container.compact .property-search {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}





/* Clean up inner form when compact container is expanded */
.property-search-container.compact.expanded .property-search {
    /* Remove any conflicting borders and styling */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 !important;
}



/* Compact state styling (pink glass effect) - applied to main container */
.property-search-container.compact {
    position: fixed !important;
    /* Apply pink glass effect directly to compact container */
    background: rgba(239, 74, 129, 0.5) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(239, 74, 129, 0.3) !important;
    box-shadow: 0 8px 32px rgba(239, 74, 129, 0.15) !important;
    width: auto !important;
    max-width: 450px !important;
    padding: 15px 25px !important;
    border-radius: 30px !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    cursor: pointer !important; /* Only compact minimized state is clickable */
}



/* When compact form is expanded (hover), switch to white glass effect */
.property-search-container.compact.expanded {
    max-width: 800px !important;
    height: auto !important;
    padding: 25px !important;
    border-radius: 20px !important;
    /* Switch to white glass effect like main form */
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    cursor: default !important; /* Normal cursor when form is expanded - it's a form, not a button */
}

/* Hide search tabs and content when compact, but show when expanded */
.property-search-container.compact .search-tabs,
.property-search-container.compact .search-content {
    display: none !important;
}

/* Show search tabs and content when compact form is expanded (hover) */
.property-search-container.compact.expanded .search-tabs,
.property-search-container.compact.expanded .search-content {
    display: block !important;
}

/* Only apply subtle hover when compact and NOT expanded - desktop only */
@media (hover: hover) and (pointer: fine) {
    .property-search-container.compact:not(.expanded):hover {
        transform: translateX(-50%) translateY(-2px) !important;
        background: rgba(239, 74, 129, 0.6) !important; /* Slightly darker on hover */
        box-shadow: 0 10px 35px rgba(239, 74, 129, 0.2) !important; /* Subtle shadow increase */
    }

    /* No hover effects when expanded - it's a form, not a button */
    .property-search-container.compact.expanded:hover {
        transform: translateX(-50%) !important;
        /* Keep the white glass effect, no changes */
        background: rgba(255, 255, 255, 0.25) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        cursor: default !important; /* Normal cursor when expanded */
    }
}

/* Prevent any transform changes on touch devices */
@media (hover: none) and (pointer: coarse) {
    .property-search-container.compact,
    .property-search-container.compact:active,
    .property-search-container.compact:focus {
        transform: translateX(-50%) !important;
    }
}

.search-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

/* Compact single line layout */
.form-header.compact-line {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.search-title {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: left;
    flex-shrink: 0;
    white-space: nowrap;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    width: 100%;
    flex-shrink: 0;
}

/* Tab buttons in compact line */
.form-header.compact-line .tab-buttons {
    width: auto;
    margin-left: auto;
}

/* Compact step indicators - tighter spacing */
.form-steps-indicator.simple-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 0 30px;
    flex-shrink: 0;
}

.form-steps-indicator.simple-numbers .step {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.form-steps-indicator.simple-numbers .step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 29px;
    text-align: center;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 11px;
    color: #ef4a81;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ef4a81;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.form-steps-indicator.simple-numbers .step.active .step-number {
    color: white;
    background: #ef4a81;
    border-color: #ef4a81;
    box-shadow: 0 2px 8px rgba(239, 74, 129, 0.4);
    /* Ensure active state visibility */
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Removed hover effect - steps are indicators, not interactive buttons */
.form-steps-indicator.simple-numbers .step:hover .step-number {
    /* No hover effect */
}

/* Clean up pseudo-elements */
.form-steps-indicator.simple-numbers .step-number:before,
.form-steps-indicator.simple-numbers .step-number:after {
    content: none;
}

.form-steps-indicator.simple-numbers .step-connector {
    width: 6px;
    height: 1px;
    background-color: rgba(239, 74, 129, 0.3);
}

/* Mobile responsive for icon steps */


.search-tab {
    padding: 8px 16px;
    border: 1.5px solid rgba(239, 74, 129, 0.6);
    background: rgba(255, 255, 255, 0.9);
    /* Removed backdrop-filter to reduce rendering conflicts */
    color: rgba(239, 74, 129, 0.9);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tab.active,
.search-tab:hover {
    background: rgba(239, 74, 129, 0.9);
    color: white;
    /* Removed backdrop-filter to reduce rendering conflicts */
}

.search-content {
    padding: 0;
    overflow: visible;
}

.search-form {
    display: none;
    overflow: visible;
}

.search-form.active {
    display: block;
    /* Removed fadeIn animation to prevent backdrop-filter interference */
    /* animation: fadeIn 0.3s ease; */
    overflow: visible;
    /* Ensure immediate opacity for backdrop-filter elements */
    opacity: 1;
}

.search-form h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(51, 51, 51);
    line-height: 1.3;
}

/* Detailed Form Styles */
.detailed-form {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.valuation-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
}

.valuation-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 13px;
}

.valuation-form input,
.valuation-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.9);
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    /* Removed backdrop-filter to reduce rendering conflicts */
    min-width: 180px;
}

.valuation-form input:focus,
.valuation-form select:focus {
    border-color: rgba(239, 74, 129, 0.6);
    box-shadow: 0 0 0 3px rgba(239, 74, 129, 0.1);
    background: rgba(255, 255, 255, 0.4);
}

.valuation-form input::placeholder {
    color: #000000;
    font-size: 14px;
}

.valuation-form button,
.valuation-form .btn-primary {
    background: rgba(239, 74, 129, 1);
    /* Removed backdrop-filter to reduce rendering conflicts */
    color: white;
    border: 1px solid rgba(239, 74, 129, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.valuation-form button:hover,
.valuation-form .btn-primary:hover {
    background: rgba(214, 58, 107, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 74, 129, 0.3);
}

/* Compact Button Styles - for when form is minimized */
.compact-button {
    display: none;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: inherit; /* Inherit from parent container */
    line-height: 1.3;
    visibility: hidden;
    opacity: 0;
    padding: 0;
}

.property-search-container.compact .compact-button {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.button-icon {
    font-size: 24px;
    opacity: 0.9;
    color: white;
    flex-shrink: 0;
}

.button-text {
    max-width: 600px;
    color: white;
    white-space: normal;
    line-height: 1.4;
}

.button-text .short-text {
    display: none;
}

.button-text .full-text {
    display: inline;
}

/* Hide normal form content when compact */
.property-search-container.compact .search-tabs,
.property-search-container.compact .search-content {
    display: none;
}

/* Ensure form elements are always fully opaque when visible */
.property-search input,
.property-search button,
.property-search .form-group,
.property-search .search-title,
.property-search .form-steps-indicator,
.property-search .step-number,
.property-search select,
.property-search textarea {
    opacity: 1 !important;
}

/* Force white background for inputs */
.property-search input:not([type="submit"]):not([type="button"]),
.property-search select,
.property-search textarea {
    background-color: white !important;
    opacity: 1 !important;
}

/* Form Layout - Horizontal for larger screens */
.valuation-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.valuation-form .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.valuation-form .form-buttons {
    margin-top: 0;
    margin-left: auto;
}

/* Form group styles */
.form-group {
    margin-bottom: 15px;
}



.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

input,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    color: #000000;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

/* Custom Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 18px 25px 18px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin: 10px 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 60px;
}

.checkbox-container:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    background: white;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 10px 0 0;
    top: 6px;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition);
}

.checkbox-container input[type="checkbox"]:checked+.checkbox-label .checkbox-custom {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.checkbox-container input[type="checkbox"]:checked+.checkbox-label .checkbox-custom::after {
    opacity: 1;
}

.checkbox-container input[type="checkbox"]:focus+.checkbox-label .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.3);
}

.checkbox-label {
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.5;
    user-select: none;
    font-weight: 500;
    flex: 1;
    padding-left: 5px;
}

.checkbox-container:hover .checkbox-custom {
    border-color: var(--secondary-color);
    box-shadow: 0 3px 8px rgba(22, 168, 108, 0.2);
}

/* Step 3 specific checkbox styling for better visibility */
.form-step[data-step="3"].active .checkbox-container {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.form-step[data-step="3"].active .checkbox-container:hover {
    background: white;
    border-color: var(--secondary-color);
}

.form-step[data-step="3"].active .checkbox-label {
    color: var(--text-color);
    font-weight: 600;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 20px auto 0;
    background: var(--accent-gradient);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* AI Advantage Section Styles */
.advantage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(22, 168, 108, 0.1);
    transition: var(--transition);
}

.card-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-card p {
    color: var(--text-light);
}

/* Property Card Styles */
.featured-properties {
    position: relative;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316A86C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.property-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.favorite-btn:hover {
    background-color: var(--accent-color);
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.property-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.property-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.property-location i {
    margin-right: 5px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.property-details span {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.property-details i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Testimonial Styles */
.testimonials {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    background-attachment: fixed;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.9) 100%);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--accent-color);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-top .footer-column:last-child {
    justify-self: end;
    text-align: left;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--light-color);
}

/* AA logo + "Smart. Transparent. Fair." tagline (white-text SVG, transparent) */
.footer-logo-tagline {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: white;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

.footer-bottom ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul li a:hover {
    color: white;
}

/* Animation Classes */
.animate-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Form highlight animation */
@keyframes formHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.search-form.highlight {
    animation: formHighlight 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   LOCAL EXPERTISE SECTION
======================================== */

.local-expertise {
    background: #f8f9fa;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Left Semi-Circle (Flipped) */
.expertise-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    min-width: 600px;
    height: 522px;
    z-index: 2;
}

.semi-circle-container-left {
    position: relative;
    width: 100%;
    height: 100%;
}

.semi-circle-background-left {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 300px 300px 0;
    box-shadow: 0 14px 11px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.house-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 300px 300px 0;
    overflow: hidden;
}

.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.building-icon {
    position: absolute;
    top: 50px;
    right: -47px;
    width: 190px;
    height: 190px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 4;
}

.building-icon svg {
    width: 100%;
    height: 100%;
}

/* Right Content */
.expertise-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.expertise-inner {
    width: 50%;
    max-width: 600px;
    margin-left: auto;
    padding-left: 60px;
}

.expertise-inner h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #144633;
    margin-bottom: 30px;
}

.expertise-inner>p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 59, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.point-content {
    flex: 1;
}

.point-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c43b69;
    margin-bottom: 8px;
    line-height: 1.3;
}

.point-content p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-right {
        gap: 15px;
    }

    .phone {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    /* Removed duplicate .hero-left h1 rule */

    .hero-right {
        height: 400px;
    }



    /* Local Expertise Responsive */
    .local-expertise {
        padding: 80px 0;
    }

    .expertise-left {
        width: 40vw;
        min-width: 400px;
        height: 400px;
    }

    .expertise-content {
        padding: 0 40px;
    }

    .expertise-inner {
        width: 60%;
        padding-left: 40px;
    }


    .expertise-inner h2 {
        font-size: 36px;
    }
}
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        min-height: unset;
    }
    
    .hero-section .container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0;
    }
    
    .property-search-container {
        width: calc(100% - 80px) !important;
        max-width: 1000px !important;
        bottom: 0 !important;
        border-radius: 15px !important;
    padding: 0px !important;
        height: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: absolute !important;
    margin: 20px auto !important;
    }
    
    /* Removed duplicate .hero-content h1 - using .hero-left h1 instead */
    
    .hero-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 30px;
    }


@media (max-width: 870px) {


    .step-item:nth-child(1) {
        margin-left: 0%;
        margin-right: auto;
    }

    .step-item:nth-child(2) {
        margin-left: 10% !important;
        margin-right: auto;
    }

    .step-item:nth-child(3) {
        margin-left: 20% !important;
        margin-right: auto;
    }

    .step-item:nth-child(4) {
        margin-left: 30% !important;
        margin-right: auto;
    }

    /* Form header responsive - stack title and steps on separate lines */
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .search-title {
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }

    .form-steps-indicator {
        order: 2;
        margin: 0;
        align-self: flex-start;
    }

    .tab-buttons {
        order: 3;
        margin-left: 0;
        position: absolute;
        right: 0;
    }

    .form-step[data-step="1"].active .form-group {
        margin-bottom: 10px !important;
    }

    .header-actions .btn-outline {
        display: none;
    }
    
    /* Removed duplicate .hero-content h1 - using .hero-left h1 instead */
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
    }
    
    .search-tab {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        width: 150px;
        height: 35px;
    }
    
    .logo-img {
        max-height: 35px;
    }

    /* Form fields vertical layout for step 1 on smaller screens */
    .form-step[data-step="1"].active {
        display: block !important;
    }
    
    .form-step[data-step="1"].active .form-group {
        flex-direction: column !important;
        gap: 15px !important;
        display: block !important;
    }

    .form-step[data-step="1"].active .form-group>* {
        flex: none !important;
        width: 100% !important;
        min-width: auto !important;
    }

    .form-step[data-step="1"].active .form-group input {
        min-width: auto !important;
        width: 100% !important;

    }

    .form-step[data-step="1"].active .form-buttons {
        margin-top: 15px !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .form-step[data-step="1"].active .form-buttons button {
        width: 100% !important;
        max-width: none !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        height: 50px !important;
    }

    /* New Hero Mobile Styles */
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }

    .hero .hero-content {
        padding: 0 15px;
    }

    /* Removed duplicate .hero-left h1 rule */

    .hero-left p {
        font-size: 1rem;
    }

    .hero-right {
        height: 300px;
    }



    .circle-content-inner {
        padding: 20px;
    }

    .circle-content-inner h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .circle-content-inner p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .feature-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .money-icon img {
        width: 60px;
        height: 60px;
    }

    /* Local Expertise Mobile */
    .local-expertise {
        padding: 60px 0;
        min-height: auto;
    }

    .expertise-left {
        position: relative;
        width: 100%;
        height: 300px;
        min-width: auto;
        transform: none;
        top: 0;
        margin-bottom: 40px;
    }





    .point-icon {
        width: 35px;
        height: 35px;
    }

    .point-content h3 {
        font-size: 16px;
    }

    .point-content p {
        font-size: 14px;
    }
    
    /* Mobile responsive styles for the new frosted glass form */
    .property-search-container {
        width: calc(100% - 80px) !important;
        max-width: 800px !important;
        bottom: 0 !important;
        border-radius: 15px !important;
        padding: 20px !important;
        height: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: absolute !important;
    }
    
    .property-search {
        padding: 0px;
        border-radius: 12px;
    }
    
    .search-tabs {
        gap: 6px;
        justify-content: center;
        margin-bottom: 14px;
    }
    
    .search-tab {
        padding: 6px 12px;
        font-size: 12px;
        flex: 1;
        text-align: center;
    }
    
    .search-form h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .valuation-form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .valuation-form .form-group {
        width: 100%;
        min-width: auto;
    }
    
    .valuation-form .form-buttons {
        margin-left: 0;
        width: 100%;
    }
    
    .valuation-form button,
    .valuation-form .btn-primary {
        width: 100%;
        padding: 10px 16px;
        font-size: 12px;
    }


    

    
    .compact-button {
        font-size: 12px;
        gap: 8px;
        padding: 0;
        justify-content: center;
        text-align: center;
    }
    
    .button-icon {
        font-size: 20px;
    }
    
    .button-text {
        max-width: 100%;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Fix centering on mobile */
    .property-search-container.compact {
        position: fixed !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 90vw !important;
        bottom: 30px !important;
        will-change: opacity !important;
        transition: opacity 0.2s ease !important;
    }
    
    /* Prevent any position changes on touch */
    .property-search-container.compact:active {
        transform: translateX(-50%) !important;
        left: 50% !important;
    }
    
    /* Show short text on mobile, hide full text */
    .button-text .full-text {
        display: none;
    }
    
    .button-text .short-text {
        display: inline;
    }
    
    .property-search-container.compact .property-search {
        padding: 12px 20px;
    }

    .form-header.compact-line .tab-buttons {
        display: none;
    }
    
    .form-steps-indicator.simple-numbers {
        gap: 3px;
        margin: 0;
        flex-shrink: 0;
        width: 100%;
    }

}



/* Form validation styles */
.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* Validation error tooltip styles - positioning defined below with info tooltips */

.validation-error-icon {
    color: #e74c3c;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    animation: pulse-error 2s infinite;
}

.validation-error-icon:hover {
    color: #c0392b;
}

.validation-error-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    color: white;
    text-align: left;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    width: 250px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.validation-error-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #e74c3c transparent transparent transparent;
}

.validation-error-tooltip:hover .validation-error-content {
    visibility: visible;
    opacity: 1;
}

/* Mobile validation error behavior */


@keyframes pulse-error {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Removed legacy .validation-error class - now using tooltip system */

/* Tooltip styles for form hints */
.input-with-tooltip {
    position: relative;
    display: block;
}

.tooltip-container {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Special positioning for select dropdown tooltips to avoid dropdown arrow */
.input-with-tooltip select+.tooltip-container {
    right: 35px;
}

/* When validation error is present, move info tooltip further right */
.input-with-tooltip:has(.validation-error-tooltip) .tooltip-container,
.input-with-validation .tooltip-container {
    right: 12px;
}

/* Position validation error tooltip to the left of info tooltip */
.validation-error-tooltip {
    position: absolute;
    right: 40px;
    /* Space for info tooltip */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Screen 2 specific validation error tooltip positioning */
.form-step[data-step="2"].active .validation-error-tooltip {
    right: 10px;
}

/* Screen 3 specific validation error tooltip positioning */
.form-step[data-step="3"].active .validation-error-tooltip {
    right: 30px;
}

.tooltip-icon {
    color: #6c757d;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
}

/* Ensure FontAwesome icons display */
.fas.fa-info-circle:before {
    content: "\f05a";
}

.fas.fa-exclamation-triangle:before {
    content: "\f071";
}

/* Fallback if FontAwesome doesn't load */
.tooltip-icon:not(.fas):before,
.tooltip-icon.fas:not([class*="fa-"]):before {
    content: "ⓘ";
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}

.validation-error-icon:not(.fas):before,
.validation-error-icon.fas:not([class*="fa-"]):before {
    content: "⚠";
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}

.tooltip-icon:hover {
    color: var(--secondary-color);
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    text-align: left;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    width: 280px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show tooltip on hover for desktop */
.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Mobile tooltip behavior - show on click */


/* reCAPTCHA info styling */
.recaptcha-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 12px;
}

.recaptcha-label {
    font-style: italic;
}

/* Form response styles */
.form-response {
    margin-top: 15px;
    padding: 0;
    transition: all 0.3s ease;
}

.form-response.success {
    background-color: rgba(22, 168, 108, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    border-radius: 4px;
}

.form-response.error {
    background-color: rgba(217, 46, 121, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 4px;
    animation: error-pulse 2s ease;
}

@keyframes error-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.success-message {
    color: #27ae60;
}

.error-message {
    color: #c0392b;
}

.form-response ul {
    margin: 10px 0 0 25px;
    padding: 0;
    list-style-type: disc;
    color: #c0392b;
    font-size: 14px;
}

.error-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 14px;
    color: #555;
}

.error-details ul {
    color: #555;
    margin: 10px 0 0 25px;
}

.error-details a {
    color: var(--secondary-color);
    font-weight: 500;
}

.error-details a:hover {
    text-decoration: underline;
}

/* Multi-step form styles */
.multi-step-form {
    position: relative;
    overflow: visible;
}

/* Step indicators */
.form-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* Removed unused .step-number and .step-title styles - now using icon-only steps */

.step-connector {
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 5px;
    position: relative;
    z-index: 1;
    min-width: 10px;
    width: 10px;
}

.step-connector.active {
    background-color: var(--secondary-color);
}

/* Form steps */
.form-step {
    display: none;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    overflow: visible;
}

.form-step.active {
    display: block;
    overflow: visible;
    width: 100%;
}

/* Form width adjustments for different steps */
.property-search-container:has(.form-step[data-step="2"].active),
.property-search-container:has(.form-step[data-step="3"].active),
.property-search-container.step-2-active,
.property-search-container.step-3-active {
    max-width: 437px !important;
}

/* Ensure step 1 maintains original width */
.property-search-container:has(.form-step[data-step="1"].active),
.property-search-container.step-1-active {
    max-width: 1000px !important;
}

/* Placeholder inherits the same step-based width constraints */
.hero:has(.property-search-container.step-2-active) .property-search-placeholder,
.hero:has(.property-search-container.step-3-active) .property-search-placeholder {
    max-width: 437px !important;
}

.hero:has(.property-search-container.step-1-active) .property-search-placeholder {
    max-width: 1000px !important;
}

/* Hide seller/buyer toggle buttons on steps 2 and 3 */
.property-search-container:has(.form-step[data-step="2"].active) .tab-buttons,
.property-search-container:has(.form-step[data-step="3"].active) .tab-buttons,
.property-search-container.step-2-active .tab-buttons,
.property-search-container.step-3-active .tab-buttons {
    display: none !important;
}

/* Additional fallback for browsers without :has() support */
.property-search-container.step-2-active .form-header .tab-buttons,
.property-search-container.step-3-active .form-header .tab-buttons {
    display: none !important;
}

/* Position form-steps-indicator below search-title on steps 2 and 3 */
.property-search-container:has(.form-step[data-step="2"].active) .form-header,
.property-search-container:has(.form-step[data-step="3"].active) .form-header,
.property-search-container.step-2-active .form-header,
.property-search-container.step-3-active .form-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    justify-content: flex-start !important;
}

.property-search-container:has(.form-step[data-step="2"].active) .search-title,
.property-search-container:has(.form-step[data-step="3"].active) .search-title,
.property-search-container.step-2-active .search-title,
.property-search-container.step-3-active .search-title {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 5px !important;
    flex-shrink: 0 !important;
}

.property-search-container:has(.form-step[data-step="2"].active) .form-steps-indicator,
.property-search-container:has(.form-step[data-step="3"].active) .form-steps-indicator,
.property-search-container.step-2-active .form-steps-indicator,
.property-search-container.step-3-active .form-steps-indicator {
    order: 2 !important;
    margin: 0 !important;
    align-self: center !important;
    flex-shrink: 0 !important;
}

/* Override compact-line styles for steps 2 and 3 */
.property-search-container:has(.form-step[data-step="2"].active) .form-header.compact-line,
.property-search-container:has(.form-step[data-step="3"].active) .form-header.compact-line,
.property-search-container.step-2-active .form-header.compact-line,
.property-search-container.step-3-active .form-header.compact-line {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* Override mobile media query for steps 2 and 3 */


/* Horizontal layout for step 1 only */
.form-step[data-step="1"].active {
    display: flex;
    overflow: visible;
    gap: 12px;
    align-items: center;
}

.form-step[data-step="1"].active .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-step[data-step="1"].active .form-group .input-with-tooltip {
    flex: 1;
    min-width: 0;
}

.form-step[data-step="1"].active .form-group input {
    min-width: 180px;
}

/* Improved layout for step 2 - vertical with better spacing */
.form-step[data-step="2"].active {
    display: block;
    overflow: visible;
}

.form-step[data-step="2"].active .form-group {
    margin-bottom: 16px;
}

.form-step[data-step="2"].active .form-group:last-child {
    margin-bottom: 0;
}

/* Better spacing for address fields container */
.form-step[data-step="2"].active .address-fields-container {
    margin-top: 12px;
    margin-bottom: 16px;
}

.form-step[data-step="2"].active .address-fields-container .form-group {
    margin-bottom: 12px;
}

/* Improved side-by-side fields for step 2 */
.form-step[data-step="2"].active .side-by-side-fields {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.form-step[data-step="2"].active .field-half {
    flex: 1;
    min-width: 0;
}

.form-step[data-step="2"].active .field-half input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Form buttons spacing for step 2 */
.form-step[data-step="2"].active .form-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

/* Improved layout for step 3 - vertical with better spacing */
.form-step[data-step="3"].active {
    display: block;
    overflow: visible;
    width: 100%;
}

.form-step[data-step="3"].active .form-group {
    margin-bottom: 16px;
    width: 100% !important;
}

.form-step[data-step="3"].active .form-group input,
.form-step[data-step="3"].active .form-group select {
    width: 100% !important;
    max-width: none !important;
}

.form-step[data-step="3"].active .form-group:last-child {
    margin-bottom: 0;
}

/* Better spacing for step 3 specific elements */
.form-step[data-step="3"].active .radio-group {
    margin-bottom: 16px;
}

.form-step[data-step="3"].active .radio-group .radio-item {
    margin-bottom: 8px;
}

.form-step[data-step="3"].active .radio-group .radio-item:last-child {
    margin-bottom: 0;
}

/* Select dropdowns in step 3 */
.form-step[data-step="3"].active select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* Text areas in step 3 */
.form-step[data-step="3"].active textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    min-height: 80px;
    resize: vertical;
}

/* reCAPTCHA info spacing and styling for step 3 */
.form-step[data-step="3"].active .recaptcha-info {
    margin: 16px 0;
    color: white !important;
    position: relative;
}

.form-step[data-step="3"].active .recaptcha-label {
    color: white !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.form-step[data-step="3"].active .tooltip-icon {
    color: #6c757d !important;
}

.form-step[data-step="3"].active .tooltip-content {
    color: #333 !important;
    /* Keep tooltip content readable */
    background: white !important;
    border: 1px solid #ddd !important;
}

/* Form buttons spacing for step 3 */
.form-step[data-step="3"].active .form-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    width: 100% !important;
}

.form-step[data-step="3"].active .form-buttons button {
    flex: 1;
    max-width: none !important;
    white-space: nowrap;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.form-step[data-step="1"].active .form-buttons {
    margin-top: 0;
    flex-shrink: 0;
}

.form-step[data-step="1"].active .form-buttons button {
    max-width: none;
    white-space: nowrap;
}

/* Add padding to inputs and selects that have tooltips */
.input-with-tooltip input,
.input-with-tooltip select,
.input-with-validation input,
.input-with-validation select {
    padding-right: 70px !important;
    /* More space for both tooltips */
}

/* Adjust padding when only one tooltip is present */
.input-with-tooltip:not(:has(.validation-error-tooltip)) input {
    padding-right: 40px !important;
    /* Less space for info tooltip only */
}

.input-with-tooltip:not(:has(.validation-error-tooltip)) select {
    padding-right: 60px !important;
    /* More space for select dropdown + tooltip */
}

.input-with-validation:not(:has(.tooltip-container)) input,
.input-with-validation:not(:has(.tooltip-container)) select {
    padding-right: 40px !important;
    /* Less space for validation tooltip only */
}

/* Wrapper for inputs with validation errors */
.input-with-validation {
    position: relative;
    display: block;
}

/* Removed duplicate .form-step[data-step="1"] button rules - already defined above */

.form-step.slide-in-right {
    animation-name: slideInRight;
}

.form-step.slide-in-left {
    animation-name: slideInLeft;
}

.form-step.slide-out-left {
    animation-name: slideOutLeft;
}

.form-step.slide-out-right {
    animation-name: slideOutRight;
}

/* Form buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.form-buttons button {
    flex: 1;
    max-width: 48%;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Shake animation for validation errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Form loader overlay */
.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.form-loader-overlay p {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Confetti animation */
.confetti-container {
    position: fixed;
    top: -10vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    border-radius: 0;
    animation: confetti-fall 5s linear forwards;
    transform: rotate(0deg);
}

@keyframes confetti-fall {
    0% {
        top: -10px;
        transform: rotate(0deg) translateX(0);
        opacity: 1;
    }

    25% {
        transform: rotate(90deg) translateX(20px);
    }

    50% {
        transform: rotate(180deg) translateX(-20px);
        opacity: 1;
    }

    75% {
        transform: rotate(270deg) translateX(20px);
    }

    100% {
        top: 100vh;
        transform: rotate(360deg) translateX(0);
        opacity: 0;
    }
}

/* Fade out animation */
.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Enhanced success message */
.success-message {
    text-align: center;
    animation: successFadeIn 0.8s ease;
}

.success-message i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 15px;
    display: block;
    animation: successBounce 1s ease;
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-message p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
}

/* Success message animations */
@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successBounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Add styles for Sales/Lettings toggle */
.sales-lettings-toggle {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    margin-top: 20px;
}

.toggle-container {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.toggle-option.active {
    background: var(--accent-gradient);
    color: white;
}

/* Styles for the redesigned hero content */
.promise-heading {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.hero-content .pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-content .pillar-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .pillar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content .pillar-box h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.promise-text-block {
    background-color: white;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promise-text-block p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.welcome-message {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.welcome-message p {
    font-size: 22px;
    font-weight: 500;
}

.brand-text {
    font-family: var(--font-headings);
    font-weight: 900;
    color: white !important;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

/* Responsive adjustments */
    

/* Removed unused pillar-tab styles */

/* Removed unused pillar-content styles */

/* GetAddress Autocomplete Styles */
.getaddress-autocomplete {
    position: relative;
}

.getaddress-autocomplete-input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.getaddress-autocomplete-input:focus {
    border-color: #16A86C;
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
    outline: none;
}

.getaddress-autocomplete-input::placeholder {
    color: #000000;
}

.getaddress-autocomplete-list {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #16A86C;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-height: 230px;
    overflow-y: auto;
    margin-top: 2px;
    font-size: 14px;
    color: #333;
    animation: dropdownFadeIn 0.2s ease-out;
}

.getaddress-autocomplete-list-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.2s ease;
}

.getaddress-autocomplete-list-item:hover, 
.getaddress-autocomplete-list-item.selected {
    background-color: rgba(22, 168, 108, 0.1);
    color: #16A86C;
    font-weight: 500;
}

.getaddress-autocomplete-list-item:last-child {
    border-bottom: none;
}

.address-fields-container {
    display: none;
}

.address-fields-container.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Loading indicator */
.getaddress-loading {
    position: absolute;
    z-index: 1000;
    width: 100%;
    padding: 15px;
    background: white;
    border: 1px solid #16A86C;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 2px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.getaddress-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(22, 168, 108, 0.3);
    border-radius: 50%;
    border-top-color: #16A86C;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

/* No results message */
.getaddress-no-results {
    position: absolute;
    z-index: 1000;
    width: 100%;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update styles for the header toggle */
.header-actions .sales-lettings-toggle {
    margin: 0 15px 0 0;
}

.header-actions .toggle-container {
    height: 40px;
    display: flex;
    align-items: center;
}

.header-actions .toggle-option {
    padding: 6px 20px;
    font-size: 14px;
}

/* Pre-launch specific styles */
.pillar-box {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.pillar-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.statistic-box {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.statistic-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.statistic-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
    margin: 50px 0;
}

.video-placeholder:after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.video-placeholder:before {
    content: "\f144";
    /* Play icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Subtle Background Images for Alternating Sections */
#promise {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#video {
    background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Overlay to ensure text is readable */
#promise::before,
#video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

/* Make sure content is above background */
#promise .container,
#video .container {
    position: relative;
    z-index: 1;
}

/* Side by side fields with explicit widths */
.side-by-side-fields {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.field-half {
    width: 45%;
}

.field-half label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 13px;
}

.field-half input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.field-half input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

/* Ensure these fields stay side by side on all devices above mobile */
@media (max-width: 480px) {
    .side-by-side-fields {
        flex-direction: column;
    }
    
    .field-half {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* reCAPTCHA styling */
.recaptcha-container {
    margin-bottom: 20px;
}

.recaptcha-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.recaptcha-container .g-recaptcha {
    margin-bottom: 5px;
}

/* Removed - replaced with tooltip system */

/* Make reCAPTCHA responsive */
@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform-origin: 0 0;
        transform: scale(0.85);
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Sub-menu styling */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item {
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-menu .menu-item a {
    display: block;
    padding: 8px 15px;
    color: var(--primary-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sub-menu .menu-item a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--accent-color);
}

.sub-menu .menu-item a::after {
    display: none;
}

/* Current/active menu item styling */
.current-menu-item>a,
.current-menu-parent>a,
.current-menu-ancestor>a {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Removed underline effects from current menu items */

/* Mobile menu toggle button */
.dropdown-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
    padding: 5px;
}

.dropdown-toggle:focus {
    outline: none;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile styling for submenus */
@media (max-width: 992px) {
    .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.02);
        padding: 0 0 0 15px;
        margin: 5px 0;
        border-left: 2px solid var(--accent-color);
    }
    
    .sub-menu.toggled-on {
        display: block;
    }
    
    .menu-item-has-children:hover>.sub-menu {
        display: none;
    }
    
    .menu-item-has-children.focus>.sub-menu {
        display: block;
    }
}

/* Page Hero Section Styles */
.page-hero-section {
    position: relative;
    padding: 100px 0 60px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    background-image: url('../images/page-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.9;
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-section .page-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding-top: 70px;
}

.page-hero-section .page-last-updated {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.page-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-content-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.entry-content {
    width: 100%;
}

.entry-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content h2:first-child {
    margin-top: 0;
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Media queries for responsive design */


/* ========================================
   WHY AWESOME AGENTS SECTION
======================================== */

.why-awesome {
    background: linear-gradient(135deg, #144633 0%, #427059 100%);
    padding: 100px 0;
    position: relative;
    text-align: center !important;
}

.why-awesome-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center !important;
}

.why-awesome h2 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Comparison Cards */
.comparison-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 80px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 150px;
    height: 150px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: none;
}

.card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-card li {
    font-size: 16px;
    color: #666;
    padding: 12px 0;
    position: relative;
    padding-left: 25px;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card li:before {
    content: '•';
    color: #c43b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
    justify-items: center;
    align-items: start;
}

/* Hide commented out sections */
.client-stories,
.blogs {
    display: none !important;
}

/* Feature Buttons and Content Layout */
.feature-buttons-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 25px;
}

.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
}

.feature-btn {
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 200px;
}

.feature-btn:not(.active) {
    opacity: 0.7;
}

.feature-btn.active {
    background: linear-gradient(135deg, #EF4A81 0%, #C33A68 100%) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(239, 74, 129, 0.3);
}

/* Feature Content Box Styling */
.feature-content-box {
    flex: 1;
    padding: 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* Match height of button container (3 buttons + gaps) */
    height: calc(3 * (21px + 20px) + 2 * 15px);
    /* font-size + padding + gaps */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.feature-content {
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.feature-content.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translateX(0);
    width: 100%;
}

.feature-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */


/* Opening Offer Banner Styling */
.opening-offer-banner {
    position: relative;
    background: linear-gradient(135deg, #EF4A81 0%, #C33A68 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(239, 74, 129, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pulseGlow 3s ease-in-out infinite;
    overflow: hidden;
}

.opening-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.offer-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.3;
}

.offer-highlight {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-footnote {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    line-height: 1.35;
    margin-top: 12px;
}

/* Pricing boxes layout */
.offer-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.pricing-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pricing-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pricing-value {
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(239, 74, 129, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 40px rgba(239, 74, 129, 0.6);
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* We Get It Section - Updated Styling */
.circle-content-inner {
    padding-bottom: 20px !important;
}

.circle-content-inner h2 {
    margin-bottom: 15px !important;
}

.circle-content-inner .italic-text {
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Manifesto Grid - 2 columns */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    margin-bottom: 15px;
}

.manifesto-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 5px;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.manifesto-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.manifesto-item.manifesto-full-width {
    grid-column: 1 / -1;
}

.manifesto-btn {
    display: inline-block;
    background: linear-gradient(135deg, #EF4A81 0%, #C33A68 100%);
    color: white !important;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 74, 129, 0.3);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    white-space: wrap ;
    width: fit-content;
    width: 100%;
}

.manifesto-btn:hover {
    background: linear-gradient(135deg, #d63a6b 0%, #b0325c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 74, 129, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Toggle link styling */
.lettings-link,
.sales-link {
    text-decoration: none;
    display: inline-block;
}



.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 20px;
    background: #1a4d2e;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Coming Soon Content */
.coming-soon-content {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
    margin-bottom: 30px;
}

.coming-soon-icon svg {
    filter: drop-shadow(0 4px 8px rgba(239, 74, 129, 0.3));
}

.coming-soon-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.coming-soon-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}



.back-home {
    margin-top: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: #EF4A81;
    text-decoration: none;
    border: 2px solid #EF4A81;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #EF4A81;
    color: white;
    transform: translateY(-2px);
}



.feature-item {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 50%;

}

.feature-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 40px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

/* Responsive styles for Why Awesome Agents section */
@media (max-width: 1200px) {
    .comparison-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .why-awesome h2 {
        font-size: 36px;
    }
}



/* ========================================
   SERVICES TAILORED SECTION
======================================== */

.services-tailored {
    background: #F1F1F1;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.services-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.services-inner {
    width: 50%;
    max-width: 600px;
    padding-right: 60px;
}

.services-inner h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #144633;
    margin-bottom: 50px;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 59, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #c43b69;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Right Image */
.services-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    height: 600px;
    z-index: 2;
}

.services-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 300px 0 0 300px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-image {
    width: 100%;
    height: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay-icon {
    position: absolute;
    width: 190px;
    height: 190px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 3;
}

.overlay-icon svg {
    width: 100%;
    height: 100%;
}

.overlay-icon-top {
    top: -72px;
    left: 61px;
  }

  .overlay-icon-bottom {
    bottom: -93px;
    left: 266px;
  }

/* Responsive styles for Services Tailored section */
@media (max-width: 1200px) {
    .services-tailored {
        padding: 80px 0;
    }
    
    .services-content {
        padding: 0 40px;
    }
    
    .services-inner {
        width: 60%;
        padding-right: 40px;
    }
    
    .services-right {
        width: 40vw;
    }
    
    .services-inner h2 {
        font-size: 36px;
    }
}



/* ========================================
   READY TO GET STARTED SECTION
======================================== */

.get-started {
    padding: 100px 0;
    background: #F1F1F1 url("../images/aabig.svg") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.get-started-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.get-started-header {
    text-align: center;
    margin-bottom: 80px;
}

.get-started-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.get-started-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.step-item {
    position: relative;
    width: 100%;
    max-width: 590px;
    height: 260px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.step-item:nth-child(1) {
    margin-left: 0%;
    margin-right: auto;
}

.step-item:nth-child(2) {
    margin-left: 15%;
    margin-right: auto;
}

.step-item:nth-child(3) {
    margin-left: 30%;
    margin-right: auto;
}

.step-item:nth-child(4) {
    margin-left: 45%;
    margin-right: auto;
}

.step-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.step-background::before {
    content: '';
    position: absolute;
    top: 47%;
    left: 32%;
    width: 117%;
    height: 82%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgb(239, 74, 129) 0%, rgba(248, 165, 194, 0.3) 50%, rgba(252, 236, 241, 0.1) 100%);
    z-index: -8;
    pointer-events: none;
}

.step-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    position: absolute;
    left: -64px;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 120px;
    flex-shrink: 0;
    font-size: 65px;
    font-weight: 700;
    color: white;
    text-align: left;
}

.step-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 130px 0 100px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles for Get Started section */
@media (max-width: 1470px) {
    .steps-container {
        margin: 0 2%;
    }
    
   
}

/* Responsive design starts at 1380px - fluid text that scales with viewport width */
@media (max-width: 1380px) {

    /* Hero Section Text - scales from 56px to 36px */
    .hero-left h1 {
        font-size: clamp(36px, 4vw, 56px) !important;
    }
    
    .hero-left p {
        font-size: clamp(14px, 1.2vw, 18px) !important;
    }
    
    /* Section Titles - scales from 36px to 24px */
    .section-title {
        font-size: clamp(24px, 2.5vw, 36px) !important;
    }
    
    .section-subtitle {
        font-size: clamp(14px, 1.1vw, 16px) !important;
    }
    
    /* Get Started Step Text */
    .step-content h3 {
        font-size: clamp(16px, 1.5vw, 22px) !important;
    }
    
    .step-content p {
        font-size: clamp(12px, 1vw, 16px) !important;
    }
    
    /* Local Expertise Text */
    .expertise-content h2 {
        font-size: clamp(24px, 2.5vw, 36px) !important;
    }
    
    .expertise-content p {
        font-size: clamp(14px, 1.2vw, 18px) !important;
    }
    
    /* Services Tailored Text */
    .services-content h2 {
        font-size: clamp(24px, 2.5vw, 36px) !important;
    }
    
    .services-content p {
        font-size: clamp(14px, 1.2vw, 18px) !important;
    }
    
    /* Property Cards Text */
    .property-content h3 {
        font-size: clamp(14px, 1.2vw, 18px) !important;
    }
    
    .property-price {
        font-size: clamp(18px, 1.6vw, 22px) !important;
    }
    
    .property-location {
        font-size: clamp(12px, 1vw, 14px) !important;
    }
    
    /* Testimonial Text */
    .testimonial-content p {
        font-size: clamp(14px, 1.2vw, 18px) !important;
    }
    
    .author-info h4 {
        font-size: clamp(14px, 1.1vw, 16px) !important;
    }
    
    .author-info p {
        font-size: clamp(12px, 1vw, 14px) !important;
    }
    
    /* Blog Post Text */
    .blog-post h3 {
        font-size: clamp(16px, 1.3vw, 20px) !important;
    }
    
    .blog-post p {
        font-size: clamp(13px, 1vw, 16px) !important;
    }
    
    /* Container Padding - scales with viewport */
    .container {
        padding: 0 clamp(20px, 2.5vw, 40px) !important;
    }
    
    /* Section Padding - scales with viewport */
    .section-padding {
        padding: clamp(50px, 6vw, 80px) 0 !important;
    }
    
    /* Form Text Adjustments */
    .search-title {
        font-size: clamp(16px, 1.3vw, 20px) !important;
    }
    
    .property-search input,
    .property-search select {
        font-size: clamp(13px, 1vw, 16px) !important;
        padding: clamp(8px, 1vw, 12px) clamp(12px, 1.2vw, 16px) !important;
    }
    
    .property-search button {
        font-size: clamp(13px, 1vw, 16px) !important;
        padding: clamp(10px, 1vw, 14px) clamp(16px, 1.5vw, 24px) !important;
    }


    .circle-content-inner {
        width: 78%;
    }
}



/* ========================================
   EXPLORE PROPERTIES SECTION
======================================== */

.explore-properties {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.explore-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.explore-text {
    flex: 1;
    max-width: 700px;
}

.explore-text h2 {
    font-size: 48px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 24px;
    line-height: 1.2;
}

.explore-text p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.explore-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ef4a81;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 74, 129, 0.2);
}

.nav-arrow:hover {
    background: #d63a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 74, 129, 0.3);
}

.show-all-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #ef4a81;
    color: #ef4a81;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.show-all-btn:hover {
    background: #ef4a81;
    color: white;
    transform: translateY(-2px);
}

/* Properties Carousel */
.properties-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.property-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 24px;
}

.property-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.property-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ef4a81;
}

.dot:hover {
    background: #ef4a81;
}

/* Responsive styles for Explore Properties section */
@media (max-width: 1200px) {
    .explore-properties {
        padding: 80px 0;
    }
    
    .explore-content {
        padding: 0 40px;
    }
    
    .properties-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .explore-text h2 {
        font-size: 42px;
    }
}



/* ========================================
   CLIENT SUCCESS STORIES SECTION
======================================== */

.client-stories {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.stories-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.stories-left h2 {
    font-size: 48px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 24px;
    line-height: 1.2;
}

.stories-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stories-right {
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 300px;
}

.quote-icon {
    font-size: 120px;
    color: #144633;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: -20px;
    right: 40px;
    opacity: 0.1;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-nav {
    position: absolute;
    bottom: -20px;
    right: 0;
    display: flex;
    gap: 15px;
}

.testimonial-nav .nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #666;
}

.testimonial-nav .nav-arrow:hover {
    background: #144633;
    color: white;
    border-color: #144633;
}

/* Responsive styles for Client Stories section */
@media (max-width: 1200px) {
    .client-stories {
        padding: 80px 0;
    }
    
    .stories-content {
        padding: 0 40px;
        gap: 60px;
    }
    
    .stories-left h2 {
        font-size: 42px;
    }
}



/* ========================================
   BLOGS SECTION
======================================== */

.blogs {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.blogs-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.blogs-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blogs-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blogs-header p:last-child {
    margin-bottom: 0;
}

/* Blogs Grid Layout */
.blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Large Blog Cards */
.blog-card.large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card.large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.blog-card.large .blog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-card.large .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card.large:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card.large .blog-content {
    padding: 30px;
}

.blog-card.large .blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-card.large .blog-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Small Blog Cards */
.blog-card.small {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.blog-card.small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-card.small .blog-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 16px 0 16px 16px;
}

.blog-card.small .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card.small:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card.small .blog-content {
    padding: 20px 20px 20px 0;
    flex: 1;
}

.blog-card.small .blog-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card.small .blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Read More Button */
.blog-read-more {
    background: transparent;
    border: 2px solid #ef4a81;
    color: #ef4a81;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.blog-read-more:hover {
    background: #ef4a81;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 74, 129, 0.2);
}

.blog-card.small .blog-read-more {
    padding: 8px 16px;
    font-size: 13px;
}




/* Blog page specific styles */
.blog-hero-section {
    position: relative;
    min-height: 40vh;
    padding-top: 120px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 93, 54, 0.8) 0%, rgba(10, 61, 34, 0.9) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A5D36 0%, #0A3D22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 2;
}

.blog-card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.blog-card-title a {
    color: white;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #EF4A81;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-card-date {
    color: #0A5D36;
    font-weight: 500;
}

.blog-card-category {
    background: rgba(10, 93, 54, 0.1);
    color: #0A5D36;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: #fff;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #EF4A81;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-link {
    color: #0A5D36;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #0A3D22;
    text-decoration: none;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(10, 93, 54, 0.2);
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: linear-gradient(135deg, #0A5D36 0%, #0A3D22 100%);
    color: white;
    text-decoration: none;
}


/* Responsive styles for home hero section */
@media (max-width: 1200px) {


    .hero-left {
        width: 100%;
        max-width: 100%;
        padding-top: 0;

    }

    .hero-left p {

        max-width: 100%;
    }



    .hero {
        padding: 120px 0 10px 0 !important;
    }

    .hero .hero-content {
        padding: 40px 0px 2% 2%;
    }

    .hero-right {
        position: relative;
        right: 0;
        top: 0px;
        width: 100%;
        min-width: 600px;
        height: 400px;
        margin: 0 2%;
    }

    .property-search-container {
        width: 80% !important;
        max-width: 1000px !important;
        left: 0 !important;
        transform: translateX(0%) !important;
        position: relative !important;
        margin: 30px auto !important;
    }

}

@media (max-width: 1100px) {

    .expertise-left {
        position: relative;
        left: 0;
        top: 0;
        transform: translateY(0%);
        width: 100%;
        min-width: 600px;
        height: 300px;
        margin: 0 0 0 -3%;
    }

    .expertise-content {
        padding: 30px 0 0 0;
    }

    .expertise-inner {
        width: 70%;
        max-width: 100%;
        padding-left: 0px;
        margin: 0 auto;
    }

    .services-content {
        padding: 0px;

    }

    .services-inner {
        width: 70%;
        max-width: 100%;
        padding-left: 0px;
        margin: 0 auto;
    }

    .services-right {
        position: relative;
        left: 0;
        top: 0;
        transform: translateY(0%);
        width: 100%;
        min-width: 600px;
        height: 300px;
        margin: 50px 0 20px 3%;
    }
}

/* Responsive styles for Blogs section */
@media (max-width: 1200px) {

    .page-content-box {

        padding: 0px;
 
    }
    .blogs {
        padding: 80px 0;
    }
    
    .blogs-content {
        padding: 0 40px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr 1fr 350px;
        gap: 30px;
    }
    
    .blogs-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 660px) {

    .opening-offer-banner {
        width: 98%;
    }

    .offer-pricing {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-label {
        font-size: 0.8rem;
    }

    .pricing-value {
        font-size: 1.4rem;
    }



    .step-item:nth-child(0) {
        margin-left: 0% !important;
        margin-right: auto;
    }

    .step-item:nth-child(1) {
        margin-left: 0% !important;
        margin-right: auto;
    }

    .step-item:nth-child(2) {
        margin-left: 0% !important;
        margin-right: auto;
    }

    .step-item:nth-child(3) {
        margin-left: 0% !important;
        margin-right: auto;
    }

    .step-item:nth-child(4) {
        margin-left: 0% !important;
        margin-right: auto;
    }

    .steps-container {
        gap: 10px;

    }

    .step-background {
        width: 120%;
    }

    .step-content {
        padding: 0 20px 0 90px;
    }

    .circle-content-inner {
        left: 70px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 650px) {

    .circle-content-inner {
        width: 100%;
    }
    .hero-right{
        min-width: 100%;
    }
    .circle-content-inner {
        left: 40px;
    }

    .properties-carousel {
        grid-template-columns: repeat(1, 1fr);

    }

    .property-card {

        margin-top: 20px;
    }

    .semi-circle-background {
        border-radius: 0px;
    }

    .hero-right {
        margin: 0;
    }

    .circle-content-inner {
        left: 0px;
    }




    .get-started-content {

        padding: 0 10px;

    }

 
}


@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }

    .search-tabs {
        flex-direction: column;
    }

    .search-tab {
        border-bottom: 1px solid var(--border-color);
    }

    .search-tab.active::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-top .footer-column:last-child {
        justify-self: start;
        text-align: left;
    }


    .valuation-form {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        height: auto;
        min-height: auto;
    }

    .expertise-inner {
        width: 90%;
    }

    .services-inner {
        width: 90%;

    }


}

@media (max-width: 550px) {
    .step-content {
        padding: 0 20px 0 70px;
    }

    .why-awesome-content {
        padding: 0 20px;
    }

}





@media (max-width: 510px) {
    .step-background img {
        display: none;
    }

    .step-content {
        padding: 0 20px 0 30px;
    }
    .step-background {
        width: 100%;
    }
    .step-background::before {
        background: rgb(239, 74, 129);

    }

    .step-content h3 {
        color: #fff;
    }

    .step-content p {
        color: #fff;
    }

    .step-number {
        color: rgb(239, 74, 129);
    }
}

@media (max-width: 450px) {


    .feature-content h3 {
        font-size: 0.9rem;

    }
}

@media (max-width: 410px) {
    .feature-btn {
        transition: all 0.3s ease;
        position: relative;
        padding: 10px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 175px;
    }

    .feature-content-box {
        padding: 10px;
    }


}
/* ==========================================================================
   v2 SECTIONS — Added for Awesome Agents v2 theme
   New content blocks: strategy-review-cta, regulated-badges, services-lead
   Reuses existing palette (#C43B69, #FFF7EB, etc.) and Outfit/Poppins fonts.
   ========================================================================== */

.services-lead,
.services-lead-copy {
    max-width: 620px;
    margin: 12px 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.services-lead strong {
    color: #1a1a1a;
    font-size: 17px;
}

.section-intro {
    max-width: 760px;
    margin: 8px auto 32px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ----- Book Your Free Strategy Review CTA ----- */
.strategy-review-cta {
    background: #FFF7EB;
    padding: 72px 24px;
    border-top: 1px solid rgba(196, 59, 105, 0.08);
    border-bottom: 1px solid rgba(196, 59, 105, 0.08);
}

.strategy-review-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.strategy-review-text {
    flex: 1 1 520px;
}

.strategy-review-text h2 {
    margin: 0 0 16px;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.15;
    color: #1a1a1a;
}

.strategy-review-text p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 620px;
}

.strategy-review-actions {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.strategy-review-actions .btn {
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .strategy-review-cta { padding: 56px 20px; }
    .strategy-review-inner { gap: 28px; }
    .strategy-review-actions { width: 100%; }
}

/* ----- Regulated UK Estate Agent badges ----- */
.regulated-badges {
    background: #ffffff;
    padding: 56px 24px 72px;
}

.regulated-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.regulated-inner h3 {
    margin: 0 0 36px;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1a1a1a;
}

.regulated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.regulated-item {
    padding: 28px 20px 24px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.regulated-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 59, 105, 0.12);
}

.regulated-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4A81 0%, #C33A68 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(196, 59, 105, 0.3);
}

.regulated-label {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #D92E79;
}


/* Fix: section-intro visibility inside dark sections */
.why-awesome .section-intro {
    color: rgba(255, 247, 235, 0.92);
    font-size: 18px;
    margin-bottom: 40px;
}

.why-awesome .section-intro strong {
    color: #ffffff;
}



/* ==========================================================================
   v2 — Strategy Review CTA (centered cream card on green + chevron bg)
   Cream card with pink offset shadow, white book link, pink call pill.
   ========================================================================== */

.strategy-review-cta {
    background: linear-gradient(135deg, #144633 0%, #1d5e41 55%, #144633 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

/* Chevron wedges sit above the green, below the content */
.strategy-review-cta .hero-chevron {
    z-index: 1;
}

.strategy-review-inner {
    position: relative;
    z-index: 2;
    background: #FFF7EB;
    border-radius: 24px;
    padding: 44px 64px;
    box-shadow: 14px 16px 0 #E44177, 0 24px 48px rgba(0, 0, 0, 0.18);
    border-left: none;
    max-width: 860px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.strategy-review-text h2 {
    color: #D92E79;
    margin: 0 0 16px;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
}

.strategy-review-text p {
    color: #D92E79;
    font-weight: 600;
    margin: 0 auto 14px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 640px;
}

.strategy-review-text p.strategy-no-pressure,
.strategy-review-text p.strategy-no-pressure strong {
    color: #1a1a1a;
    font-weight: 700;
}

.strategy-review-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-top: 52px;
}

.strategy-book-link {
    color: #ffffff;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: opacity 0.2s ease;
}

.strategy-book-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.strategy-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #EF4A81 0%, #C33A68 100%);
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(196, 59, 105, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-call-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(196, 59, 105, 0.45);
}

@media (max-width: 768px) {
    .strategy-review-cta { padding: 56px 20px; }
    .strategy-review-inner {
        padding: 32px 24px;
        box-shadow: 8px 10px 0 #E44177, 0 16px 32px rgba(0, 0, 0, 0.18);
    }
    .strategy-book-link { font-size: 24px; }
}


/* ==========================================================================
   v2 — Hero chevron background SVG (flyer "arrow head" wedges)
   Sits above the dark overlay, below the content. No interaction.
   ========================================================================== */

.hero {
    position: relative;
}

.hero-chevron {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-chevron.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

/* Ensure actual hero content sits on top of the chevron overlay.
   IMPORTANT: only bump z-index — do NOT touch `position` here, because
   .hero-right relies on its original position: absolute for the semi-circle. */
.hero .hero-content { position: relative; z-index: 3; }
.hero .hero-right { z-index: 3; }
.hero .property-search-container { position: relative; z-index: 3; }

/* ==========================================================================
   v2 — Centered hero variant (.hero--centered, Home page)
   Offer card centered on top, centered headline, form bar below.
   Scoped so the Sales/other templates keep the original split layout.
   ========================================================================== */

.hero--centered {
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: url("../images/v725_2074.png") center bottom / cover no-repeat;
}

/* Overlay: green tint + solid green at top and bottom so the section
   blends seamlessly into the dark-green .smarter-intro strip below. */
.hero--centered::before {
    background:
        linear-gradient(180deg,
            rgba(20, 70, 51, 0.92) 0%,
            rgba(20, 70, 51, 0.55) 30%,
            rgba(20, 70, 51, 0.15) 55%,
            rgba(20, 70, 51, 0.65) 85%,
            #144633 100%),
        linear-gradient(135deg, rgba(20, 70, 51, 0.6) 0%, rgba(66, 112, 89, 0.45) 100%);
}

.hero--centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero--centered .opening-offer-banner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}

.hero--centered .opening-offer-banner .offer-text {
    font-size: 0.85rem;
}

.hero--centered h1 {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff7eb;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 60px;
}

/* Form bar sits in flow, centered, full available width.
   :not(.compact) keeps the scroll-triggered floating/compact behaviour
   (gsap-animations.js toggles .compact + inline position:fixed) intact. */
.hero--centered .property-search-container:not(.compact) {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .hero--centered {
        padding: 110px 0 60px;
    }

    .hero--centered .hero-content {
        padding: 0 20px;
    }

    .hero--centered h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .hero--centered .opening-offer-banner {
        margin-bottom: 32px;
    }
}

/* ==========================================================================
   v2 — Smarter Agency intro strip (below centered hero)
   ========================================================================== */

.smarter-intro {
    /* Starts at the exact green the hero overlay ends on — seamless blend */
    background: linear-gradient(180deg, #144633 0%, #1d5942 100%);
    padding: 90px 0;
    text-align: center;
}

.smarter-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.smarter-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff7eb;
    line-height: 1.3;
    margin-bottom: 24px;
}

.smarter-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 247, 235, 0.9);
}

@media (max-width: 768px) {
    .smarter-intro {
        padding: 60px 0;
    }

    .smarter-intro h2 {
        font-size: 26px;
    }

    .smarter-intro p {
        font-size: 15px;
    }
}

/* ==========================================================================
   v2 — Services Tailored redesign (cream bg, green copy, pill photo)
   ========================================================================== */

.services-tailored {
    background: #FFF7EB;
}

.services-inner h2 {
    margin-bottom: 24px;
}

/* Lead copy goes green per design */
.services-lead,
.services-lead-copy {
    color: #144633;
    margin: 0 0 4px;
}

.services-lead strong {
    color: #144633;
    font-size: 16px;
}

.services-lead-copy {
    margin-bottom: 36px;
}

/* Tighter, smaller service bullets */
.service-points {
    gap: 28px;
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-top: 2px;
}

.service-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.service-content p {
    font-size: 14px;
    color: #6b6b6b;
}

/* Photo: keep original size/position; round the right corners slightly */
.services-image-container {
    border-radius: 300px 0 0 300px;
}

/* ==========================================================================
   v2 — "How Awesome Agents changes that" as pink cards on white
   Scoped with .why-awesome--cards so the Sales template keeps the
   original dark-green icon layout.
   ========================================================================== */

.why-awesome--cards {
    background: #ffffff;
    padding: 90px 0;
}

.why-awesome--cards h2 {
    color: #D92E79;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-awesome--cards .section-intro {
    color: #D92E79;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-awesome--cards .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: stretch;
}

.why-awesome--cards .feature-item {
    height: 100%;
}

.why-awesome--cards .feature-item {
    background: linear-gradient(135deg, #EF4A81 0%, #E2426F 100%);
    border-radius: 16px;
    padding: 36px 30px;
    text-align: left !important;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(239, 74, 129, 0.25);
}

.why-awesome--cards .feature-icon {
    display: none;
}

.why-awesome--cards .feature-item h4 {
    font-size: 18px;
    min-height: 0;
    margin-bottom: 16px;
}

.why-awesome--cards .feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.55;
}

.why-awesome--cards .feature-item p strong {
    color: #ffffff;
}

@media (max-width: 900px) {
    .why-awesome--cards .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .why-awesome--cards h2 {
        font-size: 28px;
    }
}

/* Smaller circular badges overlapping the photo edges */
.overlay-icon {
    width: 150px;
    height: 150px;
}

.overlay-icon-top {
    top: -48px;
    left: 28px;
}

.overlay-icon-bottom {
    bottom: -52px;
    left: 42%;
}
