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

:root {
    /* Premium Professional Palette - Complements Logo (Blue #20429B & Yellow #FFD700) */
    /* Black Shades */
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-elevated: #1a1a1a;
    
    /* Grey Shades */
    --grey-darkest: #2d2d2d;
    --grey-darker: #3d3d3d;
    --grey-dark: #4a4a4a;
    --grey-medium: #6b6b6b;
    --grey: #8a8a8a;
    --grey-light: #b0b0b0;
    --grey-lighter: #d0d0d0;
    --grey-lightest: #e5e5e5;
    --grey-pale: #f0f0f0;
    --grey-ultra-pale: #f8f8f8;
    
    /* White */
    --white: #ffffff;
    --white-off: #fafafa;
    
    /* Premium Professional Colors - Complementary to Logo */
    /* Deep Charcoal/Slate complements both blue and yellow, conveys luxury */
    /* Rich Burgundy/Wine complements yellow, adds sophistication */
    --yellow-muted: #2C3E50;
    --yellow-soft: #1e2a36;
    --yellow-dull: #151c24;
    --yellow-warm: #8B2E3D;
    --yellow-pale: #f5f3f0;
    --yellow-subtle: #e8e5e0;
    --yellow-bright: #2C3E50;
    --yellow-gold: #8B2E3D;
    
    /* Purple Colors for Metrics */
    --purple: #9C27B0;
    --purple-pale: #f3e5f5;
    --purple-light: #e1bee7;
    
    /* Primary Colors - Premium Professional Palette */
    /* Deep Slate (#2C3E50) - sophisticated, complements logo colors */
    /* Rich Burgundy (#8B2E3D) - premium accent, complements yellow */
    --primary-color: #2C3E50;
    --primary-dark: #1e2a36;
    --primary-darker: #151c24;
    --primary-light: #8B2E3D;
    --primary-lighter: #e8e5e0;
    --primary-lightest: #f5f3f0;
    --secondary-color: #4a4a4a;
    --accent-color: #8B2E3D;
    
    /* Pastel Color Palette (neutral grey-based, minimal color) */
    --pastel-yellow: #f5f3f0;
    --pastel-grey-light: #f5f5f5;
    --pastel-grey: #eeeeee;
    --pastel-grey-dark: #e0e0e0;
    
    /* Text colors */
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --light-bg: #fafafa;
    --border-color: #e5e5e5;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Base Typography - Standardized Font Sizes */
p {
    font-size: 18px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 22px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive container for smaller laptop screens */
@media (max-width: 1366px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 1280px) {
    .container {
        padding: 0 12px;
    }
}

/* HR Styling - Constrain to container width */
hr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border: none;
    border-top: 1px solid var(--border-color, #e0e0e0);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1366px) {
    hr {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-left i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    background: var(--primary-color);
    color: var(--black);
    transform: translateY(-3px) scale(1.1);
    animation: bounce 0.5s ease;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
    
    .top-bar-left {
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .top-bar-left a {
        font-size: 0.7rem;
    }
    
    .top-bar-left i {
        font-size: 0.7rem;
        margin-right: 0.25rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.7rem;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .top-bar-left a {
        font-size: 0.65rem;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.25rem 0;
    gap: 3rem;
    flex-wrap: nowrap;
    position: relative;
}

@media (max-width: 1366px) {
    .nav-wrapper {
        gap: 2rem;
        padding: 1rem 0;
    }
}

@media (max-width: 1280px) {
    .nav-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        gap: 1rem;
        padding: 0.875rem 0;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    margin-right: 3.5rem;
    flex-shrink: 0;
    z-index: 1001;
}

@media (max-width: 1024px) {
    .logo {
        margin-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        margin-right: auto;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-3px) scale(1.05);
    animation: bounce 0.5s ease;
}

.logo-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 70px;
    flex-shrink: 0;
}

.logo-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: width 0.3s ease;
}

@media (max-width: 1366px) {
    .logo-img {
        width: 180px;
    }
}

@media (max-width: 1024px) {
    .logo-img {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
    }
}

.logo-shape-left,
.logo-shape-right {
    transition: fill 0.3s ease;
}

.logo-link:hover .logo-shape-left {
    fill: var(--primary-darker);
}

.logo-link:hover .logo-shape-right {
    fill: var(--primary-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-line1,
.logo-text-line2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.logo-text-line1 {
    font-size: 1.5rem;
}

.logo-text-line2 {
    font-size: 1.2rem;
    color: var(--primary-darker);
}

.logo-link:hover .logo-text-line1,
.logo-link:hover .logo-text-line2 {
    color: var(--primary-color);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-graphic {
    width: 150px;
    height: 105px;
}

.footer-logo .logo-text-line1 {
    font-size: 1.4rem;
}

.footer-logo .logo-text-line2 {
    font-size: 1.2rem;
}

.footer-logo .logo-link {
    gap: 0.8rem;
}

.footer-logo .logo-text-line1,
.footer-logo .logo-text-line2 {
    color: var(--white);
}

.footer-logo .logo-link:hover .logo-text-line1,
.footer-logo .logo-link:hover .logo-text-line2 {
    color: var(--primary-lighter);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
    animation: bounce 0.5s ease;
}

/* Navigation Search */
.nav-search {
    flex: 1;
    max-width: 300px;
    margin: 0;
    min-width: 0;
}

@media (max-width: 1024px) {
    .nav-search {
        max-width: 250px;
    }
}

@media (max-width: 900px) {
    .nav-search {
        max-width: 200px;
    }
}

.nav-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-search-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.2);
}

.nav-search-icon {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.nav-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: inherit;
    width: 100%;
}

.nav-search-input::placeholder {
    color: var(--text-gray);
}

.nav-search-clear {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.nav-search-clear:hover {
    color: var(--text-dark);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.75rem 0;
    margin-top: 1rem;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--primary-lighter);
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(5px);
    animation: pulse 0.3s ease;
}

.dropdown-menu a.active {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--black) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-lightest);
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-nav:hover i {
    color: var(--black);
}

.btn-nav:active {
    transform: translateY(-1px) scale(1.02);
    animation: shake 0.3s ease;
}

/* Nav Actions - Login Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .nav-actions {
        gap: 0.75rem;
    }
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 2px 8px var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 184, 195, 0.5);
    animation: pulse 0.5s ease;
}

.btn-login i {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.btn-login:hover i {
    color: var(--white);
}

.btn-login:active {
    transform: translateY(0) scale(1.02);
    animation: shake 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Split Layout */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Left Panel - Dark Text Section */
.hero-left-panel {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(45, 58, 69, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-left-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(171, 184, 195, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.hero-left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(171, 184, 195, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(171, 184, 195, 0.02) 2px,
            rgba(171, 184, 195, 0.02) 4px
        );
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-left-content {
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 28px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.hero-heading-line {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideInUp 0.4s ease-out forwards;
}

.hero-heading-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-heading-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-heading-line:nth-child(3) {
    animation-delay: 0.15s;
}

.hero-heading-line:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-heading-line:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-sub-heading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: left;
    max-width: 400px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.6s forwards;
    position: relative;
    padding-left: 1.5rem;
}

.hero-sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--white);
    border-radius: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-scroll-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-scroll-indicator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--white);
    opacity: 0;
    animation: pulse 2s infinite;
}

.hero-scroll-indicator {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-scroll-indicator:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2) rotate(360deg);
    animation: pulse 0.5s ease;
    box-shadow: 0 5px 20px rgba(171, 184, 195, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes cardShimmer {
    0% {
        box-shadow: var(--shadow-sm);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 0 20px rgba(59, 130, 246, 0.35);
        transform: translateY(-10px) scale(1.04);
    }
    100% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 0 15px rgba(59, 130, 246, 0.25);
        transform: translateY(-8px) scale(1.03);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Right Panel - Image Collage */
.hero-right-panel {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 58, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-collage {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1.2fr 1fr 1fr;
    gap: 0;
}

.hero-image-section {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
    animation: fadeInRight 0.5s ease-out forwards;
}

.hero-image-single {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
    animation: fadeInRight 0.5s ease-out forwards;
}

.hero-image-top {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    animation-delay: 0.15s;
    z-index: 3;
}

.hero-image-middle {
    clip-path: polygon(0 30%, 100% 0, 100% 60%, 0 100%);
    margin-top: -30%;
    animation-delay: 0.25s;
    z-index: 2;
}

.hero-image-bottom {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    margin-top: -30%;
    animation-delay: 0.35s;
    z-index: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s linear, transform 1.5s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 58, 69, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-image-section:hover .hero-image-wrapper::after {
    opacity: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-section:hover .hero-slide.active .hero-image-wrapper img {
    transform: scale(1.05) translateY(0);
}

.diagonal-separator {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(171, 184, 195, 0.5);
}

.separator-top {
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: skewY(-2deg);
    transform-origin: bottom left;
    opacity: 0;
    animation: slideInSeparator 0.5s ease-out 0.45s forwards;
}

.separator-middle {
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: skewY(2deg);
    transform-origin: bottom left;
    opacity: 0;
    animation: slideInSeparator 0.5s ease-out 0.55s forwards;
}

@keyframes slideInSeparator {
    from {
        opacity: 0;
        transform: translateX(-100%) skewY(-2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) skewY(-2deg);
    }
}

/* Responsive Hero Section */
@media (max-width: 1050px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        position: relative;
    }
    
    .hero-left-panel {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        z-index: 3;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-left-panel::before,
    .hero-left-panel::after {
        display: none;
    }
    
    .hero-left-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 4rem 3rem;
        background: rgba(45, 58, 69, 0.75);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 4;
        transform: none;
    }
    
    .hero-right-panel {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-image-collage {
        grid-template-rows: 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    .hero-left-panel {
        min-height: auto;
    }
    
    .hero-left-content {
        padding: 3rem 2rem;
    }
    
    .hero-image-collage {
        grid-template-rows: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Responsive Logo */
    .logo-graphic {
        width: 80px;
        height: 56px;
    }
    
    .logo-text-line1 {
        font-size: 1.2rem;
    }
    
    .logo-text-line2 {
        font-size: 1rem;
    }
    
    .footer-logo .logo-graphic {
        width: 130px;
        height: 90px;
    }
    
    .footer-logo .logo-text-line1 {
        font-size: 1.2rem;
    }
    
    .footer-logo .logo-text-line2 {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-left-panel {
        min-height: 350px;
    }
    
    .hero-main-heading {
        font-size: 1.5rem;
    }
    
    .hero-sub-heading {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-image-single {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-left-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-main-heading {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .hero-heading-line {
        margin-bottom: 0.25rem;
    }
    
    .hero-sub-heading {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .hero-scroll-indicator {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(171, 184, 195, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(171, 184, 195, 0.15), rgba(197, 208, 217, 0.1));
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
    background: linear-gradient(135deg, rgba(157, 181, 196, 0.12), rgba(171, 184, 195, 0.08));
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
    background: linear-gradient(135deg, rgba(223, 230, 236, 0.1), rgba(197, 208, 217, 0.15));
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(45, 58, 69, 0.4) 0%,
        rgba(45, 58, 69, 0.6) 50%,
        rgba(45, 58, 69, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-text {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInDown 0.5s ease;
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    animation: slideInLeft 0.5s ease 0.15s both;
    opacity: 0;
}

.title-line-2 {
    display: block;
    animation: slideInRight 0.5s ease 0.25s both;
    opacity: 0;
}

.highlight-word {
    position: relative;
    color: var(--secondary-color);
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: linear-gradient(90deg, var(--secondary-color), rgba(212, 165, 116, 0.5));
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.6s ease 0.35s both;
    opacity: 0;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease 0.45s both;
    opacity: 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Property Search Form */
.property-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 1150px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease 0.5s both;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.property-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.search-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 15px;
}

.search-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.search-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.search-tab:hover::before {
    left: 100%;
}

.search-tab i {
    font-size: 1.1rem;
}

.search-tab.active,
.search-tab:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 184, 195, 0.3);
}

.search-form {
    width: 100%;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0.5rem;
    align-items: end;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.search-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-group label i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.search-group input,
.search-group select {
    padding: 0.75rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: var(--white);
    cursor: pointer;
}

/* Add scrollbar for select dropdowns with many options */
.search-group select option {
    padding: 0.5rem;
}

/* Custom scrollbar for select dropdowns */
.search-group select {
    scrollbar-width: thin;
    scrollbar-color: var(--grey-light) var(--grey-pale);
}

.search-group select::-webkit-scrollbar {
    width: 8px;
}

.search-group select::-webkit-scrollbar-track {
    background: var(--grey-pale);
    border-radius: 4px;
}

.search-group select::-webkit-scrollbar-thumb {
    background: var(--grey-light);
    border-radius: 4px;
}

.search-group select::-webkit-scrollbar-thumb:hover {
    background: var(--grey-medium);
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.2);
}

.btn-search {
    padding: 0.875rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(171, 184, 195, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-search:hover::before {
    width: 300px;
    height: 300px;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 184, 195, 0.5);
    animation: pulse 0.5s ease;
}

.btn-search i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeInUp 0.75s ease 0.75s both;
    opacity: 0;
}

.hero-scroll-hint span {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.scroll-arrow {
    animation: bounceArrow 2s infinite;
    color: var(--white);
    font-size: 1.25rem;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Property Types */
.property-types {
    padding: 5rem 0;
    background: var(--grey-ultra-pale);
    position: relative;
    overflow: hidden;
}

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

.property-types .section-header h2 {
    color: var(--text-dark);
}

.property-types .section-header p {
    color: var(--text-light);
}

.property-types .type-card {
    background: var(--white);
}

.property-types .type-card:nth-child(odd) {
    background: var(--white);
}

.property-types .type-card:nth-child(even) {
    background: var(--white-off);
}

.property-types .type-card h3 {
    color: var(--text-dark);
}

.property-types .type-card p {
    color: var(--text-light);
}

/* Scroll Animation Classes - Applied to All Sections */
section:not(.hero).section-coming-into-view {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section:not(.hero).section-visible {
    opacity: 1;
}

/* Section Header Animation */
section:not(.hero).section-visible .section-header {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

/* Property Types Cards Animation */
.property-types.section-visible .type-card {
    animation: fadeInUp 0.3s ease-out both;
}

.property-types.section-visible .type-card:nth-child(1) {
    animation-delay: 0.15s;
}

.property-types.section-visible .type-card:nth-child(2) {
    animation-delay: 0.2s;
}

.property-types.section-visible .type-card:nth-child(3) {
    animation-delay: 0.25s;
}

.property-types.section-visible .type-card:nth-child(4) {
    animation-delay: 0.15s;
}

.property-types.section-visible .type-card:nth-child(5) {
    animation-delay: 0.35s;
}

.property-types.section-visible .type-card:nth-child(6) {
    animation-delay: 0.4s;
}

/* Services Section Animation - DISABLED */
.services-showcase {
    opacity: 1 !important;
}

.services-showcase.section-coming-into-view {
    opacity: 1 !important;
}

.services-showcase.section-visible {
    opacity: 1 !important;
}

.services-showcase .services-layout {
    animation: none !important;
    opacity: 1 !important;
}

.services-showcase .service-section {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-section:nth-child(1),
.services-showcase .service-section:nth-child(2),
.services-showcase .service-section:nth-child(3),
.services-showcase .service-section:nth-child(4) {
    animation: none !important;
    opacity: 1 !important;
}

/* Service Section Content Animations - DISABLED */
.services-showcase .service-section-content {
    animation: none !important;
    opacity: 1 !important;
}

.services-showcase .service-section:nth-child(1) .service-section-content,
.services-showcase .service-section:nth-child(2) .service-section-content,
.services-showcase .service-section:nth-child(3) .service-section-content,
.services-showcase .service-section:nth-child(4) .service-section-content {
    animation: none !important;
    opacity: 1 !important;
}

/* Service Cards and Elements Animation - DISABLED */
.services-showcase .service-testimonial-card {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-section:nth-child(1) .service-testimonial-card:nth-child(1),
.services-showcase .service-section:nth-child(1) .service-testimonial-card:nth-child(2),
.services-showcase .service-section:nth-child(1) .service-testimonial-card:nth-child(3) {
    animation: none !important;
    opacity: 1 !important;
}

/* Investment Section - Service 2 Animations - DISABLED */
.service-investment.section-coming-into-view {
    opacity: 1 !important;
}

.service-investment.section-visible {
    opacity: 1 !important;
}

.service-investment.section-coming-into-view .investment-header-layout,
.service-investment.section-coming-into-view .investment-feature-card,
.service-investment.section-coming-into-view .investment-properties-section-bottom,
.service-investment.section-coming-into-view .property-tag {
    opacity: 1 !important;
}

.services-showcase .service-investment .investment-header-layout,
.service-investment .investment-header-layout {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-investment .investment-feature-cards-row .investment-feature-card,
.service-investment .investment-feature-cards-row .investment-feature-card {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-investment .investment-feature-cards-row .investment-feature-card:nth-child(1),
.service-investment .investment-feature-cards-row .investment-feature-card:nth-child(1),
.services-showcase .service-investment .investment-feature-cards-row .investment-feature-card:nth-child(2),
.service-investment .investment-feature-cards-row .investment-feature-card:nth-child(2),
.services-showcase .service-investment .investment-feature-cards-row .investment-feature-card:nth-child(3),
.service-investment .investment-feature-cards-row .investment-feature-card:nth-child(3),
.services-showcase .service-investment .investment-feature-cards-row .investment-feature-card:nth-child(4),
.service-investment .investment-feature-cards-row .investment-feature-card:nth-child(4) {
    animation: none !important;
    opacity: 1 !important;
}

.services-showcase .service-investment .investment-properties-section-bottom,
.service-investment .investment-properties-section-bottom {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-investment .property-tag,
.service-investment .property-tag {
    opacity: 1 !important;
    animation: none !important;
}

/* Property tag animation delays disabled */
.services-showcase .service-investment .property-tag:nth-child(1),
.service-investment .property-tag:nth-child(1),
.services-showcase .service-investment .property-tag:nth-child(2),
.service-investment .property-tag:nth-child(2),
.services-showcase .service-investment .property-tag:nth-child(3),
.service-investment .property-tag:nth-child(3),
.services-showcase .service-investment .property-tag:nth-child(4),
.service-investment .property-tag:nth-child(4),
.services-showcase .service-investment .property-tag:nth-child(5),
.service-investment .property-tag:nth-child(5),
.services-showcase .service-investment .property-tag:nth-child(6),
.service-investment .property-tag:nth-child(6),
.services-showcase .service-investment .property-tag:nth-child(7),
.service-investment .property-tag:nth-child(7),
.services-showcase .service-investment .property-tag:nth-child(8),
.service-investment .property-tag:nth-child(8) {
    animation: none !important;
    opacity: 1 !important;
}

/* Management Section - Service 3 Animations - DISABLED */
.service-management.section-coming-into-view {
    opacity: 1 !important;
}

.service-management.section-visible {
    opacity: 1 !important;
}

.service-management.section-coming-into-view .service-header-key,
.service-management.section-coming-into-view .service-intro,
.service-management.section-coming-into-view .service-features-grid-key,
.service-management.section-coming-into-view .key-feature-block {
    opacity: 1 !important;
}

.services-showcase .service-management .service-header-key,
.service-management .service-header-key {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-management .service-intro,
.service-management .service-intro {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-management .service-features-grid-key,
.service-management .service-features-grid-key {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-management .service-features-grid-key .key-feature-block,
.service-management .service-features-grid-key .key-feature-block {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase.section-visible .service-management .service-features-grid-key .key-feature-block:nth-child(1),
.service-management.section-visible .service-features-grid-key .key-feature-block:nth-child(1) {
    animation-delay: 0.35s;
}

.services-showcase.section-visible .service-management .service-features-grid-key .key-feature-block:nth-child(2),
.service-management.section-visible .service-features-grid-key .key-feature-block:nth-child(2) {
    animation-delay: 0.4s;
}

.services-showcase.section-visible .service-management .service-features-grid-key .key-feature-block:nth-child(3),
.service-management.section-visible .service-features-grid-key .key-feature-block:nth-child(3) {
    animation-delay: 0.9s;
}

.services-showcase.section-visible .service-management .service-features-grid-key .key-feature-block:nth-child(4),
.service-management.section-visible .service-features-grid-key .key-feature-block:nth-child(4) {
    animation-delay: 1s;
}

.services-showcase.section-visible .service-management .service-features-grid-key .key-feature-block:nth-child(5),
.service-management.section-visible .service-features-grid-key .key-feature-block:nth-child(5) {
    animation-delay: 1.1s;
}

/* Value Added Section - Service 4 Animations - DISABLED */
.service-value.section-coming-into-view {
    opacity: 1 !important;
}

.service-value.section-visible {
    opacity: 1 !important;
}

.service-value.section-coming-into-view .service-header-split,
.service-value.section-coming-into-view .service-left-content,
.service-value.section-coming-into-view .service-right-content,
.service-value.section-coming-into-view .value-services-grid,
.service-value.section-coming-into-view .value-service-card {
    opacity: 1 !important;
}

.services-showcase .service-value .service-header-split,
.service-value .service-header-split {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-value .service-left-content,
.service-value .service-left-content {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-value .service-right-content,
.service-value .service-right-content {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-value .value-services-grid,
.service-value .value-services-grid {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-value .value-services-grid .value-service-card,
.service-value .value-services-grid .value-service-card {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase.section-visible .service-value .value-services-grid .value-service-card:nth-child(1),
.service-value.section-visible .value-services-grid .value-service-card:nth-child(1) {
    animation-delay: 0.45s;
}

.services-showcase.section-visible .service-value .value-services-grid .value-service-card:nth-child(2),
.service-value.section-visible .value-services-grid .value-service-card:nth-child(2) {
    animation-delay: 0.55s;
}

.service-property.section-coming-into-view {
    opacity: 1 !important;
}

.service-property.section-visible {
    opacity: 1 !important;
}

.service-property.section-coming-into-view .service-header-split,
.service-property.section-coming-into-view .service-left-content,
.service-property.section-coming-into-view .service-right-content,
.service-property.section-coming-into-view .value-services-grid,
.service-property.section-coming-into-view .value-service-card {
    opacity: 1 !important;
}

.services-showcase .service-property .service-header-split,
.service-property .service-header-split {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-property .service-left-content,
.service-property .service-left-content {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-property .service-right-content,
.service-property .service-right-content {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-property .value-services-grid,
.service-property .value-services-grid {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase .service-property .value-services-grid .value-service-card,
.service-property .value-services-grid .value-service-card {
    opacity: 1 !important;
    animation: none !important;
}

.services-showcase.section-visible .service-property .value-services-grid .value-service-card:nth-child(1),
.service-property.section-visible .value-services-grid .value-service-card:nth-child(1) {
    animation-delay: 0.45s;
}

.services-showcase.section-visible .service-property .value-services-grid .value-service-card:nth-child(2),
.service-property.section-visible .value-services-grid .value-service-card:nth-child(2) {
    animation-delay: 0.55s;
}

/* Comprehensive override to disable all Services Section scroll animations */
.services-showcase *,
.services-showcase.section-coming-into-view *,
.services-showcase.section-visible *,
.service-investment *,
.service-investment.section-coming-into-view *,
.service-investment.section-visible *,
.service-management *,
.service-management.section-coming-into-view *,
.service-management.section-visible *,
.service-value *,
.service-value.section-coming-into-view *,
.service-value.section-visible *,
.service-property *,
.service-property.section-coming-into-view *,
.service-property.section-visible * {
    animation: none !important;
    opacity: 1 !important;
}

.services-showcase,
.service-investment,
.service-management,
.service-value,
.service-property {
    opacity: 1 !important;
}

.services-showcase.section-coming-into-view,
.service-investment.section-coming-into-view,
.service-management.section-coming-into-view,
.service-value.section-coming-into-view,
.service-property.section-coming-into-view {
    opacity: 1 !important;
}

.services-showcase.section-visible,
.service-investment.section-visible,
.service-management.section-visible,
.service-value.section-visible,
.service-property.section-visible {
    opacity: 1 !important;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Section Animation */
.contact.section-visible .contact-content {
    animation: fadeInUp 0.4s ease-out 0.15s both;
}

.contact.section-visible .contact-form {
    animation: fadeInUp 0.4s ease-out 0.25s both;
}

/* Statistics Section Animation */
.statistics.section-visible .stats-grid {
    animation: fadeInUp 0.4s ease-out 0.15s both;
}

.statistics.section-visible .stat-card {
    animation: fadeInUp 0.3s ease-out both;
}

.statistics.section-visible .stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.statistics.section-visible .stat-card:nth-child(2) {
    animation-delay: 0.25s;
}

.statistics.section-visible .stat-card:nth-child(3) {
    animation-delay: 0.15s;
}

.statistics.section-visible .stat-card:nth-child(4) {
    animation-delay: 0.35s;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-compact .section-header h2 {
    color: #2C3E50;
}

.partners-compact .section-header h2 {
    color: var(--accent-color);
}

.testimonials-compact .section-header h2 {
    color: var(--accent-color);
}

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

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.type-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    animation: pulse 0.5s ease;
}

.type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--pastel-lavender);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.75rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Alternate colors: odd = deep slate, even = burgundy */
.type-card:nth-child(odd) .type-icon {
    color: var(--primary-color);
}

.type-card:nth-child(even) .type-icon {
    color: var(--accent-color);
}

.type-card:hover .type-icon {
    transform: scale(1.15) rotate(5deg);
    animation: bounce 0.6s ease;
}

.type-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Featured Properties */
.featured-properties {
    padding: 5rem 0;
    background: var(--light-bg);
}

.properties-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(171, 184, 195, 0.3);
    animation: bounce 0.5s ease;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    grid-auto-rows: auto;
}

@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: auto;
}

.property-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    animation: float 2s ease-in-out infinite;
}

.property-image {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker) 100%);
    flex-shrink: 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.property-badge.rent {
    background: var(--grey-medium);
    color: var(--white);
}

.property-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.property-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.property-action-btn:hover {
    background: var(--primary-color);
    color: var(--black);
    transform: scale(1.1);
    animation: pulse 0.3s ease;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.property-location i {
    color: var(--accent-color);
}

.property-features {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-feature i {
    color: var(--accent-color);
}

.view-all {
    text-align: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 184, 74, 0.4);
    animation: pulse 0.5s ease;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    animation: shake 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-choose-text > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-choose-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    overflow: visible;
    position: relative;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.services-showcase .section-header {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.services-showcase .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.services-showcase .section-header h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Apply same styling to other section headers */
.property-types .section-header,
.about-compact .section-header,
.partners-compact .section-header,
.testimonials-compact .section-header,
.contact .section-header {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.property-types .section-header::after,
.about-compact .section-header::after,
.partners-compact .section-header::after,
.testimonials-compact .section-header::after,
.contact .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.property-types .section-header h2,
.about-compact .section-header h2,
.partners-compact .section-header h2,
.testimonials-compact .section-header h2,
.contact .section-header h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Style for Property Management Services heading */
.service-header-key {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    text-align: center;
    margin-left: 25%;
    padding-left: 1.5rem;
    padding-right: 2rem;
}

.service-header-key::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.service-header-key h3 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: none;
    font-family: 'Playfair Display', serif;
}

/* Style for Our Expertise heading */
.about-team-compact {
    position: relative;
}

.about-team-title {
    position: relative;
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.about-team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Services Layout */
.services-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

/* Service Section Base */
.service-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.service-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.service-section-content.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Service 1: Rental - Blurred Background Style (Like Testimonials) */
.service-rental {
    position: relative;
    padding: 0;
    min-height: 700px;
    overflow: hidden;
    background: var(--light-bg);
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Automatic Background Slider for Property Services */
.service-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.service-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: backgroundSlide 25s infinite;
}

.service-bg-slide:nth-child(1) {
    animation-delay: 0s;
}

.service-bg-slide:nth-child(2) {
    animation-delay: 5s;
}

.service-bg-slide:nth-child(3) {
    animation-delay: 10s;
}

.service-bg-slide:nth-child(4) {
    animation-delay: 15s;
}

.service-bg-slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes backgroundSlide {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    18% {
        opacity: 1;
        transform: scale(1.05);
    }
    20% {
        opacity: 0;
        transform: scale(1.05);
    }
    98% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ensure overlay stays on top of slider */
.service-property-slider .service-content-overlay {
    position: relative;
    z-index: 2;
}

.service-content-overlay {
    position: relative;
    z-index: 1;
    background: rgba(116, 136, 150, 0.158);
    padding: 5rem 4rem;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.service-content-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-content-overlay > * {
    position: relative;
    z-index: 2;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.service-main-title {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.service-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-testimonial-card {
    background: rgba(250, 248, 245, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    flex: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--pastel-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-testimonial-card:hover .service-card-icon {
    transform: scale(1.2) rotate(360deg);
    animation: pulse 0.5s ease;
}

.service-testimonial-card:nth-child(2) .service-card-icon {
    background: var(--pastel-peach);
}

.service-testimonial-card:nth-child(3) .service-card-icon {
    background: var(--pastel-cyan);
}

.service-card-info {
    flex: 1;
}

.service-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card-rating {
    display: flex;
    gap: 0.25rem;
    color: #FFD700;
    font-size: 0.9rem;
}

.service-card-rating i {
    color: #FFD700;
}

.service-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(171, 184, 195, 0.4);
    transition: all 0.4s ease;
}

.service-rental:hover .service-icon-large {
    transform: scale(1.1) rotate(-5deg);
}

.service-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-right > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-subitems-horizontal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.subitem-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.subitem-box:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 184, 195, 0.25);
}

.subitem-box i {
    color: var(--grey-medium);
    font-size: 1.1rem;
}

.commercial-details {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-note-banner {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-note-banner i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-note-banner p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Service 2: Investment - Image Style Design */
.service-investment {
    background: var(--white);
    padding: 6rem 4rem;
    position: relative;
}

.investment-header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.investment-header-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investment-main-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.investment-header-left:hover .investment-main-title {
    transform: translateX(5px);
    animation: pulse 0.5s ease;
}

.investment-main-title .title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.investment-header-left:hover .investment-main-title .title-italic {
    color: var(--primary-color);
    transform: scale(1.1) rotate(-2deg);
    animation: wiggle 0.5s ease;
}

.investment-header-right {
    padding-top: 3rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.investment-header-right:hover {
    transform: translateX(-5px);
}

.investment-header-right p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    transition: all 0.3s ease;
}

.investment-header-right:hover p {
    color: var(--text-dark);
    animation: pulse 0.5s ease;
}

.investment-feature-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.investment-feature-card {
    background: var(--pastel-grey-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 1px solid var(--border-color);
}

/* Alternate background colors: odd = black, even = light gray */
.investment-feature-card:nth-child(odd) {
    background: var(--black);
    color: var(--white);
}

.investment-feature-card:nth-child(even) {
    background: var(--grey-lighter);
    color: var(--text-dark);
}

.investment-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 2s ease-in-out infinite;
    border-color: var(--primary-color);
}

/* Hover state for backgrounds */
.investment-feature-card:nth-child(odd):hover {
    background: var(--black-soft);
}

.investment-feature-card:nth-child(even):hover {
    background: var(--grey-lighter);
}

.investment-feature-card.featured-investment {
    border-color: var(--primary-color);
}

/* Featured investment card should follow alternating pattern */
.investment-feature-card.featured-investment:nth-child(even) {
    background: var(--grey-lighter);
    color: var(--text-dark);
}

.investment-feature-card.featured-investment:nth-child(odd) {
    background: var(--black);
    color: var(--white);
}

.investment-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-darker);
    font-size: 1.75rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--primary-color);
}

/* Icon colors for backgrounds */
.investment-feature-card:nth-child(odd) .investment-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.investment-feature-card:nth-child(even) .investment-feature-icon {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
    color: var(--primary-darker);
}

.investment-feature-card:hover .investment-feature-icon {
    transform: scale(1.2) rotate(360deg);
    animation: bounce 0.6s ease;
    box-shadow: 0 5px 20px rgba(212, 184, 74, 0.5);
}

/* Hover icon for light backgrounds */
.investment-feature-card:not(:nth-child(odd)):not(:nth-child(even)):hover .investment-feature-icon {
    background: var(--primary-color);
    color: var(--black);
}

/* Hover icon for backgrounds */
.investment-feature-card:nth-child(odd):hover .investment-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.investment-feature-card:nth-child(even):hover .investment-feature-icon {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: var(--white);
}

.investment-feature-card:nth-child(1) .investment-feature-icon {
    background: var(--primary-lightest);
    color: var(--primary-darker);
}

.investment-feature-card:nth-child(2) .investment-feature-icon {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

.investment-feature-card:nth-child(3) .investment-feature-icon {
    background: var(--primary-lightest);
    color: var(--primary-darker);
}

.investment-feature-card:nth-child(4) .investment-feature-icon {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

/* Featured investment icon colors follow alternating pattern */
.investment-feature-card.featured-investment:nth-child(odd) .investment-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.investment-feature-card.featured-investment:nth-child(even) .investment-feature-icon {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
    color: var(--primary-darker);
}


.investment-feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Text colors for backgrounds */
.investment-feature-card:nth-child(odd) h4 {
    color: var(--white);
}

.investment-feature-card:nth-child(even) h4 {
    color: var(--text-dark);
}

.investment-feature-card:hover h4 {
    transform: translateY(-3px);
    animation: bounce 0.5s ease;
}

.investment-feature-card:nth-child(odd):hover h4 {
    color: var(--white);
}

.investment-feature-card:nth-child(even):hover h4 {
    color: var(--text-dark);
}

.investment-feature-card.featured-investment:nth-child(odd) h4 {
    color: var(--white);
}

.investment-feature-card.featured-investment:nth-child(even) h4 {
    color: var(--text-dark);
}

.investment-feature-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Text colors for backgrounds */
.investment-feature-card:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.9);
}

.investment-feature-card:nth-child(even) p {
    color: var(--text-gray);
}

.investment-feature-card:hover p {
    transform: translateY(-2px);
}

.investment-feature-card:nth-child(odd):hover p {
    color: rgba(255, 255, 255, 0.95);
}

.investment-feature-card:nth-child(even):hover p {
    color: var(--text-dark);
}

.investment-feature-card.featured-investment:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.9);
}

.investment-feature-card.featured-investment:nth-child(even) p {
    color: var(--text-gray);
}

.investment-feature-line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.investment-feature-card:hover .investment-feature-line {
    width: 60px;
    height: 3px;
    animation: pulse 0.5s ease;
    box-shadow: 0 2px 8px rgba(212, 184, 74, 0.5);
}

/* Line colors for backgrounds */
.investment-feature-card:nth-child(odd) .investment-feature-line {
    background: var(--white);
}

.investment-feature-card:nth-child(even) .investment-feature-line {
    background: var(--primary-color);
}

.investment-feature-card:nth-child(odd):hover .investment-feature-line {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.investment-feature-card:nth-child(even):hover .investment-feature-line {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

/* Line colors for light backgrounds (if any cards don't have dark bg) - overridden by dark bg rules above */
.investment-feature-card:not(:nth-child(odd)):not(:nth-child(even)):nth-child(1) .investment-feature-line {
    background: var(--primary-color);
}

.investment-feature-card:not(:nth-child(odd)):not(:nth-child(even)):nth-child(2) .investment-feature-line {
    background: var(--primary-dark);
}

.investment-feature-card:not(:nth-child(odd)):not(:nth-child(even)):nth-child(3) .investment-feature-line {
    background: var(--primary-color);
}

.investment-feature-card:not(:nth-child(odd)):not(:nth-child(even)):nth-child(4) .investment-feature-line {
    background: var(--primary-dark);
}

/* Featured investment line colors follow alternating pattern */
.investment-feature-card.featured-investment:nth-child(odd) .investment-feature-line {
    background: var(--white);
}

.investment-feature-card.featured-investment:nth-child(even) .investment-feature-line {
    background: var(--primary-color);
}

.investment-properties-section-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.investment-properties-section-bottom:hover {
    border-top-color: var(--primary-color);
}

.investment-properties-section-bottom h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.investment-properties-section-bottom:hover h4 {
    transform: scale(1.05);
    color: var(--primary-darker);
    animation: bounce 0.5s ease;
}

.investment-properties-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.property-tag {
    padding: 0.75rem 1.5rem;
    background: var(--primary-lightest);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.property-tag:nth-child(1) {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
}

.property-tag:nth-child(2) {
    background: var(--primary-lighter);
    border-color: var(--primary-dark);
}

.property-tag:nth-child(3) {
    background: var(--pastel-grey);
    border-color: var(--grey-medium);
}

.property-tag:nth-child(4) {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
}

.property-tag:nth-child(5) {
    background: var(--primary-lighter);
    border-color: var(--primary-dark);
}

.property-tag:nth-child(6) {
    background: var(--pastel-grey);
    border-color: var(--grey-medium);
}

.property-tag:nth-child(7) {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
}

.property-tag:nth-child(8) {
    background: var(--primary-lighter);
    border-color: var(--primary-dark);
}

.property-tag:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 184, 74, 0.3);
    opacity: 1;
    animation: bounce 0.5s ease;
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
}

.service-header-features {
    margin-bottom: 3rem;
}

.service-label-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.investment-header-left:hover .service-label-small {
    transform: translateX(5px);
    color: var(--primary-darker);
    animation: pulse 0.5s ease;
}

.investment-header-left:hover .service-label-small .label-icon-small {
    animation: spin 0.6s ease;
    transform: scale(1.2);
    background: var(--primary-color);
}

.label-icon-small {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 3px;
}

.service-header-features h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.service-header-features p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
}

.service-process-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

/* Responsive adjustments for investment section */
@media (max-width: 1024px) {
    .investment-header-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-header-right {
        padding-top: 0;
    }
    
    .investment-feature-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .investment-feature-cards-row {
        grid-template-columns: 1fr;
    }
    
    .investment-main-title {
        font-size: 2rem;
    }
    
    .investment-properties-list {
        flex-direction: column;
        align-items: center;
    }
}

.feature-card-modern {
    background: rgba(245, 247, 250, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card-modern.featured {
    background: rgba(116, 136, 150, 0.4);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(116, 136, 150, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-darker);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card-modern.featured .feature-icon-circle {
    background: rgba(116, 136, 150, 0.5);
}

.feature-card-modern:hover .feature-icon-circle {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.feature-card-modern h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card-modern.featured h4 {
    color: var(--white);
}

.feature-card-modern p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.feature-card-modern.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-underline {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
}

.feature-card-modern.featured .feature-underline {
    background: var(--white);
}

.service-properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.property-type-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.property-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(116, 136, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.property-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(116, 136, 150, 0.2);
    border-left-color: var(--primary-dark);
}

.property-type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 15px rgba(116, 136, 150, 0.3);
}

.property-type-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.property-type-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.service-properties-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(116, 136, 150, 0.1);
    border-radius: 15px;
}

.property-type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.property-type-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.service-investment .service-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-investment .service-left > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.service-process-timeline {
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.process-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(171, 184, 195, 0.3);
    position: absolute;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-marker {
    transform: scale(1.15);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(171, 184, 195, 0.5);
}

.timeline-content {
    margin-left: 80px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.service-investment:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

/* Service 3: Management - Grid with Background Numbers */
.service-management {
    background: var(--white);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.service-abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-image: url('../images/img2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.service-abstract-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.service-header-key {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.service-header-key::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.service-header-key h3 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.title-underline-small {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: none;
    margin: 0 0 3rem 0;
    margin-left: 25%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.service-features-grid-key {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-left: 25%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.key-feature-block {
    position: relative;
    padding: 3rem 2rem 2rem 2rem;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
    min-height: 220px;
    width: 100%;
    box-sizing: border-box;
}

.feature-number {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 6.5rem;
    font-weight: 800;
    color: rgba(44, 62, 80, 0.4);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    z-index: 0;
    pointer-events: none;
    width: 120px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.key-feature-block:hover .feature-number {
    transform: translateY(-5px) scale(1.02);
    animation: pulse 0.5s ease;
    color: rgba(44, 62, 80, 0.6);
}

.key-feature-block:nth-child(1) .feature-number {
    color: rgba(44, 62, 80, 0.5);
}

.key-feature-block:nth-child(2) .feature-number {
    color: rgba(44, 62, 80, 0.5);
}

.key-feature-block:nth-child(3) .feature-number {
    color: rgba(44, 62, 80, 0.5);
}

.key-feature-block:nth-child(4) .feature-number {
    color: rgba(44, 62, 80, 0.5);
}

.key-feature-block:nth-child(5) .feature-number {
    color: rgba(44, 62, 80, 0.5);
}

.key-feature-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
    margin-left: 160px;
    margin-right: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100% - 160px);
}

.feature-underline-key {
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 1rem;
    margin-left: 160px;
    position: relative;
    z-index: 1;
}

.key-feature-block:nth-child(1) .feature-underline-key {
    background: var(--accent-color);
}

.key-feature-block:nth-child(2) .feature-underline-key {
    background: var(--accent-color);
}

.key-feature-block:nth-child(3) .feature-underline-key {
    background: var(--accent-color);
}

.key-feature-block:nth-child(4) .feature-underline-key {
    background: var(--accent-color);
}

.key-feature-block:nth-child(5) .feature-underline-key {
    background: var(--accent-color);
}

.key-feature-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    clear: both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.service-header-centered {
    margin-bottom: 3rem;
}

.service-header-centered .service-icon-large {
    margin: 0 auto 2rem;
}

.service-header-centered h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(171, 184, 195, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(171, 184, 195, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service 4: Value Added - Clean Split Layout */
.service-value {
    background: var(--white);
    padding: 5rem 4rem;
    position: relative;
}

.service-property {
    background: var(--white);
    padding: 7rem 4rem;
    position: relative;
}

/* Override for Property Services to use Rental style */
.service-rental.service-property {
    background: var(--light-bg);
    padding: 0;
}

.service-section-content.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.service-left-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.content-divider {
    width: 60px;
    height: 2px;
    background: var(--pastel-pink);
    margin-bottom: 2rem;
}

.service-left-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-info-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-info-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.service-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-info-tag {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--primary-lightest);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-info-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 184, 74, 0.3);
}

.service-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tagline-line {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-visual-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.visual-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pastel-pink);
    font-family: 'Inter', sans-serif;
}

.visual-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visual-menu span {
    width: 20px;
    height: 2px;
    background: var(--pastel-lavender);
}

.visual-title {
    margin-bottom: 2.5rem;
}

.visual-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.visual-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.service-value-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-service-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(245, 247, 250, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-service-card:hover {
    background: rgba(171, 184, 195, 0.1);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 0.5s ease;
}

.value-service-icon {
    width: 50px;
    height: 50px;
    background: var(--pastel-mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.value-service-card:hover .value-service-icon {
    transform: scale(1.15) rotate(10deg);
    animation: wiggle 0.5s ease;
}

.value-service-card:nth-child(1) .value-service-icon {
    background: var(--pastel-mint);
}

.value-service-card:nth-child(2) .value-service-icon {
    background: var(--pastel-peach);
}

.value-service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: block;
}

.info-type {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.5;
    display: block;
}

.visual-footer {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-header-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-title-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.value-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: none;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(171, 184, 195, 0.3);
    background: rgba(255, 255, 255, 1);
}

.value-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(171, 184, 195, 0.4);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-large {
    transform: scale(1.15) rotate(-8deg);
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(171, 184, 195, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.service-card.wide {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.service-card.compact {
    background: linear-gradient(180deg, var(--white) 0%, rgba(171, 184, 195, 0.05) 100%);
}

.card-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(171, 184, 195, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    border-color: rgba(171, 184, 195, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s linear infinite;
}

.service-card:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2.25rem;
    box-shadow: 0 15px 40px rgba(171, 184, 195, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 50px rgba(171, 184, 195, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Service Header Row for Wide Cards */
.service-header-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-title-section {
    flex: 1;
}

.service-title-section h3 {
    margin-bottom: 0.75rem;
}

.service-title-section p {
    margin-bottom: 0;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Service Subitems */
.service-subitems {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.subitem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.subitem:last-child {
    margin-bottom: 0;
}

.subitem i {
    color: var(--grey-medium);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.subitem.nested {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Service Note */
.service-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(171, 184, 195, 0.1);
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.service-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-note p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Process */
.service-process {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.process-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.process-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-step i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 184, 195, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.process-step span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Features List */
.service-features-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(171, 184, 195, 0.15);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 184, 195, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Services */
.value-services {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-service {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-service:hover {
    background: rgba(171, 184, 195, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(171, 184, 195, 0.3);
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Left Section: Location Plan */
.location-plan-section {
    position: relative;
}

.location-plan-section:hover .location-plan-visual {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 1.5rem;
}


.location-plan-visual {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(171, 184, 195, 0.2);
}

.plan-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(171, 184, 195, 0.05) 0%, rgba(197, 208, 217, 0.05) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(171,184,195,0.1)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
}

.plans-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(171, 184, 195, 0.15);
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
    z-index: 1;
    pointer-events: none;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 2;
}

.stacked-image {
    position: absolute;
    width: 75%;
    height: 75%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: auto;
}

.stacked-image:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 5;
}

.stacked-image:nth-child(2) {
    top: 50px;
    left: 50px;
    z-index: 4;
}

.stacked-image:nth-child(3) {
    top: 100px;
    left: 100px;
    z-index: 3;
}

.stacked-image:nth-child(4) {
    top: 150px;
    left: 150px;
    z-index: 2;
}

.stacked-image:nth-child(5) {
    top: 200px;
    left: 200px;
    z-index: 1;
}

.stacked-image > * {
    pointer-events: none;
}

.stacked-image {
    pointer-events: auto;
}

.stacked-image.active {
    width: 85%;
    height: 85%;
    top: 0 !important;
    left: 0 !important;
    z-index: 10 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.stacked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
    display: block;
    border-radius: 15px;
}

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

.stacked-image.active img {
    transform: scale(1);
}



/* Right Section: Service Elements */
.service-elements-section {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-elements-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.showcase-content {
    position: relative;
    min-height: 500px;
}

.service-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.service-content > p:first-child {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.service-content > p:last-of-type {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-content .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.service-content .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    transition: transform 0.2s ease;
}

.service-content .service-features li:hover {
    transform: translateX(5px);
}

.service-content .service-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    background: rgba(139, 46, 61, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Statistics */
.statistics {
    padding: 5rem 0;
    background: #000000;
    background-image: url('/images/img1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-card:nth-child(1) .stat-icon {
    color: var(--white);
}

.stat-card:nth-child(2) .stat-icon {
    color: var(--white);
}

.stat-card:nth-child(3) .stat-icon {
    color: var(--white);
}

.stat-card:nth-child(4) .stat-icon {
    color: var(--white);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    animation: float 2s ease-in-out infinite;
}

.stat-card:hover .stat-icon {
    animation: bounce 0.6s ease;
    transform: scale(1.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Compact Section */
.about-compact {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.about-compact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Introduction */
.about-intro-compact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

/* Vision & Mission Cards */
.about-vm-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.vm-compact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.vm-compact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--pastel-pink);
    animation: float 2s ease-in-out infinite;
}

.vm-compact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--pastel-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2.5rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vm-compact-card:hover .vm-compact-icon {
    transform: scale(1.2) rotate(360deg);
    animation: pulse 0.5s ease;
}

.vm-compact-card:nth-child(2) .vm-compact-icon {
    background: var(--pastel-peach);
}

.vm-compact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vm-compact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 18px;
}

/* Team Highlights */
.about-team-compact {
    padding: 4rem 0;
    background: var(--white);
    margin-top: 0;
}

.about-team-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.team-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-compact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.team-compact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.team-compact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
    align-self: center;
}

.team-compact-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
}

/* Founder Info */
.about-founder-compact {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.founder-compact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-compact-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.founder-compact-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-compact-info {
    flex: 1;
}

.founder-compact-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-compact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.founder-compact-role {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.founder-compact-info p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 18px;
}

/* FAQ Compact */
.about-faq-compact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--grey-ultra-pale) 0%, var(--white) 50%, var(--grey-pale) 100%);
    position: relative;
    overflow: hidden;
}

.faq-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 184, 74, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 184, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-faq-compact .container {
    position: relative;
    z-index: 2;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 184, 74, 0.3);
    position: relative;
}

.faq-header-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0.2;
    transform: scale(1.3);
    animation: pulse-ring 2s ease-out infinite;
}

.faq-header-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.faq-compact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.faq-compact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.faq-compact-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-compact-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(212, 184, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-compact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 184, 74, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 184, 74, 0.3);
    background: linear-gradient(to bottom, var(--white), var(--primary-lightest));
}

.faq-item-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-lightest), var(--primary-lighter));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-compact-item:hover .faq-item-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(212, 184, 74, 0.3);
}

.faq-item-icon-wrapper i {
    color: var(--accent-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.faq-compact-item:hover .faq-item-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.faq-compact-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-compact-item:hover h4 {
    color: var(--primary-dark);
}

.faq-compact-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-compact-item:hover p {
    color: var(--text-dark);
}

.faq-item-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 184, 74, 0.05) 0%, transparent 70%);
    border-radius: 50% 0 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-compact-item:hover .faq-item-decoration {
    opacity: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1.3);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

/* About Section Animations */
.about-compact.section-coming-into-view {
    opacity: 0;
}

.about-compact.section-visible {
    opacity: 1;
}

.about-compact.section-visible .about-intro-compact {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.about-compact.section-visible .vm-compact-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
}

.about-compact.section-visible .vm-compact-card:nth-child(1) {
    animation-delay: 0.4s;
}

.about-compact.section-visible .vm-compact-card:nth-child(2) {
    animation-delay: 0.25s;
}

.about-compact.section-visible .about-team-compact {
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

.about-compact.section-visible .team-compact-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out both;
}

.about-compact.section-visible .team-compact-item:nth-child(1) {
    animation-delay: 0.35s;
}

.about-compact.section-visible .team-compact-item:nth-child(2) {
    animation-delay: 0.4s;
}

.about-compact.section-visible .team-compact-item:nth-child(3) {
    animation-delay: 0.9s;
}

.about-compact.section-visible .team-compact-item:nth-child(4) {
    animation-delay: 1s;
}

.about-compact.section-visible .about-founder-compact {
    animation: fadeInUp 0.4s ease-out 0.55s both;
}

.about-compact.section-visible .about-faq-compact {
    animation: fadeInUp 0.4s ease-out 0.65s both;
}

.about-compact.section-visible .faq-compact-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out both;
}

.about-compact.section-visible .faq-compact-item:nth-child(1) {
    animation-delay: 1.4s;
}

.about-compact.section-visible .faq-compact-item:nth-child(2) {
    animation-delay: 1.5s;
}

.about-compact.section-visible .faq-compact-item:nth-child(3) {
    animation-delay: 1.6s;
}

/* FAQ Section Standalone Animations */
.about-faq-compact.section-coming-into-view {
    opacity: 0;
}

.about-faq-compact.section-visible {
    opacity: 1;
}

.about-faq-compact.section-visible .faq-section-header {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.about-faq-compact.section-visible .faq-compact-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
}

.about-faq-compact.section-visible .faq-compact-item:nth-child(1) {
    animation-delay: 0.4s;
}

.about-faq-compact.section-visible .faq-compact-item:nth-child(2) {
    animation-delay: 0.25s;
}

.about-faq-compact.section-visible .faq-compact-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Design for About Compact */
@media (max-width: 768px) {
    .about-compact {
        padding: 3rem 0;
    }

    .about-vm-compact {
        grid-template-columns: 1fr;
    }

    .team-compact-grid {
        grid-template-columns: 1fr;
    }

    .founder-compact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .founder-compact-image {
        margin: 0 auto;
        height: 400px;
        max-width: 100%;
    }

    .faq-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-faq-compact {
        padding: 3.5rem 0;
    }

    .faq-section-header {
        margin-bottom: 2.5rem;
    }

    .faq-header-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .faq-header-icon i {
        font-size: 1.75rem;
    }

    .faq-compact-title {
        font-size: 1.75rem;
    }

    .faq-compact-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .faq-compact-item {
        padding: 2rem 1.5rem;
    }

    .faq-item-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 1.25rem;
    }

    .faq-item-icon-wrapper i {
        font-size: 1.1rem;
    }

    .faq-compact-item h4 {
        font-size: 1.1rem;
    }

    .faq-compact-item p {
        font-size: 0.95rem;
    }

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

/* Partners Compact Section */
.partners-compact {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
}

.partners-compact-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.partners-intro-compact {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partners-intro-compact p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

.partners-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 1.25rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: start;
    max-width: 100%;
    width: 100%;
}

.partners-compact-grid {
    transition: max-height 0.5s ease-in-out, overflow 0.5s ease-in-out;
}

.partners-compact-grid.partners-grid-collapsed {
    /* Limit to 2 rows: card height (~180px) + gap (1.25rem) for 2 rows */
    max-height: calc(2 * 180px + 1.25rem);
    overflow: hidden;
}

.partners-compact-grid.partners-grid-expanded {
    max-height: none;
    overflow: visible;
}

.partners-load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.btn-load-more-partners {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: inherit;
}

.btn-load-more-partners:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
    animation: bounce 0.5s ease;
}

.btn-load-more-partners:hover i {
    animation: bounce 0.6s ease;
    transform: translateY(3px);
}

.partners-show-less-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.btn-show-less-partners {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: inherit;
}

.btn-show-less-partners:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
    animation: bounce 0.5s ease;
}

.btn-show-less-partners:hover i {
    animation: bounce 0.6s ease;
    transform: translateY(-3px);
}

.partner-compact-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
}

.partner-compact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.partner-compact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 0 15px rgba(59, 130, 246, 0.25);
    border-color: var(--primary-color);
    animation: cardShimmer 0.8s ease-out;
}

.partner-compact-card:hover::after {
    left: 100%;
}

.partner-compact-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    flex-shrink: 0;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-compact-card:hover .partner-logo-img {
    transform: scale(1.05);
}

.partner-compact-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    flex-shrink: 0;
}

.partner-compact-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.partner-compact-card:hover .partner-compact-name {
    color: var(--primary-dark);
}

/* Dark variant for specific partner cards */
.partner-compact-card-dark {
    background: #000000;
}

.partner-compact-card-dark .partner-compact-name {
    color: #ffffff;
}

.partner-compact-card-dark:hover .partner-compact-name {
    color: #ffffff;
}

/* Partners Section Animations */
.partners-compact.section-coming-into-view {
    opacity: 0;
}

.partners-compact.section-visible {
    opacity: 1;
}

.partners-compact.section-visible .partners-intro-compact {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.partners-compact.section-visible .partners-compact-grid {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.partners-compact.section-visible .partner-compact-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out both;
}

.partners-compact.section-visible .partner-compact-card:nth-child(1) {
    animation-delay: 0.25s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(2) {
    animation-delay: 0.55s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(3) {
    animation-delay: 0.6s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(4) {
    animation-delay: 0.65s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(5) {
    animation-delay: 0.35s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(6) {
    animation-delay: 0.75s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(7) {
    animation-delay: 0.4s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(8) {
    animation-delay: 0.85s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(9) {
    animation-delay: 0.9s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(10) {
    animation-delay: 0.95s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(11) {
    animation-delay: 1s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(12) {
    animation-delay: 1.05s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(13) {
    animation-delay: 1.1s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(14) {
    animation-delay: 1.15s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(15) {
    animation-delay: 1.2s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(16) {
    animation-delay: 1.25s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(17) {
    animation-delay: 1.3s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(18) {
    animation-delay: 1.35s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(19) {
    animation-delay: 1.4s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(20) {
    animation-delay: 1.45s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(21) {
    animation-delay: 1.5s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(22) {
    animation-delay: 1.55s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(23) {
    animation-delay: 1.6s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(24) {
    animation-delay: 1.65s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(25) {
    animation-delay: 1.7s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(26) {
    animation-delay: 1.75s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(27) {
    animation-delay: 1.8s;
}

.partners-compact.section-visible .partner-compact-card:nth-child(28) {
    animation-delay: 1.85s;
}

/* Responsive Design for Partners Compact */
@media (max-width: 768px) {
    .partners-compact {
        padding: 3rem 0;
    }

    .partners-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
        gap: 1rem;
    }
    
    .partners-compact-grid.partners-grid-collapsed {
        max-height: calc(2 * 160px + 1rem);
    }
    
    .partners-compact-grid.partners-grid-expanded {
        max-height: none;
    }

    .partner-compact-card {
        padding: 1.25rem 1rem;
        height: 160px;
        min-height: 160px;
        max-height: 160px;
    }

    .partner-compact-logo {
        height: 70px;
        min-height: 70px;
        max-height: 70px;
    }

    .partner-compact-name {
        font-size: 18px;
    }

    .partners-intro-compact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-compact-grid.partners-grid-collapsed {
        max-height: calc(2 * 160px + 1rem);
    }
    
    .partners-compact-grid.partners-grid-expanded {
        max-height: none;
    }
}

/* Testimonials Compact Section */
.testimonials-compact {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.testimonials-compact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-compact-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-compact-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-compact-grid {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
    will-change: transform;
}

.testimonials-compact-grid.scrolling {
    animation: scrollTestimonials 30s linear infinite;
}

.testimonials-compact-grid.scrolling:hover {
    animation-play-state: paused;
}

.testimonials-compact-grid .testimonials-compact-empty {
    animation: none;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-compact-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-compact-grid::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.testimonials-compact-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonials-compact-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.testimonial-compact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.testimonial-compact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    animation: float 2s ease-in-out infinite;
}

.testimonial-compact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-compact-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-compact-info {
    flex: 1;
}

.testimonial-compact-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.testimonial-compact-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.testimonial-compact-service {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: capitalize;
}

.testimonial-compact-rating {
    color: #FFD700;
    font-size: 0.9rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-compact-rating i {
    font-size: 0.9rem;
    color: #FFD700;
}

.testimonial-compact-content {
    flex: 1;
}

.testimonial-compact-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Empty State */
.testimonials-compact-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    min-width: 100%;
    flex-shrink: 0;
}

.testimonials-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.testimonials-compact-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.testimonials-compact-empty p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Section Animations */
.testimonials-compact.section-coming-into-view {
    opacity: 0;
}

.testimonials-compact.section-visible {
    opacity: 1;
}

.testimonials-compact.section-visible .testimonials-compact-grid:not(.scrolling) {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.testimonials-compact.section-visible .testimonial-compact-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
}

.testimonials-compact.section-visible .testimonial-compact-card:nth-child(1) {
    animation-delay: 0.4s;
}

.testimonials-compact.section-visible .testimonial-compact-card:nth-child(2) {
    animation-delay: 0.25s;
}

.testimonials-compact.section-visible .testimonial-compact-card:nth-child(3) {
    animation-delay: 0.6s;
}

.testimonials-compact.section-visible .testimonials-compact-empty {
    animation: fadeInUp 0.4s ease-out 0.15s both;
}

/* Responsive Design for Testimonials Compact */
@media (max-width: 768px) {
    .testimonials-compact {
        padding: 3rem 0;
    }

    .testimonials-compact-grid {
        gap: 1.25rem;
    }
    
    .testimonial-compact-card {
        min-width: 280px;
        max-width: 280px;
    }

    .testimonial-compact-card {
        padding: 1.5rem;
    }

    .testimonials-compact-empty {
        padding: 2rem 1.5rem;
    }

    .testimonials-empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .testimonials-compact-empty h3 {
        font-size: 1.25rem;
    }

    .testimonials-compact-empty p {
        font-size: 0.95rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 46, 61, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    animation: bounce 0.6s ease;
    box-shadow: 0 5px 15px rgba(139, 46, 61, 0.3);
    background: var(--accent-color);
    color: var(--white);
}

.contact-item:nth-child(2) .contact-icon {
    background: rgba(139, 46, 61, 0.1);
    color: var(--accent-color);
}

.contact-item:nth-child(3) .contact-icon {
    background: rgba(139, 46, 61, 0.1);
    color: var(--accent-color);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Info Modal Content */
.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--primary-lightest);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: var(--primary-lighter);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-details {
    flex: 1;
}

.contact-info-details h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-info-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Modal - Match Contact Section Style Exactly */
#contactInfoModal .login-modal-content.contact-modal-content {
    max-width: 100%;
    width: 100%;
    padding: 5rem 0;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: var(--white);
    position: relative;
}

#contactInfoModal.active .login-modal-content.contact-modal-content {
    transform: none;
}

#contactInfoModal .contact-modal-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

#contactInfoModal .contact-modal-content .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#contactInfoModal .contact-modal-content .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Close button styling for contact modal */
#contactInfoModal .login-modal-close {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    top: 1.5rem;
    right: 1.5rem;
}

#contactInfoModal .login-modal-close:hover {
    background: rgba(139, 46, 61, 0.1);
    color: var(--accent-color);
}

@media (max-width: 1366px) {
    #contactInfoModal .contact-modal-content .container {
        padding: 0 15px;
    }
}

@media (max-width: 968px) {
    #contactInfoModal .contact-modal-content .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    #contactInfoModal .login-modal-content.contact-modal-content {
        padding: 3rem 0;
    }
    
    #contactInfoModal .contact-modal-content .container {
        padding: 0 12px;
    }
}

/* Contact Info Horizontal Layout */
.contact-info-horizontal {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-photo {
    width: 250px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    white-space: nowrap;
    min-width: 0;
}

.contact-info-phone i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-info-phone .contact-info-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.contact-info-phone .contact-info-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .contact-info-horizontal {
        flex-direction: column;
    }
    
    .contact-info-photo {
        width: 100%;
        height: 150px;
    }
    
    .contact-info-phone {
        padding: 1.25rem 1.5rem;
        justify-content: center;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-pink);
    box-shadow: 0 0 0 3px rgba(255, 214, 212, 0.3);
    transform: scale(1.02);
    animation: pulse 0.3s ease;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-message i {
    margin-right: 0.5rem;
}

#contactSubmitBtn {
    position: relative;
}

#contactSubmitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col:first-child {
    max-width: 100%;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--pastel-pink);
    transform: translateX(5px) scale(1.05);
    animation: bounce 0.5s ease;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li i {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-contact li span {
    flex: 1;
}

.footer-credit {
    color: var(--yellow-pale);
    font-weight: 600;
    text-decoration: none;
}

.footer-credit:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    animation: bounce 0.5s ease;
    box-shadow: 0 5px 15px rgba(171, 184, 195, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 214, 212, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 214, 212, 0.8), 0 0 30px rgba(255, 214, 212, 0.6);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive Design for smaller laptop screens */
@media (max-width: 1366px) {
    .service-property {
        padding: 5rem 2rem;
    }
    
    .service-management {
        padding: 5rem 2rem;
    }
    
    .service-section-content.split-layout {
        gap: 3rem;
    }
    
    .nav-wrapper {
        gap: 2rem;
    }
    
    .logo {
        margin-right: 2rem;
    }
    
    .service-left-content h3 {
        font-size: 2.2rem;
    }
    
    .service-visual-card {
        padding: 2.5rem 2rem;
    }
    
    .property-types {
        padding: 4rem 0;
    }
    
    .service-header-key {
        margin-left: 20%;
        padding-left: 1rem;
        padding-right: 1.5rem;
    }
    
    .service-intro {
        margin-left: 20%;
        padding-left: 1rem;
        padding-right: 1.5rem;
    }
    
    .service-features-grid-key {
        margin-left: 20%;
        padding-left: 1rem;
        padding-right: 1.5rem;
        gap: 2rem;
    }
    
    .key-feature-block {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 4.5rem;
        width: 80px;
    }
    
    .key-feature-block h4 {
        margin-left: 100px;
        max-width: calc(100% - 100px);
    }
    
    .feature-underline-key {
        margin-left: 100px;
    }
    
    body {
        font-size: 16px;
    }
    
    p {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .service-property {
        padding: 4rem 1.5rem;
    }
    
    .service-management {
        padding: 4rem 1.5rem;
    }
    
    .service-section-content.split-layout {
        gap: 2.5rem;
    }
    
    .nav-wrapper {
        gap: 1.5rem;
    }
    
    .logo-img {
        width: 180px;
    }
    
    .service-left-content h3 {
        font-size: 2rem;
    }
    
    .service-visual-card {
        padding: 2rem 1.5rem;
    }
    
    .service-value-cards {
        gap: 1.25rem;
    }
    
    .property-types {
        padding: 3.5rem 0;
    }
    
    .service-header-key {
        margin-left: 15%;
        padding-left: 0.75rem;
        padding-right: 1rem;
    }
    
    .service-header-key h3 {
        font-size: 1.9rem;
    }
    
    .service-intro {
        margin-left: 15%;
        padding-left: 0.75rem;
        padding-right: 1rem;
        font-size: 0.85rem;
    }
    
    .service-features-grid-key {
        margin-left: 15%;
        padding-left: 0.75rem;
        padding-right: 1rem;
        gap: 1.75rem;
    }
    
    .key-feature-block {
        padding: 1.75rem 1.25rem;
        min-width: 0;
    }
    
    .feature-number {
        font-size: 4rem;
        width: 70px;
    }
    
    .key-feature-block h4 {
        margin-left: 90px;
        max-width: calc(100% - 90px);
        font-size: 1.1rem;
    }
    
    .feature-underline-key {
        margin-left: 90px;
    }
    
    body {
        font-size: 15px;
    }
    
    p {
        font-size: 15px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
}

@media (max-width: 1150px) {
    .service-section-content.split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-property {
        padding: 4rem 1rem;
    }
    
    .service-management {
        padding: 4rem 1rem;
    }
    
    .service-header-key {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-header-key h3 {
        font-size: 1.75rem;
    }
    
    .service-intro {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        font-size: 0.85rem;
    }
    
    .service-features-grid-key {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-feature-block {
        padding: 1.5rem 1rem;
        min-width: 0;
    }
    
    .feature-number {
        font-size: 3.5rem;
        width: 60px;
    }
    
    .key-feature-block h4 {
        margin-left: 80px;
        max-width: calc(100% - 80px);
        font-size: 1rem;
    }
    
    .feature-underline-key {
        margin-left: 80px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .filter-additional-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-search {
        grid-column: 1 / -1;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        padding: 4rem 0;
    }
    
    .services-showcase .section-header {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .services-showcase .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    /* Apply same responsive styling to other section headers */
    .property-types .section-header,
    .about-compact .section-header,
    .partners-compact .section-header,
    .testimonials-compact .section-header,
    .contact .section-header {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .property-types .section-header h2,
    .about-compact .section-header h2,
    .partners-compact .section-header h2,
    .testimonials-compact .section-header h2,
    .contact .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .service-header-key {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .service-header-key h3 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .about-team-title {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .service-section {
        padding: 3rem 0;
    }
    
    .service-section-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .service-section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-property {
        padding: 4rem 1rem;
    }
    
    .service-icon-large {
        width: 120px;
        height: 120px;
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .service-right h3,
    .service-investment .service-left h3,
    .service-header-centered h3,
    .service-title-block h3 {
        font-size: 2rem;
    }
    
    .service-subitems-horizontal {
        justify-content: center;
    }
    
    .timeline-steps {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-content {
        margin-left: 70px;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header-split {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .location-plan-visual {
        height: 400px;
    }
    
    .plans-text {
        font-size: 6rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .nav-search {
        order: 2;
        flex: 0 1 auto;
        max-width: 200px;
    }
    
    .nav-actions {
        order: 1;
    }
}

@media (max-width: 900px) {
    .nav-search {
        max-width: 180px;
    }
    
    .nav-menu {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        max-width: 320px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
        align-items: flex-start;
        z-index: 1000;
        overflow-y: auto;
        order: unset;
        margin-top: 0;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 0.5rem;
        margin-left: 0;
        border-radius: 6px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        width: 100%;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-search {
        display: none;
    }
    
    .nav-search.mobile-visible {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        background: var(--white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
        order: unset;
    }
    
    .nav-actions {
        order: 1;
    }
    
    /* Mobile menu overlay - using a pseudo-element on navbar */
    .navbar::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }
    
    .navbar.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Ensure navbar stays on top when menu is open */
    .navbar {
        z-index: 1002;
    }
    
    /* Ensure menu is above overlay */
    .nav-menu {
        z-index: 1000;
    }
}

@media (max-width: 968px) {
    .hero {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 2rem 0;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-text {
        margin-bottom: 2.5rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .hero-scroll-hint {
        bottom: 100px;
        font-size: 0.75rem;
    }
    
    .property-search {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .search-header h3 {
        font-size: 1.5rem;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .search-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-tab {
        padding: 0.875rem 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-showcase {
        padding: 3rem 0;
    }
    
    .services-showcase .section-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
    
    /* Apply same responsive styling to other section headers */
    .property-types .section-header,
    .about-compact .section-header,
    .partners-compact .section-header,
    .testimonials-compact .section-header,
    .contact .section-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
    
    .service-header-key {
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
    
    .about-team-title {
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
    
    .service-section {
        padding: 2.5rem 0;
        border-radius: 20px;
    }
    
    .service-rental,
    .service-investment,
    .service-management,
    .service-value,
    .service-property {
        padding: 2.5rem 1.5rem;
    }
    
    .service-section-content {
        gap: 2rem;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .service-right h3,
    .service-investment .service-left h3,
    .service-header-centered h3,
    .service-title-block h3 {
        font-size: 1.75rem;
    }
    
    .service-subitems-horizontal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subitem-box {
        padding: 0.875rem 1.25rem;
    }
    
    .timeline-steps {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .value-services-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .location-plan-visual {
        height: 350px;
    }
    
    .plans-text {
        font-size: 5rem;
    }
    
    .stacked-image:nth-child(2) {
        top: 30px;
        left: 30px;
    }
    
    .stacked-image:nth-child(3) {
        top: 60px;
        left: 60px;
    }
    
    .stacked-image:nth-child(4) {
        top: 90px;
        left: 90px;
    }
    
    .stacked-image:nth-child(5) {
        top: 120px;
        left: 120px;
    }
    
    .stacked-image {
        width: 70%;
        height: 70%;
    }
    
    .stacked-image.active {
        width: 80%;
        height: 80%;
    }
    
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .service-content > p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .property-search {
        padding: 1.25rem;
    }
    
    .search-header h3 {
        font-size: 1.25rem;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-tab {
        padding: 0.875rem 1rem;
    }
    
    .hero-scroll-hint {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-section {
        padding: 2rem 0;
    }
    
    .service-rental,
    .service-investment,
    .service-management,
    .service-value,
    .service-property {
        padding: 2rem 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-right h3,
    .service-investment .service-left h3,
    .service-header-centered h3,
    .service-title-block h3 {
        font-size: 1.5rem;
    }
    
    .service-right > p,
    .service-investment .service-left > p,
    .service-header-centered p,
    .service-title-block p {
        font-size: 0.95rem;
    }
    
    .subitem-box {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-note-banner {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-steps {
        padding-left: 1rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 55px;
    }
    
    .timeline-content h4 {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .value-card h4 {
        font-size: 1.25rem;
    }
    
    .plans-text {
        font-size: 4rem;
        bottom: 10px;
        left: 10px;
    }
    
    .stacked-image {
        width: 65%;
        height: 65%;
    }
    
    .stacked-image.active {
        width: 75%;
        height: 75%;
    }
    
    
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content > p {
        font-size: 0.85rem;
    }
}

/* Responsive Styles for New Service Sections */
@media (max-width: 1024px) {
    .service-main-title {
        font-size: 2.5rem;
    }
    
    .service-content-overlay {
        padding: 4rem 3rem;
    }
    
    .service-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-features-grid-key {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-section-content.split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .service-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Property Services Slider - Slightly different overlay */
.service-property-slider .service-content-overlay::before {
    background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
    .service-rental,
    .service-rental.service-property {
        min-height: 600px;
    }
    
    .service-content-overlay {
        padding: 3rem 2rem;
        min-height: 600px;
    }
    
    .service-bg-slide {
        animation-duration: 20s;
    }
    
    .service-main-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-testimonial-card {
        min-height: auto;
    }
    
    .service-header-features h3 {
        font-size: 2rem;
    }
    
    .service-feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-header-key {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .service-header-key h3 {
        font-size: 1.6rem;
    }
    
    .service-intro {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .service-features-grid-key {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-abstract-bg {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
        height: 200px;
    }
    
    .feature-number {
        font-size: 5rem;
        width: 90px;
    }
    
    .key-feature-block {
        padding: 2.75rem 2rem 2rem 2rem;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }
    
    .key-feature-block h4 {
        margin-top: 0;
        margin-left: 120px;
        margin-right: 0;
        padding-left: 0;
        padding-top: 0.5rem;
        max-width: calc(100% - 120px);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .key-feature-block p {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 1rem;
        clear: both;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-underline-key {
        margin-left: 120px;
    }
    
    .service-left-content h3 {
        font-size: 2rem;
    }
    
    .visual-main-title {
        font-size: 2rem;
    }
    
    .service-value,
    .service-property {
        padding: 3rem 2rem;
    }
    
    .service-investment {
        padding: 3rem 2rem;
    }
    
    .service-management {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .service-content-overlay {
        padding: 2.5rem 1.5rem;
    }
    
    .service-main-title {
        font-size: 1.75rem;
    }
    
    .service-item-card {
        padding: 1rem 1.5rem;
    }
    
    .service-header-features h3 {
        font-size: 1.75rem;
    }
    
    .service-header-key {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .service-header-key h3 {
        font-size: 1.4rem;
    }
    
    .service-intro {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .service-features-grid-key {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-abstract-bg {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
        height: 150px;
    }
    
    .feature-number {
        font-size: 4rem;
        top: -5px;
        left: -5px;
        width: 75px;
    }
    
    .key-feature-block {
        padding: 2.5rem 1.5rem 1.75rem 1.5rem;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }
    
    .key-feature-block h4 {
        margin-top: 0;
        margin-left: 100px;
        margin-right: 0;
        padding-left: 0;
        padding-top: 0.25rem;
        max-width: calc(100% - 100px);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .key-feature-block p {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 1rem;
        clear: both;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-underline-key {
        margin-left: 100px;
    }
    
    .service-left-content h3 {
        font-size: 1.75rem;
    }
    
    .service-value,
    .service-property,
    .service-investment,
    .service-management {
        padding: 2.5rem 1.5rem;
    }
    
    .service-visual-card {
        padding: 2rem 1.5rem;
    }
}

/* Properties Page Styles */
.properties-hero {
    background-image: url('../images/img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.properties-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.properties-hero-content {
    position: relative;
    z-index: 2;
}

.properties-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.properties-hero-subtitle {
    font-size: 18px;
    color: var(--primary-lighter);
    font-weight: 300;
}

.properties-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.properties-section .container {
    width: 100%;
    max-width: 1200px;
}

.properties-section .properties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    grid-auto-rows: auto;
}

@media (max-width: 1024px) {
    .properties-section .properties-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .properties-section .properties-grid {
        grid-template-columns: 1fr;
    }
}

.properties-main-search {
    margin-bottom: 2rem;
}

.filter-tags-container {
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 0.3s ease;
}

.filter-tags-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tags-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tags-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.clear-all-filters {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-all-filters:hover {
    background: var(--grey-pale);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--primary-lighter);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInScale 0.3s ease;
    transition: all 0.3s ease;
}

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

.filter-tag-icon {
    font-size: 0.75rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.filter-tag:hover .filter-tag-icon {
    color: var(--white);
}

.filter-tag-text {
    flex: 1;
}

.filter-tag-remove {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.filter-tag-remove:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    transform: scale(1.1);
}

.filter-tag:hover .filter-tag-remove {
    color: var(--white);
}

.filter-tag:hover .filter-tag-remove:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.main-search-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.main-search-wrapper:focus-within {
    box-shadow: 0 0 0 4px rgba(212, 184, 74, 0.2), var(--shadow-xl);
    transform: translateY(-2px);
}

.main-search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--accent-color);
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.main-search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    font-family: inherit;
}

.main-search-input::placeholder {
    color: var(--text-light);
}

.main-search-clear {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.main-search-clear:hover {
    background: var(--grey-pale);
    color: var(--text-dark);
    transform: scale(1.1);
}

.properties-filters {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 2rem;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-tab:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    animation: pulse 0.3s ease;
}

.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.625rem 1.25rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-button:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.2);
}

.filter-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.3);
}

/* Category Group Styles */
.category-group {
    margin-bottom: 1.25rem;
    display: inline-block;
    vertical-align: top;
    margin-right: 1.5rem;
}

.category-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    min-width: 140px;
    max-width: 180px;
    padding: 0.625rem 1rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.category-button:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.2);
}

.category-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.3);
}

.category-button span {
    flex: 1;
}

.category-button i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
    margin-left: 0.75rem;
    opacity: 0.7;
}

.category-group.expanded .category-button i {
    transform: rotate(180deg);
    opacity: 1;
}

.subcategory-buttons {
    display: none;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
}

.category-group.expanded .subcategory-buttons {
    display: flex;
}

.subcategory-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.subcategory-button:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.subcategory-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(171, 184, 195, 0.3);
}

/* Centered Category Section Styles */
.category-section-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.category-main-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-text-button {
    padding: 0.75rem 2rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.category-text-button:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.2);
    text-decoration: none;
}

.category-text-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.3);
}

.category-divider {
    display: none;
}

.category-subcategories-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.category-subcategories-container .subcategory-buttons {
    display: none;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    justify-content: center;
    width: 100%;
}

/* Show subcategories when category is active */
.category-section-centered[data-active-category="residential"] .category-subcategories-container .subcategory-buttons[data-category="residential"],
.category-section-centered[data-active-category="commercial"] .category-subcategories-container .subcategory-buttons[data-category="commercial"],
.filter-section.category-section-centered[data-active-category="residential"] .category-subcategories-container .subcategory-buttons[data-category="residential"],
.filter-section.category-section-centered[data-active-category="commercial"] .category-subcategories-container .subcategory-buttons[data-category="commercial"],
#indexCategorySection[data-active-category="residential"] .category-subcategories-container .subcategory-buttons[data-category="residential"],
#indexCategorySection[data-active-category="commercial"] .category-subcategories-container .subcategory-buttons[data-category="commercial"] {
    display: flex !important;
}

.properties-search {
    margin-top: 0;
}

.search-form {
    width: 100%;
}

/* Two-column filter layout */
.filters-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: start;
}

.filter1,
.filter2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter1 .search-group input,
.filter1 .search-group select,
.filter1 .search-group .price-range-btn,
.filter2 .search-group input,
.filter2 .search-group select,
.filter2 .search-group .price-range-btn {
    max-width: 300px;
    width: 100%;
}

.filter-additional-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-additional-row .search-group input,
.filter-additional-row .search-group select {
    max-width: 100%;
    width: 100%;
}

.filter-button-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
}

.filter-button-center .btn-search {
    width: 162px;
    height: 49px;
    min-width: 162px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0.5rem;
    align-items: end;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-group label i {
    color: var(--primary-color);
}

.search-group input,
.search-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.1);
    transform: scale(1.02);
    animation: pulse 0.3s ease;
}

/* Price Range Modal Styles */
.price-range-btn {
    padding: 0.75rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.price-range-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.2);
}

.price-range-btn:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.2);
}

.price-range-display {
    flex: 1;
    color: var(--text-dark);
}

.price-range-btn i {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

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

.price-range-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-range-modal.active {
    display: flex;
    opacity: 1;
}

.price-range-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.price-range-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.price-range-modal.active .price-range-modal-content {
    transform: scale(1);
}

.price-range-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-range-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-range-modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.price-range-modal-close:hover {
    background: var(--grey-pale);
    color: var(--text-dark);
}

.price-range-modal-body {
    padding: 2rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.price-range-slider-container {
    width: 100%;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.price-range-slider-wrapper {
    position: relative;
    padding: 1rem 0;
}

.price-range-track {
    position: relative;
    height: 6px;
    background: var(--grey-pale);
    border-radius: 3px;
    margin: 1rem 0;
}

.price-range-progress {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    left: 0%;
    right: 0%;
    transition: all 0.1s ease;
}

.price-range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    z-index: 2;
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 3px solid white;
}

.price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.price-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 3px solid white;
}

.price-range-input::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.price-range-input::-moz-range-track {
    background: transparent;
}

.price-range-inputs {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.price-range-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-range-input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-range-number-input {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.price-range-number-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.2);
}

.price-range-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.price-range-btn-clear,
.price-range-btn-apply {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-range-btn-clear {
    background: var(--grey-pale);
    color: var(--text-dark);
}

.price-range-btn-clear:hover {
    background: var(--border-color);
}

.price-range-btn-apply {
    background: var(--primary-color);
    color: white;
}

.price-range-btn-apply:hover {
    background: var(--primary-color-dark, #2a3f54);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .price-range-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .price-range-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .price-range-inputs {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-search {
    padding: 0.75rem 2rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    min-width: 150px;
    height: fit-content;
    box-sizing: border-box;
    white-space: nowrap;
    text-decoration: none;
}

.btn-search:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.2);
}

.property-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-view-details {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    animation: pulse 0.3s ease;
}

.properties-load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-load-more:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
    animation: bounce 0.5s ease;
}

.btn-load-more:hover i {
    animation: bounce 0.6s ease;
    transform: translateY(3px);
}

.btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-load-more:disabled:hover {
    background: var(--primary-color);
    transform: none;
    box-shadow: none;
    animation: none;
}

.btn-load-more:disabled:hover i {
    animation: none;
    transform: none;
}

/* Properties Loading State */
.properties-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.properties-loading .loading-spinner {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.properties-loading .loading-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.properties-loading p {
    font-size: 18px;
    color: var(--grey-medium);
    margin-top: 10px;
}

/* Properties Error State */
.properties-error {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--grey-ultra-pale);
    border-radius: 8px;
    margin: 20px 0;
}

.properties-error i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.properties-error h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.properties-error p {
    font-size: 16px;
    color: var(--grey-medium);
    margin-bottom: 20px;
}

.btn-retry {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-retry:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Property Details Loading State */
.property-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
}

.property-loading .loading-spinner {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.property-loading .loading-spinner i {
    animation: spin 1s linear infinite;
}

.property-loading p {
    font-size: 18px;
    color: var(--grey-medium);
    margin-top: 10px;
}

/* Property Details Error State */
.property-error {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
}

.property-error i {
    font-size: 64px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.property-error h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-error p {
    font-size: 16px;
    color: var(--grey-medium);
    margin-bottom: 30px;
    max-width: 500px;
}

.property-error .btn-retry {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.property-error .btn-retry:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.no-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-properties i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-properties h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Responsive Properties Page */
@media (max-width: 768px) {
    .properties-hero-title {
        font-size: 26px;
    }
    
    .properties-hero-subtitle {
        font-size: 18px;
    }
    
    .main-search-wrapper {
        border-radius: 25px;
        max-width: 100%;
    }
    
    .main-search-input {
        font-size: 0.9rem;
        padding: 0.875rem 1rem 0.875rem 3rem;
    }
    
    .main-search-icon {
        left: 1rem;
        font-size: 1rem;
    }
    
    .filter-tags-container {
        padding: 1rem;
    }
    
    .filter-tags-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .clear-all-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-tags {
        gap: 0.5rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }
    
    .properties-filters {
        padding: 1.5rem;
    }
    
    .filters-two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter1,
    .filter2 {
        padding: 1.25rem;
    }
    
    .filter-subsection-title {
        font-size: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .filter-additional-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .filter-button-center {
        margin-top: 1rem;
    }
    
    .filter-button-center .btn-search {
        width: 162px;
        height: 49px;
        min-width: 162px;
    }
    
    .filter1 .search-group input,
    .filter1 .search-group select,
    .filter1 .search-group .price-range-btn,
    .filter2 .search-group input,
    .filter2 .search-group select,
    .filter2 .search-group .price-range-btn {
        max-width: 100%;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-tab {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(45, 58, 69, 0.95) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(171, 184, 195, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-lighter);
    font-weight: 300;
}

.about-intro {
    padding: 5rem 0;
    background: var(--white);
}

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

.intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.intro-lead {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.vision-mission {
    padding: 5rem 0;
    background: var(--light-bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vm-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.our-team {
    padding: 5rem 0;
    background: var(--white);
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-feature:hover {
    background: var(--primary-lightest);
    transform: translateY(-5px);
}

.team-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.team-feature p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-founder {
    padding: 5rem 0;
    background: var(--light-bg);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.founder-image-placeholder i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.7;
}

.founder-info {
    padding: 1rem 0;
}

.founder-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.founder-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-info p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-lightest);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.why-choose-about {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.choose-content {
    max-width: 800px;
    margin: 3rem auto 0;
}

.choose-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 500;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-team-compact {
        padding: 3rem 0;
    }

    .team-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .intro-text h2 {
        font-size: 1.5rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-placeholder {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .team-features {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(45, 58, 69, 0.95) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(171, 184, 195, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.testimonials-hero-content {
    position: relative;
    z-index: 2;
}

.testimonials-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonials-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-lighter);
    font-weight: 300;
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.testimonial-service {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--yellow-bright);
    font-size: 1rem;
    margin-right: 0.25rem;
}

.testimonial-content {
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content p {
    margin: 0;
    font-size: 1rem;
}

.testimonials-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.empty-icon i {
    font-size: 3rem;
    color: var(--white);
}

.testimonials-empty h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonials-empty p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.submit-testimonial {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonial-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(171, 184, 195, 0.1);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--grey-light);
    transition: color 0.2s ease;
}

.star-label:hover,
.star-label:hover ~ .star-label {
    color: var(--yellow-bright);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked ~ .star-label ~ .star-label {
    color: var(--yellow-bright);
}

.btn-submit-testimonial {
    padding: 1rem 2.5rem;
    background: var(--yellow-bright);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit-testimonial:hover {
    background: var(--yellow-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-success-message {
    background: var(--grey-darkest);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInDown 0.5s ease;
    border-left: 4px solid var(--yellow-bright);
}

.form-success-message i {
    font-size: 1.5rem;
}

.form-success-message p {
    margin: 0;
    font-weight: 500;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Testimonials Page */
@media (max-width: 768px) {
    .testimonials-hero-title {
        font-size: 2rem;
    }
    
    .testimonials-hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .testimonial-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Partners Page Styles */
.partners-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(45, 58, 69, 0.95) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(171, 184, 195, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.partners-hero-content {
    position: relative;
    z-index: 2;
}

.partners-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.partners-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-lighter);
    font-weight: 300;
}

.channel-partners {
    padding: 5rem 0 3rem;
    background: var(--white);
    position: relative;
}

.channel-partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-intro {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--white) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.partners-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
}

.partners-intro p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.partners-subtitle {
    text-align: center;
    margin-top: 4rem;
    position: relative;
}

.partners-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-subtitle h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    display: inline-block;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.partners-grid-section {
    padding: 4rem 0 6rem;
    background: var(--light-bg);
    position: relative;
}

.partners-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.partners-grid-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-lightest) 100%);
    justify-content: center;
    min-height: 200px;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(171, 184, 195, 0.3);
    border-color: var(--primary-color);
    background: var(--white);
}


.partner-info {
    width: 100%;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.partner-card:hover .partner-name {
    color: var(--primary-dark);
}

.partner-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(171, 184, 195, 0.4);
    border: 2px solid transparent;
}

.partner-visit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.partner-visit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.partner-visit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(171, 184, 195, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-visit-btn span,
.partner-visit-btn i {
    position: relative;
    z-index: 1;
}

.partner-visit-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.partner-visit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Partners Page */
@media (max-width: 768px) {
    .partners-hero-title {
        font-size: 2rem;
    }
    
    .partners-hero-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .partner-name {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .partners-subtitle h3 {
        font-size: 1.25rem;
    }
}

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

/* Partners Page Scroll Animations */
.partners-grid-section.section-coming-into-view {
    opacity: 0;
    transform: translateY(50px);
}

.partners-grid-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.partners-grid-section.section-visible .partner-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out both;
}

.partners-grid-section.section-visible .partner-card:nth-child(1) {
    animation-delay: 0.1s;
}

.partners-grid-section.section-visible .partner-card:nth-child(2) {
    animation-delay: 0.2s;
}

.partners-grid-section.section-visible .partner-card:nth-child(3) {
    animation-delay: 0.15s;
}

.partners-grid-section.section-visible .partner-card:nth-child(4) {
    animation-delay: 0.4s;
}

.partners-grid-section.section-visible .partner-card:nth-child(5) {
    animation-delay: 0.25s;
}

.partners-grid-section.section-visible .partner-card:nth-child(6) {
    animation-delay: 0.6s;
}

.partners-grid-section.section-visible .partner-card:nth-child(7) {
    animation-delay: 0.35s;
}

.partners-grid-section.section-visible .partner-card:nth-child(8) {
    animation-delay: 0.4s;
}

.partners-grid-section.section-visible .partner-card:nth-child(9) {
    animation-delay: 0.9s;
}

.partners-grid-section.section-visible .partner-card:nth-child(10) {
    animation-delay: 1s;
}

.partners-grid-section.section-visible .partner-card:nth-child(11) {
    animation-delay: 1.1s;
}

.partners-grid-section.section-visible .partner-card:nth-child(12) {
    animation-delay: 1.2s;
}

.partners-grid-section.section-visible .partner-card:nth-child(13) {
    animation-delay: 1.3s;
}

.partners-grid-section.section-visible .partner-card:nth-child(14) {
    animation-delay: 1.4s;
}

.partners-grid-section.section-visible .partner-card:nth-child(15) {
    animation-delay: 1.5s;
}

.partners-grid-section.section-visible .partner-card:nth-child(16) {
    animation-delay: 1.6s;
}

.partners-grid-section.section-visible .partner-card:nth-child(17) {
    animation-delay: 1.7s;
}

.partners-grid-section.section-visible .partner-card:nth-child(18) {
    animation-delay: 1.8s;
}

.partners-grid-section.section-visible .partner-card:nth-child(19) {
    animation-delay: 1.9s;
}

.partners-grid-section.section-visible .partner-card:nth-child(20) {
    animation-delay: 2s;
}

.partners-grid-section.section-visible .partner-card:nth-child(21) {
    animation-delay: 2.1s;
}

.partners-grid-section.section-visible .partner-card:nth-child(22) {
    animation-delay: 2.2s;
}

.partners-grid-section.section-visible .partner-card:nth-child(23) {
    animation-delay: 2.3s;
}

.partners-grid-section.section-visible .partner-card:nth-child(24) {
    animation-delay: 2.4s;
}

.partners-grid-section.section-visible .partner-card:nth-child(25) {
    animation-delay: 2.5s;
}

.partners-grid-section.section-visible .partner-card:nth-child(26) {
    animation-delay: 2.6s;
}

.partners-grid-section.section-visible .partner-card:nth-child(27) {
    animation-delay: 2.7s;
}

.partners-grid-section.section-visible .partner-card:nth-child(28) {
    animation-delay: 2.8s;
}

/* Property Details Page */
.property-details-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.property-details-back {
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--pastel-pink);
    color: var(--pastel-pink);
    transform: translateX(-5px);
    animation: pulse 0.3s ease;
}

.property-details-header {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.property-header-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.property-header-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-header-description-section {
    padding: 2rem 2.5rem;
    background: var(--white);
    position: relative;
}

.property-header-description-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    min-height: 120px;
}

.property-header-amenities {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
}

.amenity-btn {
    padding: 0.5rem 1rem;
    background: var(--pastel-blue);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.amenity-btn:hover {
    background: var(--pastel-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.property-header-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.property-header-info .property-details-title {
    margin-bottom: 0.75rem;
    text-align: left;
}

.property-header-info .property-details-location {
    justify-content: flex-start;
    margin-bottom: 0;
}

.no-amenities {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.property-header-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.property-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.property-stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.property-stat-item .stat-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.property-header-content {
    max-width: 100%;
}

.property-details-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.property-details-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.property-details-location i {
    color: var(--pastel-blue);
}

.property-details-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.property-meta-item i {
    color: var(--pastel-pink);
}

.property-details-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.property-details-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    min-width: 0;
}

.property-gallery-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.property-image-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.image-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.image-filter-btn i {
    font-size: 18px;
}

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

.image-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.image-filter-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.property-gallery {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.property-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--primary-lightest);
}

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

.property-main-image:hover img {
    transform: scale(1.05);
}

.property-thumbnails {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.property-thumbnail {
    flex: 0 0 auto;
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.property-thumbnail.active {
    border-color: var(--pastel-pink);
}

.property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Lightbox Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10001;
}

/* Make main image and thumbnails clickable */
.property-main-image img {
    cursor: pointer;
}

.property-thumbnail img {
    cursor: pointer;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
    
    .lightbox-counter {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.property-description-section,
.property-features-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.property-description-section h2,
.property-features-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.property-description-section p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.property-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--primary-lightest);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.property-feature-item:hover {
    background: var(--primary-lighter);
    transform: translateX(5px);
}

.property-feature-item i {
    color: var(--primary-darker);
    font-size: 1.1rem;
}

.property-feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.property-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.property-info-card,
.contact-agent-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.property-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.property-status-badge {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.log-type-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.log-type-info {
    background: #e3f2fd;
    color: #1976d2;
}

.log-type-warning {
    background: #fff3e0;
    color: #f57c00;
}

.log-type-error {
    background: #ffebee;
    color: #d32f2f;
}

.log-type-action {
    background: #e8f5e9;
    color: #388e3c;
}

.logs-table-container {
    max-height: 600px;
    overflow-y: auto;
}

.status-badge.sale {
    background: var(--primary-lightest);
    color: var(--text-dark);
    border: 1px solid var(--primary-color);
}

.status-badge.rent {
    background: var(--pastel-grey);
    color: var(--text-dark);
    border: 1px solid var(--grey-medium);
}

.property-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.property-location-links {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.property-location-links-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.property-location-link,
.property-directions-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background: var(--primary-lightest);
    border: 1px solid var(--border-color);
}

.property-location-link i,
.property-directions-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.property-location-link:hover,
.property-directions-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.property-location-link:hover i,
.property-directions-link:hover i {
    color: var(--white);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lightest);
    color: var(--primary-darker);
    border-radius: 8px;
    font-size: 1.1rem;
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
}

.quick-info-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.property-actions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-contact-agent,
.btn-schedule-visit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-contact-agent {
    background: var(--primary-color);
    color: var(--white);
}

.btn-contact-agent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    animation: pulse 0.3s ease;
}

.btn-schedule-visit {
    background: transparent;
    border: 2px solid var(--pastel-pink);
    color: var(--pastel-pink);
}

.btn-schedule-visit:hover {
    background: var(--pastel-pink);
    color: var(--text-dark);
    transform: translateY(-2px);
    animation: pulse 0.3s ease;
}

.contact-agent-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.agent-avatar {
    width: 60px;
    height: 60px;
    background: var(--pastel-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.agent-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.agent-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agent-phone,
.agent-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--primary-lightest);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.agent-phone:hover,
.agent-email:hover {
    background: var(--primary-lighter);
    transform: translateX(5px);
}

.agent-phone i,
.agent-email i {
    color: var(--pastel-pink);
    width: 20px;
    text-align: center;
}

/* Responsive Design for Property Details */
@media (max-width: 1024px) {
    .property-details-content {
        grid-template-columns: 1fr;
    }
    
    .property-details-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .property-details-title {
        font-size: 2rem;
    }
    
    .property-header-image-section {
        height: 300px;
    }
    
    .property-header-description-section {
        padding: 1.5rem;
    }
    
    .property-header-description-content {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .property-header-amenities {
        width: 100%;
        order: 2;
    }
    
    .property-header-stats {
        position: static;
        width: 100%;
        justify-content: flex-start;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .property-stat-item {
        align-items: flex-start;
    }
    
    .property-header-info {
        width: 100%;
        text-align: left;
        order: 1;
    }
    
    .property-header-info .property-details-title {
        text-align: left;
    }
    
    .property-header-info .property-details-location {
        justify-content: flex-start;
    }
    
    .amenity-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .property-location-link,
    .property-directions-link {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .property-image-filters {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .image-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 14px;
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
    
    .image-filter-btn span {
        display: none;
    }
    
    .image-filter-btn i {
        font-size: 16px;
    }
    
    .property-main-image {
        height: 300px;
    }
    
    .property-thumbnails {
        padding: 0.75rem;
    }
    
    .property-thumbnail {
        min-width: 80px;
        height: 80px;
    }
    
    .property-features-grid {
        grid-template-columns: 1fr;
    }
    
    .property-details-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.channel-partners.section-coming-into-view {
    opacity: 0;
    transform: translateY(30px);
}

.channel-partners.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.channel-partners.section-visible .section-header {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.channel-partners.section-visible .partners-intro {
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.channel-partners.section-visible .partners-subtitle {
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.login-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 2.5rem;
}

.login-modal.active .login-modal-content {
    transform: scale(1) translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.login-modal-close:hover {
    background: var(--pastel-rose);
    color: var(--text-dark);
    transform: rotate(90deg) scale(1.1);
    animation: pulse 0.5s ease;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(171, 184, 195, 0.3);
}

.login-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-modal-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.login-form label i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--light-bg);
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(171, 184, 195, 0.1);
    background: var(--white);
    transform: scale(1.02);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.login-form-options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.remember-me span {
    color: var(--text-gray);
    font-weight: 400;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(3px);
}

.btn-login-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(171, 184, 195, 0.3);
    margin-top: 0.5rem;
}

.btn-login-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(171, 184, 195, 0.4);
    animation: pulse 0.5s ease;
}

.btn-login-submit:active {
    transform: translateY(0) scale(1);
}

.btn-login-submit i {
    transition: transform 0.3s ease;
}

.btn-login-submit:hover i {
    transform: translateX(5px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.login-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social-login {
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: inherit;
    color: var(--text-dark);
}

.btn-social-login i {
    font-size: 1.1rem;
}

.btn-social-google {
    border-color: #db4437;
    color: #db4437;
}

.btn-social-google:hover {
    background: #db4437;
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(219, 68, 55, 0.3);
}

.btn-social-facebook {
    border-color: #4267B2;
    color: #4267B2;
}

.btn-social-facebook:hover {
    background: #4267B2;
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(66, 103, 178, 0.3);
}

.login-signup {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-signup p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.login-signup a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-signup a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design for Login Modal */
@media (max-width: 768px) {
    .login-modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 95vh;
    }

    .login-modal-header h2 {
        font-size: 1.75rem;
    }

    .login-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-login span {
        display: none;
    }

    .btn-login {
        padding: 0.625rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    /* Add login button to mobile menu */
    .nav-menu .nav-actions {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu .btn-login {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu .btn-login span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 100px;
    }
    
    .nav-menu {
        max-width: 100%;
        padding: 4rem 1.5rem 2rem;
    }
    
    .nav-search.mobile-visible {
        padding: 0.75rem;
    }

    .nav-search-wrapper {
        padding: 0.35rem 0.6rem;
    }

    .nav-search-input {
        font-size: 0.8rem;
    }

    .nav-search-input::placeholder {
        font-size: 0.75rem;
    }

    .login-modal-content {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }

    .login-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .btn-login {
        width: 35px;
        height: 35px;
        padding: 0.5rem;
    }
}

/* ============================================
   VISITOR MODAL STYLES
   ============================================ */

.visitor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.visitor-modal.active {
    opacity: 1;
    visibility: visible;
}

.visitor-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
    pointer-events: none; /* Prevent clicking through overlay */
}

.visitor-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 2.5rem;
}

.visitor-modal.active .visitor-modal-content {
    transform: scale(1) translateY(0);
}

/* Close button removed - modal cannot be skipped */

.visitor-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.visitor-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--text-gray);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.visitor-modal-close:hover {
    background: var(--pastel-rose);
    color: var(--text-dark);
    transform: rotate(90deg) scale(1.1);
    animation: pulse 0.5s ease;
}

.visitor-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.visitor-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.visitor-modal-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.visitor-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.visitor-form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.visitor-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visitor-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.visitor-form label i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.visitor-form label .required {
    color: var(--accent-color);
    margin-left: 0.25rem;
}

.visitor-form input,
.visitor-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.visitor-form input:focus,
.visitor-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.visitor-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-visitor-submit {
    width: auto;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.visitor-skip-link {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
    font-family: 'Inter', sans-serif;
}

.visitor-skip-link:hover {
    opacity: 0.8;
    text-decoration-color: var(--text-light);
    color: var(--text-gray);
}

.btn-visitor-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.btn-visitor-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-visitor-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.visitor-form-message {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.visitor-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.visitor-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .visitor-modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 95vh;
    }

    .visitor-modal-header h2 {
        font-size: 1.75rem;
    }

    .visitor-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .visitor-modal-content {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

/* Dashboard Login Screen */
.dashboard-login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--primary-lighter) 100%);
    padding: 2rem;
}

.dashboard-login-container {
    width: 100%;
    max-width: 450px;
}

.dashboard-login-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.dashboard-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dashboard-login-logo {
    width: 80px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.dashboard-login-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dashboard-login-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.dashboard-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dashboard-form-group label i {
    color: var(--primary-darker);
}

.dashboard-form-group input,
.dashboard-form-group select,
.dashboard-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.dashboard-form-group input:focus,
.dashboard-form-group select:focus,
.dashboard-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-darker);
    box-shadow: 0 0 0 3px rgba(116, 136, 150, 0.15), 0 0 0 1px var(--secondary-color);
    background: var(--white);
    transform: translateY(-1px);
}

.dashboard-login-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-darker);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dashboard-login-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dashboard-login-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-gray);
}

.dashboard-login-note small {
    font-size: 0.85rem;
}

/* Dashboard Container */
.dashboard-container {
    min-height: 100vh;
    background: var(--light-bg);
}

.dashboard-header {
    background: var(--white);
    border-bottom: 2px solid var(--primary-light);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(116, 136, 150, 0.1);
}

.dashboard-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.dashboard-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.dashboard-logo-link:hover {
    opacity: 0.85;
}

.dashboard-logo-link .logo-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-logo-link .logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dashboard Navigation */
.dashboard-nav {
    margin-left: 2.5rem;
    position: relative;
}

.dashboard-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dashboard-nav-menu li {
    margin: 0;
    position: relative;
}

.dashboard-nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    background: transparent;
}

.dashboard-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-lighter);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dashboard-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.dashboard-nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.dashboard-nav-menu a:hover::before {
    opacity: 1;
}

.dashboard-nav-menu a:hover::after {
    width: 60%;
}

.dashboard-nav-menu a.active {
    color: var(--primary-color);
    background: var(--primary-lighter);
}

.dashboard-nav-menu a.active::before {
    opacity: 1;
}

.dashboard-nav-menu a.active::after {
    width: 60%;
    left: 50%;
}

/* Dashboard Navigation Responsive */
@media (max-width: 1024px) {
    .dashboard-nav {
        margin-left: 1.5rem;
    }
    
    .dashboard-nav-menu {
        gap: 0.25rem;
    }
    
    .dashboard-nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 1rem 0;
    }
    
    .dashboard-header-content {
        flex-wrap: wrap;
        padding: 0 1.5rem;
    }
    
    .dashboard-header-left {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .dashboard-logo-link {
        margin-bottom: 0.5rem;
    }
    
    .dashboard-nav {
        margin-left: 0;
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
        border-top: 1px solid var(--border-color);
        padding-top: 0.75rem;
    }
    
    .dashboard-nav-menu {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .dashboard-nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }
    
    .dashboard-header-right {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-nav-menu {
        gap: 0.25rem;
    }
    
    .dashboard-nav-menu a {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

.dashboard-export {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.dashboard-export:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dashboard-import {
    background: #10b981 !important;
}

.dashboard-import:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dashboard-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-darker);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.dashboard-logout:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* User Profile Dropdown */
.dashboard-user-profile {
    position: relative;
    display: block;
    visibility: visible;
}

.dashboard-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dashboard-profile-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-lightest);
    box-shadow: var(--shadow-sm);
}

.dashboard-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.dashboard-profile-name {
    font-weight: 600;
    color: var(--text-dark);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-profile-chevron {
    font-size: 0.75rem;
    color: var(--text-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dashboard-user-profile.active .dashboard-profile-chevron {
    transform: rotate(180deg);
}

.dashboard-profile-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--primary-light);
    overflow: hidden;
}

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

.dashboard-profile-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-lightest), var(--white));
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--primary-light);
}

.dashboard-profile-avatar-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.dashboard-profile-info {
    flex: 1;
    min-width: 0;
}

.dashboard-profile-fullname {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-profile-email {
    font-size: 0.85rem;
    color: var(--text-gray);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-profile-divider {
    height: 1px;
    background: var(--primary-light);
    margin: 0.5rem 0;
}

.dashboard-profile-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
}

.dashboard-profile-item:hover {
    background: var(--primary-lightest);
    color: var(--primary-color);
}

.dashboard-profile-item i {
    width: 20px;
    text-align: center;
    color: var(--text-gray);
}

.dashboard-profile-item:hover i {
    color: var(--primary-color);
}

.dashboard-profile-logout {
    color: #e63946;
    border-top: 1px solid var(--primary-light);
    margin-top: 0.25rem;
}

.dashboard-profile-logout:hover {
    background: #ffe5e5;
    color: #c1121f;
}

.dashboard-profile-logout i {
    color: #e63946;
}

.dashboard-profile-logout:hover i {
    color: #c1121f;
}

.dashboard-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Dashboard Welcome Message */
.dashboard-welcome {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker) 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.dashboard-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.dashboard-welcome-title i {
    font-size: 2rem;
    opacity: 0.9;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.dashboard-welcome-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.dashboard-stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-lighter);
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-darker);
    transition: width 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dashboard-stat-card:hover::before {
    width: 6px;
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-darker);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover .dashboard-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.dashboard-stat-icon.sale {
    background: var(--yellow-pale);
    color: var(--yellow-bright);
}

.dashboard-stat-icon.rent {
    background: var(--purple-pale);
    color: var(--purple);
}

.dashboard-stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dashboard-stat-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Metrics Graphs Container */
.metrics-graphs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.metrics-graph-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-lighter);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.metrics-graph-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.metrics-graph-header {
    padding: 1.25rem 1.5rem;
    background: var(--primary-lightest);
    border-bottom: 1px solid var(--border-color);
}

.metrics-graph-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
}

.metrics-graph-body {
    padding: 1.5rem;
    height: 300px;
    position: relative;
}

.metrics-graph-body canvas {
    max-height: 100%;
}

/* Responsive Design for Metrics Graphs */
@media (max-width: 768px) {
    .metrics-graphs-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metrics-graph-body {
        height: 250px;
        padding: 1rem;
    }
    
    .metrics-graph-header {
        padding: 1rem;
    }
    
    .metrics-graph-header h3 {
        font-size: 1rem;
    }
}

/* Dashboard Actions */
.dashboard-actions {
    display: flex;
    justify-content: flex-end;
}

.dashboard-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.dashboard-btn-primary:hover {
    background: var(--black-soft);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.dashboard-btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.dashboard-btn-danger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--grey-darkest);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.dashboard-btn-danger:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Dashboard Properties Section */
.dashboard-properties-section {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-lighter);
    position: relative;
    overflow: hidden;
}

.dashboard-properties-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-darker);
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
}

.dashboard-search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.dashboard-search-box i {
    position: absolute;
    left: 1rem;
    color: var(--text-gray);
}

.dashboard-search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dashboard-search-box input:focus {
    outline: none;
    border-color: var(--primary-darker);
    box-shadow: 0 0 0 3px rgba(116, 136, 150, 0.1);
}

.dashboard-properties-table-container {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 600px;
}

.properties-table-scrollable {
    overflow-y: scroll;
    overflow-x: auto;
    max-height: 600px;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-medium) var(--grey-pale);
}

.properties-table-scrollable::-webkit-scrollbar {
    width: 8px;
}

.properties-table-scrollable::-webkit-scrollbar-track {
    background: var(--grey-pale);
    border-radius: 4px;
}

.properties-table-scrollable::-webkit-scrollbar-thumb {
    background: var(--grey-medium);
    border-radius: 4px;
}

.properties-table-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--grey-dark);
}

/* Metrics Monitoring Section */
.metrics-graphs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-graph-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.metric-graph-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.metric-graph-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-graph-title i {
    font-size: 1.1rem;
    color: var(--primary-darker);
}

.metric-graph-card canvas {
    max-height: 300px;
    width: 100% !important;
    height: 300px !important;
}

/* Responsive metrics graphs */
@media (max-width: 768px) {
    .metrics-graphs-container {
        grid-template-columns: 1fr;
    }
    
    .metric-graph-card canvas {
        max-height: 250px;
        height: 250px !important;
    }
}

.schedule-visit-table-container {
    overflow-y: scroll;
    overflow-x: auto;
    max-height: 600px;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-medium) var(--grey-pale);
}

.schedule-visit-table-container::-webkit-scrollbar {
    width: 8px;
}

.schedule-visit-table-container::-webkit-scrollbar-track {
    background: var(--grey-pale);
    border-radius: 4px;
}

.schedule-visit-table-container::-webkit-scrollbar-thumb {
    background: var(--grey-medium);
    border-radius: 4px;
}

.schedule-visit-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--grey-dark);
}

.dashboard-properties-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-properties-table thead {
    background: var(--primary-lightest);
    position: sticky;
    top: 0;
    z-index: 10;
}

.dashboard-properties-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.dashboard-properties-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.dashboard-properties-table tbody tr {
    transition: all 0.2s ease;
}

.dashboard-properties-table tbody tr:hover {
    background: var(--primary-lightest);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.dashboard-table-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-table-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-table-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dashboard-table-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.dashboard-table-location i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.dashboard-table-type {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--primary-lighter);
    color: var(--text-dark);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.dashboard-table-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.dashboard-table-status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-table-status.sale {
    background: var(--yellow-pale);
    color: var(--yellow-bright);
}

.dashboard-table-status.rent {
    background: var(--purple-pale);
    color: var(--purple);
}

.dashboard-table-actions {
    display: flex;
    gap: 0.5rem;
}

.dashboard-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dashboard-action-btn.edit {
    background: var(--primary-lighter);
    color: var(--primary-darker);
    border: 1px solid var(--primary-light);
}

.dashboard-action-btn.edit:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.dashboard-action-btn.delete {
    background: var(--pastel-coral);
    color: #e63946;
    border: 1px solid #ffd4d4;
}

.dashboard-action-btn.delete:hover {
    background: #ffd4d4;
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-md);
    color: #d62839;
}

.dashboard-action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dashboard-status-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.dashboard-status-select:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.dashboard-status-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 136, 150, 0.1);
}

/* Inquiry Status Badges */
.status-badge.new {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.status-badge.read {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-badge.replied {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.status-badge.closed {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid #9ca3af;
}

.dashboard-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.dashboard-empty-state i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.dashboard-empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dashboard-empty-state p {
    margin-bottom: 1.5rem;
}

/* Dashboard Modal */
.dashboard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-modal.active {
    display: flex;
}

.dashboard-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.dashboard-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--shadow-2xl);
    z-index: 1001;
    border: 2px solid var(--primary-lighter);
    display: flex;
    flex-direction: column;
    /* Custom scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-darker) var(--primary-lightest);
}

.dashboard-modal-content::-webkit-scrollbar {
    width: 8px;
}

.dashboard-modal-content::-webkit-scrollbar-track {
    background: var(--primary-lightest);
    border-radius: 10px;
}

.dashboard-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-darker);
    border-radius: 10px;
    border: 2px solid var(--primary-lightest);
}

.dashboard-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.dashboard-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-darker);
    z-index: 1;
    pointer-events: none;
}

.dashboard-modal-small {
    max-width: 500px;
}

.dashboard-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 2px solid var(--primary-lighter);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
    border-radius: 20px 20px 0 0;
    margin-top: 5px;
    flex-shrink: 0;
}

.dashboard-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
}

.dashboard-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-lightest);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
}

.dashboard-modal-close:hover {
    background: var(--pastel-coral);
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-md);
    color: #e63946;
}

.dashboard-modal-body {
    padding: 1.5rem 2rem;
}

.dashboard-property-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-height: 0;
}

.dashboard-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.dashboard-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Multi-select amenities styling */
.dashboard-form-group select[multiple] {
    min-height: 200px;
    background: var(--white);
    cursor: pointer;
}

.dashboard-form-group select[multiple]:focus {
    outline: none;
    border-color: var(--primary-darker);
    box-shadow: 0 0 0 3px rgba(116, 136, 150, 0.15), 0 0 0 1px var(--secondary-color);
}

.dashboard-form-group select[multiple] option {
    padding: 0.5rem;
    cursor: pointer;
}

.dashboard-form-group select[multiple] option:hover {
    background: var(--primary-lighter);
}

.dashboard-form-group select[multiple] option:checked {
    background: var(--primary-color);
    color: var(--white);
}

/* Dashboard Unit Type Buttons */
.dashboard-unit-type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.dashboard-unit-type-btn {
    padding: 0.625rem 1.25rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dashboard-unit-type-btn:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.2);
}

.dashboard-unit-type-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(171, 184, 195, 0.3);
}

/* Image Upload */
.dashboard-image-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--primary-lightest);
}

.dashboard-image-upload-area:hover,
.dashboard-image-upload-area.dragover {
    border-color: var(--primary-darker);
    background: var(--pastel-blue);
    border-style: solid;
    box-shadow: var(--shadow-md);
    transform: scale(1.01);
}

.dashboard-image-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-gray);
    text-align: center;
}

.dashboard-image-upload-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
}

.dashboard-image-upload-placeholder p {
    font-weight: 500;
    color: var(--text-dark);
}

.dashboard-image-upload-placeholder span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.dashboard-image-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.dashboard-image-preview {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.dashboard-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-image-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(230, 57, 70, 0.9);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.dashboard-image-remove:hover {
    background: #e63946;
    transform: scale(1.1);
}

/* Features Management */
.dashboard-features-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-features-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

.dashboard-features-input-wrapper input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dashboard-features-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-darker);
    box-shadow: 0 0 0 3px rgba(116, 136, 150, 0.1);
}

.dashboard-btn-add-feature {
    padding: 0.875rem 1.5rem;
    background: var(--primary-darker);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.dashboard-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dashboard-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-lightest);
    border: 1px solid var(--primary-light);
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.dashboard-feature-item i.fa-check-circle {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.dashboard-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--primary-lighter);
}

.dashboard-feature-text {
    color: var(--text-dark);
}

.dashboard-feature-remove {
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.dashboard-feature-remove:hover {
    background: #ffe5e5;
    color: #e63946;
}

.dashboard-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding-bottom: 1rem;
    z-index: 5;
}

/* Notification */
.dashboard-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-notification.warning {
    background: #f59e0b;
    color: var(--white);
}

.dashboard-notification.success {
    background: var(--text-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header-content {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-profile-dropdown {
        min-width: 240px;
        right: 0;
    }

    .dashboard-profile-name {
        max-width: 80px;
    }

    .dashboard-section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-search-box {
        max-width: 100%;
    }

    .dashboard-properties-table {
        font-size: 0.85rem;
    }

    .dashboard-properties-table th,
    .dashboard-properties-table td {
        padding: 0.75rem 0.5rem;
    }

    .dashboard-properties-table-container {
        max-height: 500px;
    }

    .dashboard-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .dashboard-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .dashboard-property-form {
        padding: 1.5rem;
    }

    .dashboard-form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-image-preview-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .dashboard-login-card {
        padding: 2rem 1.5rem;
    }

    .dashboard-stats {
        gap: 1rem;
    }

    .dashboard-welcome {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .dashboard-welcome-title {
        font-size: 1.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .dashboard-welcome-title i {
        font-size: 1.5rem;
    }

    .dashboard-welcome-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .dashboard-stat-card {
        padding: 1.25rem;
    }

    .dashboard-properties-section {
        padding: 1.5rem;
    }

    .dashboard-properties-table {
        font-size: 0.8rem;
    }

    .dashboard-properties-table-container {
        max-height: 400px;
    }

    .dashboard-table-image {
        width: 60px;
        height: 45px;
    }

    .dashboard-modal-content {
        border-radius: 15px;
    }

    .dashboard-modal-header {
        padding: 1.25rem 1.25rem 1rem;
    }

    .dashboard-modal-header h2 {
        font-size: 1.5rem;
    }

    .dashboard-property-form {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .dashboard-modal-actions {
        flex-direction: column-reverse;
    }

    .dashboard-modal-actions button {
        width: 100%;
        justify-content: center;
    }
}

/* Floating Button to Browse by Property Type */
.floating-property-type-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: #8B2E3D;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.floating-property-type-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-property-type-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.floating-property-type-btn:active {
    transform: translateY(0);
}

.floating-property-type-btn i {
    font-size: 1.3rem;
}

.floating-btn-text {
    display: none;
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
    .floating-property-type-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-property-type-btn i {
        font-size: 1.2rem;
    }
}

/* ============================================
   BLOGS SECTION STYLES
   ============================================ */

.blogs-section {
    padding: 4rem 0;
    background: var(--white-off);
}

.blogs-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Styles */
.blogs-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Reach Us Widget */
.reach-us-widget {
    background: var(--primary-color);
    color: var(--white);
}

.reach-us-widget .sidebar-widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.reach-us-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reach-us-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reach-us-item strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reach-us-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.reach-us-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reach-us-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Quick Menu List */
.quick-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-menu-list li {
    margin-bottom: 0.75rem;
}

.quick-menu-list li:last-child {
    margin-bottom: 0;
}

.quick-menu-list li a {
    display: block;
    padding: 0.625rem 0;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.quick-menu-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
    border-bottom-color: var(--primary-color);
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget-title i {
    color: var(--accent-color);
}

/* Filter Links (kept for backward compatibility if needed) */
.filter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-links li {
    margin-bottom: 0.5rem;
}

.filter-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-link:hover {
    background: var(--grey-pale);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.filter-link.active {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--grey-pale);
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.tag-link.active {
    background: var(--accent-color);
    color: var(--white);
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-link:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    flex: 1;
}

.recent-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-post-link:hover {
    transform: translateX(5px);
}

.popular-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-info {
    flex: 1;
}

.popular-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popular-post-views {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.popular-post-views i {
    margin-right: 0.25rem;
}

.popular-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.no-posts,
.no-archive {
    color: var(--text-light);
    font-style: italic;
    padding: 1rem 0;
}

/* Archive List */
.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-item {
    margin-bottom: 0.75rem;
}

.archive-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.archive-link:hover {
    background: var(--grey-pale);
    color: var(--primary-color);
}

.archive-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Main Content */
.blogs-main {
    min-width: 0;
}

/* Recent Article Section */
.recent-article-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* Latest Blog Section */
.latest-blog-section {
    margin-bottom: 0;
}

.latest-blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.latest-blog-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.latest-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-blog-card:hover .latest-blog-image img {
    transform: scale(1.1);
}

.latest-blog-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.latest-blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.latest-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-blog-title a:hover {
    color: var(--primary-color);
}

.latest-blog-excerpt {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-read-more:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

/* All Categories Section */
.all-categories-section {
    margin-bottom: 3rem;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(3px);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    background: var(--grey-pale);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Blogs Header */
.blogs-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blogs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.blogs-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blogs-sort label {
    font-weight: 500;
    color: var(--text-gray);
}

.sort-select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: var(--primary-color);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    transform: scale(1.1) rotate(90deg);
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-views-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: inherit;
}

.blog-views-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.blog-views-btn:active {
    transform: translateY(0);
}

.blog-views-btn i {
    font-size: 0.9rem;
}

.blog-views-btn .views-count {
    font-weight: 600;
}

.blog-views-btn .views-label {
    font-size: 0.8rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.blog-card-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-stats i {
    margin-right: 0.25rem;
}

/* Blogs Empty State */
.blogs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.blogs-empty i {
    font-size: 4rem;
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.blogs-empty h3 {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Load More Button */
.blogs-load-more {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .blogs-layout {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
    
    .latest-blog-card {
        grid-template-columns: 1fr;
    }
    
    .latest-blog-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .blogs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blogs-sidebar {
        position: static;
        max-height: none;
        order: 2;
    }
    
    .blogs-main {
        order: 1;
    }
    
    .latest-blog-content {
        padding: 1.5rem;
    }
    
    .latest-blog-title {
        font-size: 1.5rem;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blogs-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-filters {
        width: 100%;
    }
    
    .category-filter-btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
    }
}

/* ============================================
   BLOG DETAILS SECTION STYLES
   ============================================ */

.blog-details-section {
    padding: 4rem 0;
    background: var(--white-off);
}

.blog-details-back {
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-3px);
}

.blog-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-details-main {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

/* Blog Header */
.blog-details-header {
    margin-bottom: 2rem;
}

.blog-header-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.blog-author-info {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.blog-author,
.blog-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.blog-author i,
.blog-views i {
    color: var(--primary-color);
}

/* Blog Featured Image */
.blog-featured-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Blog Content */
.blog-content-section {
    margin-bottom: 2rem;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.75rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--primary-dark);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Blog Tags Section */
.blog-tags-section {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-tags-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--grey-pale);
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Share Section */
.blog-share-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-share-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--white);
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Blog Info Card */
.blog-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.blog-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.blog-info-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.blog-info-item strong i {
    color: var(--primary-color);
    width: 20px;
}

.blog-info-item span {
    color: var(--text-gray);
    text-align: right;
    flex: 1;
}

/* Related Posts Widget */
.related-posts-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

.related-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    transform: translateX(5px);
}

.related-post-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-info {
    flex: 1;
}

.related-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive Styles for Blog Details */
@media (max-width: 1024px) {
    .blog-details-content {
        max-width: 100%;
    }
    
    .blog-details-main {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-details-main {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-header-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-author-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   QUILL EDITOR STYLES FOR BLOG CONTENT
   ============================================ */

#blogContentEditor {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

#blogContentEditor .ql-container {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    position: relative;
}

#blogContentEditor .ql-editor {
    min-height: 300px;
    max-height: 500px;
    padding: 1rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--grey-medium) var(--grey-pale);
}

#blogContentEditor .ql-editor::-webkit-scrollbar {
    width: 8px;
}

#blogContentEditor .ql-editor::-webkit-scrollbar-track {
    background: var(--grey-pale);
    border-radius: 4px;
}

#blogContentEditor .ql-editor::-webkit-scrollbar-thumb {
    background: var(--grey-medium);
    border-radius: 4px;
}

#blogContentEditor .ql-editor::-webkit-scrollbar-thumb:hover {
    background: var(--grey-dark);
}

#blogContentEditor .ql-container {
    scrollbar-width: thin;
    scrollbar-color: var(--grey-medium) var(--grey-pale);
}

#blogContentEditor .ql-container::-webkit-scrollbar {
    width: 8px;
}

#blogContentEditor .ql-container::-webkit-scrollbar-track {
    background: var(--grey-pale);
    border-radius: 4px;
}

#blogContentEditor .ql-container::-webkit-scrollbar-thumb {
    background: var(--grey-medium);
    border-radius: 4px;
}

#blogContentEditor .ql-container::-webkit-scrollbar-thumb:hover {
    background: var(--grey-dark);
}

#blogContentEditor .ql-editor.ql-blank::before {
    color: var(--text-light);
    font-style: normal;
}

#blogContentEditor .ql-toolbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid var(--border-color);
    background: var(--grey-pale) !important;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: 0;
    flex-shrink: 0;
}

#blogContentEditor .ql-toolbar .ql-stroke {
    stroke: var(--text-gray);
}

#blogContentEditor .ql-toolbar .ql-fill {
    fill: var(--text-gray);
}

#blogContentEditor .ql-toolbar button:hover,
#blogContentEditor .ql-toolbar button.ql-active {
    color: var(--primary-color);
}

#blogContentEditor .ql-toolbar button:hover .ql-stroke,
#blogContentEditor .ql-toolbar button.ql-active .ql-stroke {
    stroke: var(--primary-color);
}

#blogContentEditor .ql-toolbar button:hover .ql-fill,
#blogContentEditor .ql-toolbar button.ql-active .ql-fill {
    fill: var(--primary-color);
}

#blogContentEditor .ql-container {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#blogContentEditor .ql-editor h1,
#blogContentEditor .ql-editor h2,
#blogContentEditor .ql-editor h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

#blogContentEditor .ql-editor h1 {
    font-size: 2rem;
}

#blogContentEditor .ql-editor h2 {
    font-size: 1.75rem;
}

#blogContentEditor .ql-editor h3 {
    font-size: 1.5rem;
}

#blogContentEditor .ql-editor p {
    margin-bottom: 1rem;
}

#blogContentEditor .ql-editor ul,
#blogContentEditor .ql-editor ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

#blogContentEditor .ql-editor li {
    margin-bottom: 0.5rem;
}

#blogContentEditor .ql-editor a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Inquiry View Modal Styles */
.contact-inquiry-view-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-inquiry-status-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-lightest);
    border-radius: 10px;
    border: 2px solid var(--primary-lighter);
}

.contact-inquiry-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-inquiry-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-inquiry-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white-off);
    border-radius: 10px;
    border: 1px solid var(--primary-lighter);
    transition: all 0.3s ease;
}

.contact-inquiry-info-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
    transform: translateY(-2px);
}

.contact-inquiry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-inquiry-info-content {
    flex: 1;
    min-width: 0;
}

.contact-inquiry-value {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    word-break: break-word;
}

.contact-inquiry-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-inquiry-value a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-inquiry-message-section {
    margin-top: 1.5rem;
}

.contact-inquiry-message-box {
    background: var(--white-off);
    border: 2px solid var(--primary-lighter);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 0.75rem;
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.contact-inquiry-message-box::-webkit-scrollbar {
    width: 8px;
}

.contact-inquiry-message-box::-webkit-scrollbar-track {
    background: var(--primary-lightest);
    border-radius: 10px;
}

.contact-inquiry-message-box::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.contact-inquiry-message-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.contact-inquiry-status-update {
    background: var(--primary-lightest);
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid var(--primary-lighter);
}

.dashboard-btn-view {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(44, 62, 80, 0.1);
}

.dashboard-btn-view:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.dashboard-btn-view:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Inquiry View Modal */
@media (max-width: 768px) {
    .contact-inquiry-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-inquiry-info-item {
        padding: 1rem;
    }
    
    .contact-inquiry-message-box {
        min-height: 120px;
        max-height: 200px;
        padding: 1rem;
    }
    
    .contact-inquiry-status-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

#blogContentEditor .ql-editor blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-gray);
    font-style: italic;
}

#blogContentEditor .ql-editor code,
#blogContentEditor .ql-editor pre {
    background: var(--grey-pale);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

#blogContentEditor .ql-editor pre {
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

/* Responsive styles for Quill editor */
@media (max-width: 768px) {
    #blogContentEditor .ql-toolbar {
        padding: 0.5rem;
    }
    
    #blogContentEditor .ql-toolbar .ql-formats {
        margin-right: 0.5rem;
    }
    
    #blogContentEditor {
        min-height: 250px;
    }
    
    #blogContentEditor .ql-container,
    #blogContentEditor .ql-editor {
        min-height: 250px;
    }
}